model

package
v0.6.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 31, 2026 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ActiveContract

type ActiveContract struct {
	CreatedEvent        *CreatedEvent
	SynchronizerID      string
	ReassignmentCounter uint64
}

type ActiveContractEntry

type ActiveContractEntry struct {
	ActiveContract *ActiveContract
}

type AddTransactionsRequest

type AddTransactionsRequest struct {
	Transactions          []*SignedTopologyTransaction
	ForceChanges          []ForceFlag
	Store                 *StoreID
	WaitToBecomeEffective *time.Duration
}

type AddTransactionsResponse

type AddTransactionsResponse struct{}

type ArchivedEvent

type ArchivedEvent struct {
	Offset                int64
	NodeID                int32
	ContractID            string
	TemplateID            string
	WitnessParties        []string
	PackageName           string
	ImplementedInterfaces []string
}

type AssignedEvent

type AssignedEvent struct {
	Source              string
	Target              string
	UnassignID          string
	Submitter           string
	ReassignmentCounter uint64
	CreatedEvent        *CreatedEvent
}

type AuthorizeRequest

type AuthorizeRequest struct {
	Proposal              *TopologyTransactionProposal
	TransactionHash       string
	MustFullyAuthorize    bool
	ForceChanges          []ForceFlag
	SignedBy              []string
	Store                 *StoreID
	WaitToBecomeEffective *time.Duration
}

type AuthorizeResponse

type AuthorizeResponse struct {
	Transaction *SignedTopologyTransaction
}

type BaseQuery

type BaseQuery struct {
	Store           *StoreID
	Proposals       bool
	TimeQuery       *TimeQuery
	Operation       Operation
	FilterSignedKey string
	ProtocolVersion *int32
}

type BaseResult

type BaseResult struct {
	Store                *StoreID
	Sequenced            *time.Time
	ValidFrom            *time.Time
	ValidUntil           *time.Time
	Operation            Operation
	TransactionHash      []byte
	Serial               int32
	SignedByFingerprints []string
}

type CanActAs

type CanActAs struct {
	Party string
}

type CanReadAs

type CanReadAs struct {
	Party string
}

type Command

type Command struct {
	Command CommandType
}

type CommandState

type CommandState int
const (
	CommandStateUnspecified CommandState = iota
	CommandStatePending
	CommandStateSucceeded
	CommandStateFailed
)

type CommandStatus

type CommandStatus struct {
	Started   *time.Time
	Completed *time.Time
	State     CommandState
}

type CommandType

type CommandType interface {
	// contains filtered or unexported methods
}

type Commands

type Commands struct {
	WorkflowID          string
	UserID              string
	CommandID           string
	Commands            []*Command
	DeduplicationPeriod DeduplicationPeriod
	MinLedgerTimeAbs    *time.Time
	MinLedgerTimeRel    *time.Duration
	ActAs               []string
	ReadAs              []string
	SubmissionID        string
	DisclosedContracts  []*DisclosedContract
}

type Completion

type Completion struct {
	CommandID     string
	Status        Status
	UpdateID      string
	TransactionID string
	SubmissionID  string
	CompletedAt   *time.Time
	Offset        int64
}

type CompletionResponse

type CompletionResponse interface {
	// contains filtered or unexported methods
}

type CompletionStreamRequest

type CompletionStreamRequest struct {
	UserID         string
	Parties        []string
	BeginExclusive int64
}

type CompletionStreamResponse

type CompletionStreamResponse struct {
	Response CompletionResponse
}

type ConnectedSynchronizer

type ConnectedSynchronizer struct {
	SynchronizerID        string
	ParticipantPermission ParticipantPermission
}

type ContractEntry

type ContractEntry interface {
	// contains filtered or unexported methods
}

type CreateCommand

type CreateCommand struct {
	TemplateID string
	Arguments  map[string]interface{}
}

type CreateTemporaryTopologyStoreRequest

type CreateTemporaryTopologyStoreRequest struct {
	Name            string
	ProtocolVersion uint32
}

type CreateTemporaryTopologyStoreResponse

type CreateTemporaryTopologyStoreResponse struct {
	StoreID *StoreID
}

type CreatedEvent

