Skip to content
Open
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: 12 additions & 11 deletions pkg/fftypes/ffi.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,18 @@ 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"`
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"`
}

type FFIMethod struct {
Expand Down