Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions pkg/fftypes/ffi.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,17 @@ type FFIReference struct {
}

type FFI struct {
ID *UUID `ffstruct:"FFI" json:"id,omitempty" ffexcludeinput:"true"`
Message *UUID `ffstruct:"FFI" json:"message,omitempty" ffexcludeinput:"true"`
Namespace string `ffstruct:"FFI" json:"namespace,omitempty" ffexcludeinput:"true"`
Name string `ffstruct:"FFI" json:"name"`
NetworkName string `ffstruct:"FFI" json:"networkName,omitempty"`
Description string `ffstruct:"FFI" json:"description"`
Version string `ffstruct:"FFI" json:"version"`
Methods []*FFIMethod `ffstruct:"FFI" json:"methods,omitempty"`
Events []*FFIEvent `ffstruct:"FFI" json:"events,omitempty"`
Errors []*FFIError `ffstruct:"FFI" json:"errors,omitempty"`
Published bool `ffstruct:"FFI" json:"published" ffexcludeinput:"true"`
Topics FFStringArray `ffstruct:"FFI" json:"topics,omitempty"`
ID *UUID `ffstruct:"FFI" json:"id,omitempty" ffexcludeinput:"true"`
Message *UUID `ffstruct:"FFI" json:"message,omitempty" ffexcludeinput:"true"`
Namespace string `ffstruct:"FFI" json:"namespace,omitempty" ffexcludeinput:"true"`
Name string `ffstruct:"FFI" json:"name"`
NetworkName string `ffstruct:"FFI" json:"networkName,omitempty"`
Description string `ffstruct:"FFI" json:"description"`
Version string `ffstruct:"FFI" json:"version"`
Methods []*FFIMethod `ffstruct:"FFI" json:"methods,omitempty"`
Events []*FFIEvent `ffstruct:"FFI" json:"events,omitempty"`
Errors []*FFIError `ffstruct:"FFI" json:"errors,omitempty"`
Published bool `ffstruct:"FFI" json:"published" ffexcludeinput:"true"`
}

type FFIMethod struct {
Expand Down
Loading