type CreatedEvent struct {
	Offset           int64
	NodeID           int32
	ContractID       string
	TemplateID       string
	ContractKey      interface{}
	CreateArguments  interface{}
	CreatedEventBlob []byte
	InterfaceViews   []*InterfaceView
	WitnessParties   []string
	Signatories      []string
	Observers        []string
	CreatedAt        *time.Time
	PackageName      string
}

type DeduplicationDuration

type DeduplicationDuration struct {
	Duration time.Duration
}

type DeduplicationOffset

type DeduplicationOffset struct {
	Offset int64
}

type DeduplicationPeriod

type DeduplicationPeriod interface {
	// contains filtered or unexported methods
}

type DisclosedContract

type DisclosedContract struct {
	TemplateID       string
	ContractID       string
	CreatedEventBlob []byte
	SynchronizerID   string
}

type DropTemporaryTopologyStoreRequest

type DropTemporaryTopologyStoreRequest struct {
	StoreID *StoreID
}

type DropTemporaryTopologyStoreResponse

type DropTemporaryTopologyStoreResponse struct{}

type Event

type Event struct {
	Created   *CreatedEvent
	Archived  *ArchivedEvent
	Exercised *ExercisedEvent
}

type EventFormat

type EventFormat struct {
	FiltersByParty     map[string]*Filters
	FiltersForAnyParty *Filters
	Verbose            bool
}

type ExecuteSubmissionRequest

type ExecuteSubmissionRequest struct {
	PreparedTransaction  []byte
	PartySignatures      []*SinglePartySignatures
	DeduplicationPeriod  DeduplicationPeriod
	SubmissionID         string
	UserID               string
	HashingSchemeVersion HashingSchemeVersion
	MinLedgerTime        *MinLedgerTime
}

type ExecuteSubmissionResponse

type ExecuteSubmissionResponse struct{}

type ExerciseByKeyCommand

type ExerciseByKeyCommand struct {
	TemplateID string
	Key        map[string]interface{}
	Choice     string
	Arguments  map[string]interface{}
}

type ExerciseCommand

type ExerciseCommand struct {
	ContractID string
	TemplateID string
	Choice     string
	Arguments  map[string]interface{}
}

type ExercisedEvent

type ExercisedEvent struct {
	Offset                int64
	NodeID                int32
	ContractID            string
	TemplateID            string
	InterfaceID           string
	Choice                string
	ChoiceArgument        interface{}
	ActingParties         []string
	Consuming             bool
	WitnessParties        []string
	LastDescendantNodeID  int32
	ExerciseResult        interface{}
	PackageName           string
	ImplementedInterfaces []string
}

type FeaturesDescriptor

type FeaturesDescriptor struct {
	UserManagement   bool
	PartyManagement  bool
	OffsetCheckpoint bool
}

type FilterTargetKeyOrFingerprint

type FilterTargetKeyOrFingerprint struct {
	Fingerprint string
}

type Filters

type Filters struct {
	Inclusive *InclusiveFilters
}

type ForceFlag

type ForceFlag int32
const (
	ForceFlagUnspecified                           ForceFlag = 0
	ForceFlagAlienMember                           ForceFlag = 1
	ForceFlagLedgerTimeRecordTimeToleranceIncrease ForceFlag = 2
)

type GenerateTransactionProposal

type GenerateTransactionProposal struct {
	Operation Operation
	Serial    uint32
	Mapping   TopologyMapping
	Store     *StoreID
}

type GenerateTransactionsRequest

type GenerateTransactionsRequest struct {
	Proposals []*GenerateTransactionProposal
}

type GenerateTransactionsResponse

type GenerateTransactionsResponse struct {
	GeneratedTransactions []*GeneratedTransaction
}

type GeneratedTransaction

type GeneratedTransaction struct {
	SerializedTransaction []byte
	TransactionHash       []byte
}

type GetActiveContractsRequest

type GetActiveContractsRequest struct {
	ActiveAtOffset int64
	EventFormat    *EventFormat
}

State Service types

type GetActiveContractsResponse

type GetActiveContractsResponse struct {
	WorkflowID    string
	ContractEntry ContractEntry
}

type GetConnectedSynchronizersRequest

type GetConnectedSynchronizersRequest struct{}

type GetConnectedSynchronizersResponse

type GetConnectedSynchronizersResponse struct {
	ConnectedSynchronizers []*ConnectedSynchronizer
}

type GetEventsByContractIDRequest

type GetEventsByContractIDRequest struct {
	ContractID  string
	EventFormat *EventFormat
}

Event Query Service types

type GetEventsByContractIDResponse

type GetEventsByContractIDResponse struct {
	CreateEvent  *CreatedEvent
	ArchiveEvent *ArchivedEvent
}

type GetLatestPrunedOffsetsRequest

type GetLatestPrunedOffsetsRequest struct{}

type GetLatestPrunedOffsetsResponse

type GetLatestPrunedOffsetsResponse struct {
	ParticipantPrunedUpToInclusive          int64
	AllDivulgedContractsPrunedUpToInclusive int64
}

type GetLedgerAPIVersionRequest

type GetLedgerAPIVersionRequest struct{}

Version Service types

type GetLedgerAPIVersionResponse

type GetLedgerAPIVersionResponse struct {
	Version  string
	Features *FeaturesDescriptor
}

type GetLedgerEndRequest

type GetLedgerEndRequest struct{}

type GetLedgerEndResponse

type GetLedgerEndResponse struct {
	Offset int64
}

type GetPackageRequest

type GetPackageRequest struct {
	PackageID string
}

type GetPackageResponse

type GetPackageResponse struct {
	ArchivePayload []byte
	HashFunction   HashFunction
	Hash           string
}

type GetPackageStatusRequest

type GetPackageStatusRequest struct {
	PackageID string
}

type GetPackageStatusResponse

type GetPackageStatusResponse struct {
	PackageStatus PackageStatus
}

type GetPreferredPackageVersionRequest

type GetPreferredPackageVersionRequest struct {
	Parties        []string
	PackageName    string
	SynchronizerID string
	VettingValidAt *time.Time
}

type GetPreferredPackageVersionResponse

type GetPreferredPackageVersionResponse struct {
	PackageReference *PackageReference
	SynchronizerID   string
}

type GetTimeRequest

type GetTimeRequest struct{}

type GetTimeResponse

type GetTimeResponse struct {
	CurrentTime time.Time
}

type GetTransactionByIDRequest

type GetTransactionByIDRequest struct {
	UpdateID          string
	RequestingParties []string
	UpdateFormat      *EventFormat
}

type GetTransactionByOffsetRequest

type GetTransactionByOffsetRequest struct {
	Offset            int64
	RequestingParties []string
	UpdateFormat      *EventFormat
}

type GetTransactionResponse

type GetTransactionResponse struct {
	Transaction *Transaction
}

type GetUpdateByIDRequest

type GetUpdateByIDRequest struct {
	UpdateID     string
	UpdateFormat *EventFormat
}

type GetUpdateResponse

type GetUpdateResponse struct {
	Transaction *Transaction
}

type GetUpdatesRequest

type GetUpdatesRequest struct {
	BeginExclusive int64
	EndInclusive   *int64
	Filter         *TransactionFilter
	UpdateFormat   *EventFormat
	Verbose        bool
}

Update Service types

type GetUpdatesResponse

type GetUpdatesResponse struct {
	Update *Update
}

type HashFunction

type HashFunction int32
const (
	HashFunctionSHA256 HashFunction = 0
)

type HashingSchemeVersion

type HashingSchemeVersion int32
const (
	HashingSchemeVersionUnspecified HashingSchemeVersion = 0
	HashingSchemeVersionV2          HashingSchemeVersion = 2
)

type HostingParticipant

type HostingParticipant struct {
	ParticipantUID string
	Permission     ParticipantPermission
}

type IdentityProviderAdmin

type IdentityProviderAdmin struct{}

type IdentityProviderConfig

type IdentityProviderConfig struct {
	IdentityProviderID string
	IsDeactivated      bool
	Issuer             string
	JwksURL            string
	Audience           string
}

type ImportTopologySnapshotRequest

type ImportTopologySnapshotRequest struct {
	TopologySnapshot      []byte
	Store                 *StoreID
	WaitToBecomeEffective *time.Duration
}

type ImportTopologySnapshotResponse

type ImportTopologySnapshotResponse struct{}

type InclusiveFilters

type InclusiveFilters struct {
	TemplateFilters  []*TemplateFilter
	InterfaceFilters []*InterfaceFilter
}

type IncompleteAssigned

type IncompleteAssigned struct {
	AssignedEvent *AssignedEvent
}

type IncompleteAssignedEntry

type IncompleteAssignedEntry struct {
	IncompleteAssigned *IncompleteAssigned
}

type IncompleteUnassigned

type IncompleteUnassigned struct {
	CreatedEvent    *CreatedEvent
	UnassignedEvent *UnassignedEvent
}

type IncompleteUnassignedEntry

type IncompleteUnassignedEntry struct {
	IncompleteUnassigned *IncompleteUnassigned
}

type InterfaceFilter

type InterfaceFilter struct {
	InterfaceID             string
	IncludeInterfaceView    bool
	IncludeCreatedEventBlob bool
}

type InterfaceView

type InterfaceView struct {
	InterfaceID string
	ViewStatus  *ViewStatus
	ViewValue   interface{}
}

type ListKnownPartiesResponse

type ListKnownPartiesResponse struct {
	PartyDetails  []*PartyDetails
	NextPageToken string
}

type ListNamespaceDelegationRequest

type ListNamespaceDelegationRequest struct {
	BaseQuery                  *BaseQuery
	FilterNamespace            string
	FilterTargetKeyFingerprint string
}

type ListNamespaceDelegationResponse

type ListNamespaceDelegationResponse struct {
	Results []*NamespaceDelegationResult
}

type ListPackagesRequest

type ListPackagesRequest struct{}

Package Service types

type ListPackagesResponse

type ListPackagesResponse struct {
	PackageIDs []string
}

type ListPartyToKeyMappingRequest

type ListPartyToKeyMappingRequest struct {
	BaseQuery   *BaseQuery
	FilterParty string
}

type ListPartyToKeyMappingResponse

type ListPartyToKeyMappingResponse struct {
	Results []*PartyToKeyMappingResult
}

type ListPartyToParticipantRequest

type ListPartyToParticipantRequest struct {
	BaseQuery         *BaseQuery
	FilterParty       string
	FilterParticipant string
}

type ListPartyToParticipantResponse

type ListPartyToParticipantResponse struct {
	Results []*PartyToParticipantResult
}

type MinLedgerTime

type MinLedgerTime struct {
	Time MinLedgerTimeValue
}

type MinLedgerTimeAbs

type MinLedgerTimeAbs struct {
	Time time.Time
}

type MinLedgerTimeRel

type MinLedgerTimeRel struct {
	Duration time.Duration
}

type MinLedgerTimeValue

type MinLedgerTimeValue interface {
	// contains filtered or unexported methods
}

type MultiTransactionSignatures

type MultiTransactionSignatures struct {
	TransactionHashes [][]byte
	Signatures        []TopologyTransactionSignature
}

type NamespaceDelegationMapping

type NamespaceDelegationMapping struct {
	Namespace        string
	TargetKey        PublicKey
	IsRootDelegation bool
}

type NamespaceDelegationResult

type NamespaceDelegationResult struct {
	Context *BaseResult
	Item    *NamespaceDelegationMapping
}

type OffsetCheckpoint

type OffsetCheckpoint struct {
	Offset int64
}

type Operation

type Operation int32
const (
	OperationUnspecified Operation = 0
	OperationAddReplace  Operation = 1
	OperationRemove      Operation = 2
)

type PackageDetails

type PackageDetails struct {
	PackageID   string
	PackageSize uint64
	KnownSince  *time.Time
	Name        string
	Version     string
}

type PackageReference

type PackageReference struct {
	PackageID      string
	PackageName    string
	PackageVersion string
}

type PackageStatus

type PackageStatus int32
const (
	PackageStatusUnknown    PackageStatus = 0
	PackageStatusRegistered PackageStatus = 1
)

type ParticipantAdmin

type ParticipantAdmin struct{}

type ParticipantPermission

type ParticipantPermission int32
const (
	ParticipantPermissionSubmission   ParticipantPermission = 0
	ParticipantPermissionConfirmation ParticipantPermission = 1
	ParticipantPermissionObservation  ParticipantPermission = 2
)

type PartyDetails

type PartyDetails struct {
	Party              string
	IsLocal            bool
	LocalMetadata      map[string]string
	IdentityProviderID string
}

type PartyToKeyMapping

type PartyToKeyMapping struct {
	Party       string
	Threshold   uint32
	SigningKeys []PublicKey
}

type PartyToKeyMappingResult

type PartyToKeyMappingResult struct {
	Context *BaseResult
	Item    *PartyToKeyMapping
}

type PartyToParticipantMapping

type PartyToParticipantMapping struct {
	Party        string
	Threshold    uint32
	Participants []HostingParticipant
}

type PartyToParticipantResult

type PartyToParticipantResult struct {
	Context *BaseResult
	Item    *PartyToParticipantMapping
}

type PrefetchContractKey

type PrefetchContractKey struct {
	TemplateID  string
	ContractKey map[string]interface{}
}

type PrepareSubmissionRequest

type PrepareSubmissionRequest struct {
	UserID                       string
	CommandID                    string
	Commands                     []*Command
	MinLedgerTime                *MinLedgerTime
	ActAs                        []string
	ReadAs                       []string
	DisclosedContracts           []*DisclosedContract
	SynchronizerID               string
	PackageIDSelectionPreference []string
	VerboseHashing               bool
	PrefetchContractKeys         []*PrefetchContractKey
}

Interactive Submission Service types

type PrepareSubmissionResponse

type PrepareSubmissionResponse struct {
	PreparedTransaction     []byte
	PreparedTransactionHash []byte
	HashingSchemeVersion    HashingSchemeVersion
	HashingDetails          string
}

type PruneRequest

type PruneRequest struct {
	PruneUpTo                 int64
	SubmissionID              string
	PruneAllDivulgedContracts bool
}

type PublicKey

type PublicKey struct {
	Format  int32
	Key     []byte
	ID      string
	Scheme  int32
	KeySpec int32
	Usage   []int32
}

type Reassignment

type Reassignment struct {
	UpdateID    string
	Offset      int64
	UnassignID  string
	Source      string
	Target      string
	Counter     int64
	SubmittedAt *time.Time
	Unassigned  *time.Time
	Reassigned  *time.Time
}

type ResultStatus

type ResultStatus int32
const (
	ResultStatusSuccess   ResultStatus = 0
	ResultStatusFailure   ResultStatus = 1
	ResultStatusDuplicate ResultStatus = 2
)
type Right struct {
	Type RightType
}

type RightType

type RightType interface {
	// contains filtered or unexported methods
}

type SDKVersionMismatchError

type SDKVersionMismatchError struct {
	NodeVersion     string
	ContractVersion string
}

func (*SDKVersionMismatchError) Error

func (e *SDKVersionMismatchError) Error() string

type SetTimeRequest

type SetTimeRequest struct {
	CurrentTime time.Time
	NewTime     time.Time
}

type SetTimeResponse

type SetTimeResponse struct{}

type SignTransactionsRequest

type SignTransactionsRequest struct {
	Transactions []*SignedTopologyTransaction
	SignedBy     []string
	Store        *StoreID
	ForceFlags   []ForceFlag
}

type SignTransactionsResponse

type SignTransactionsResponse struct {
	Transactions []*SignedTopologyTransaction
}

type Signature

type Signature struct {
	Format               SignatureFormat
	Signature            []byte
	SignedBy             string
	SigningAlgorithmSpec SigningAlgorithmSpec
}

type SignatureFormat

type SignatureFormat int32
const (
	SignatureFormatUnspecified SignatureFormat = 0
	SignatureFormatRaw         SignatureFormat = 1
	SignatureFormatDER         SignatureFormat = 2
	SignatureFormatConcat      SignatureFormat = 3
	SignatureFormatSymbolic    SignatureFormat = 10000
)

type SignedTopologyTransaction

type SignedTopologyTransaction struct {
	Transaction                []byte
	Signatures                 []TopologyTransactionSignature
	MultiTransactionSignatures []*MultiTransactionSignatures
	Proposal                   bool
}

type SignedTransaction

type SignedTransaction struct {
	Transaction []byte
	Signatures  []Signature
}

type SigningAlgorithmSpec

type SigningAlgorithmSpec int32
const (
	SigningAlgorithmSpecUnspecified SigningAlgorithmSpec = 0
	SigningAlgorithmSpecED25519     SigningAlgorithmSpec = 1
	SigningAlgorithmSpecECDSASHA256 SigningAlgorithmSpec = 2
	SigningAlgorithmSpecECDSASHA384 SigningAlgorithmSpec = 3
)

type SigningKeyScheme

type SigningKeyScheme int32
const (
	SigningKeySchemeUnspecified SigningKeyScheme = 0
	SigningKeySchemeED25519     SigningKeyScheme = 1
	SigningKeySchemeECDSAP256   SigningKeyScheme = 2
	SigningKeySchemeECDSAP384   SigningKeyScheme = 3
)

type SigningKeySpec

type SigningKeySpec int32
const (
	SigningKeySpecUnspecified SigningKeySpec = 0
	SigningKeySpecCurve25519  SigningKeySpec = 1
	SigningKeySpecP256        SigningKeySpec = 2
	SigningKeySpecP384        SigningKeySpec = 3
	SigningKeySpecSecp256k1   SigningKeySpec = 4
)

type SigningKeyUsage

type SigningKeyUsage int32
const (
	SigningKeyUsageUnspecified             SigningKeyUsage = 0
	SigningKeyUsageNamespace               SigningKeyUsage = 1
	SigningKeyUsageIdentityDelegation      SigningKeyUsage = 2
	SigningKeyUsageSequencerAuthentication SigningKeyUsage = 3
	SigningKeyUsageProtocol                SigningKeyUsage = 4
	SigningKeyUsageProofOfOwnership        SigningKeyUsage = 5
)

type SinglePartySignatures

type SinglePartySignatures struct {
	Party      string
	Signatures []*Signature
}

type Status

type Status interface {
	// contains filtered or unexported methods
}

type StatusError

type StatusError struct {
	Code    int32
	Message string
}

type StatusOK

type StatusOK struct{}

type StoreID

type StoreID struct {
	Value string
}

type SubmitAndWaitForTransactionResponse

type SubmitAndWaitForTransactionResponse struct {
	UpdateID         string
	CompletionOffset int64
	Transaction      *Transaction
}

type SubmitAndWaitRequest

type SubmitAndWaitRequest struct {
	Commands *Commands
}

type SubmitAndWaitResponse

type SubmitAndWaitResponse struct {
	UpdateID         string
	CompletionOffset int64
}

type SubmitRequest

type SubmitRequest struct {
	Commands *Commands
}

type SubmitResponse

type SubmitResponse struct{}

type TemplateFilter

type TemplateFilter struct {
	TemplateID              string
	IncludeCreatedEventBlob bool
}

type TimeQuery

type TimeQuery struct {
	Serial *int64
	Range  *TimeRange
}

type TimeRange

type TimeRange struct {
	From  *time.Time
	Until *time.Time
}

type TopologyMapping

type TopologyMapping interface {
	// contains filtered or unexported methods
}

type TopologyTransactionProposal

type TopologyTransactionProposal struct {
	Operation Operation
	Mapping   TopologyMapping
	Serial    uint32
}

type TopologyTransactionResult

type TopologyTransactionResult struct {
	Transaction  *SignedTopologyTransaction
	Status       ResultStatus
	ErrorMessage string
}

type TopologyTransactionSignature

type TopologyTransactionSignature struct {
	SignedBy        string
	Signature       []byte
	SignatureFormat int32
}

type Transaction

type Transaction struct {
	UpdateID    string
	CommandID   string
	WorkflowID  string
	EffectiveAt *time.Time
	Events      []*Event
	Offset      int64
}

type TransactionFilter

type TransactionFilter struct {
	FiltersByParty map[string]*Filters
}

type UnassignedEvent

type UnassignedEvent struct {
	UnassignID            string
	ContractID            string
	TemplateID            string
	Source                string
	Target                string
	Submitter             string
	ReassignmentCounter   uint64
	AssignmentExclusivity *time.Time
	WitnessParties        []string
	PackageName           string
	Offset                int64
}

type Update

type Update struct {
	Transaction      *Transaction
	Reassignment     *Reassignment
	OffsetCheckpoint *OffsetCheckpoint
}

type UpdateMask

type UpdateMask struct {
	Paths []string
}

type User

type User struct {
	ID                 string
	PrimaryParty       string
	IsDeactivated      bool
	Metadata           map[string]string
	IdentityProviderID string
}

type ViewStatus

type ViewStatus struct {
	Code    int32
	Message string
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL