Documentation
¶
Index ¶
- Variables
- type ContactLink
- func (*ContactLink) Descriptor() ([]byte, []int)deprecated
- func (x *ContactLink) GetContactId() string
- func (x *ContactLink) GetDetail() string
- func (x *ContactLink) GetExtras() map[string]string
- func (x *ContactLink) GetProfileId() string
- func (x *ContactLink) GetProfileImageId() string
- func (x *ContactLink) GetProfileName() string
- func (x *ContactLink) GetProfileType() string
- func (*ContactLink) ProtoMessage()
- func (x *ContactLink) ProtoReflect() protoreflect.Message
- func (x *ContactLink) Reset()
- func (x *ContactLink) String() string
- type Pagination
- func (*Pagination) Descriptor() ([]byte, []int)deprecated
- func (x *Pagination) GetCount() int32
- func (x *Pagination) GetEndDate() string
- func (x *Pagination) GetPage() int32
- func (x *Pagination) GetStartDate() string
- func (*Pagination) ProtoMessage()
- func (x *Pagination) ProtoReflect() protoreflect.Message
- func (x *Pagination) Reset()
- func (x *Pagination) String() string
- type STATE
- type STATUS
- type SearchRequest
- func (*SearchRequest) Descriptor() ([]byte, []int)deprecated
- func (x *SearchRequest) GetExtras() map[string]string
- func (x *SearchRequest) GetIdQuery() string
- func (x *SearchRequest) GetLimits() *Pagination
- func (x *SearchRequest) GetProperties() []string
- func (x *SearchRequest) GetQuery() string
- func (*SearchRequest) ProtoMessage()
- func (x *SearchRequest) ProtoReflect() protoreflect.Message
- func (x *SearchRequest) Reset()
- func (x *SearchRequest) String() string
- type StatusRequest
- func (*StatusRequest) Descriptor() ([]byte, []int)deprecated
- func (x *StatusRequest) GetExtras() map[string]string
- func (x *StatusRequest) GetId() string
- func (*StatusRequest) ProtoMessage()
- func (x *StatusRequest) ProtoReflect() protoreflect.Message
- func (x *StatusRequest) Reset()
- func (x *StatusRequest) String() string
- type StatusResponse
- func (*StatusResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StatusResponse) GetExternalId() string
- func (x *StatusResponse) GetExtras() map[string]string
- func (x *StatusResponse) GetId() string
- func (x *StatusResponse) GetState() STATE
- func (x *StatusResponse) GetStatus() STATUS
- func (x *StatusResponse) GetTransientId() string
- func (*StatusResponse) ProtoMessage()
- func (x *StatusResponse) ProtoReflect() protoreflect.Message
- func (x *StatusResponse) Reset()
- func (x *StatusResponse) String() string
- type StatusUpdateRequest
- func (*StatusUpdateRequest) Descriptor() ([]byte, []int)deprecated
- func (x *StatusUpdateRequest) GetExternalId() string
- func (x *StatusUpdateRequest) GetExtras() map[string]string
- func (x *StatusUpdateRequest) GetId() string
- func (x *StatusUpdateRequest) GetState() STATE
- func (x *StatusUpdateRequest) GetStatus() STATUS
- func (*StatusUpdateRequest) ProtoMessage()
- func (x *StatusUpdateRequest) ProtoReflect() protoreflect.Message
- func (x *StatusUpdateRequest) Reset()
- func (x *StatusUpdateRequest) String() string
- type StatusUpdateResponse
- func (*StatusUpdateResponse) Descriptor() ([]byte, []int)deprecated
- func (x *StatusUpdateResponse) GetData() *StatusResponse
- func (*StatusUpdateResponse) ProtoMessage()
- func (x *StatusUpdateResponse) ProtoReflect() protoreflect.Message
- func (x *StatusUpdateResponse) Reset()
- func (x *StatusUpdateResponse) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var ( STATE_name = map[int32]string{ 0: "CREATED", 1: "CHECKED", 2: "ACTIVE", 3: "INACTIVE", 4: "DELETED", } STATE_value = map[string]int32{ "CREATED": 0, "CHECKED": 1, "ACTIVE": 2, "INACTIVE": 3, "DELETED": 4, } )
Enum value maps for STATE.
View Source
var ( STATUS_name = map[int32]string{ 0: "UNKNOWN", 1: "QUEUED", 2: "IN_PROCESS", 3: "FAILED", 4: "SUCCESSFUL", } STATUS_value = map[string]int32{ "UNKNOWN": 0, "QUEUED": 1, "IN_PROCESS": 2, "FAILED": 3, "SUCCESSFUL": 4, } )
Enum value maps for STATUS.
View Source
var File_common_v1_common_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type ContactLink ¶ added in v1.13.0
type ContactLink struct { ProfileName string `protobuf:"bytes,1,opt,name=profile_name,json=profileName,proto3" json:"profile_name,omitempty"` ProfileType string `protobuf:"bytes,2,opt,name=profile_type,json=profileType,proto3" json:"profile_type,omitempty"` ProfileId string `protobuf:"bytes,3,opt,name=profile_id,json=profileId,proto3" json:"profile_id,omitempty"` ProfileImageId string `protobuf:"bytes,4,opt,name=profile_image_id,json=profileImageId,proto3" json:"profile_image_id,omitempty"` ContactId string `protobuf:"bytes,8,opt,name=contact_id,json=contactId,proto3" json:"contact_id,omitempty"` Detail string `protobuf:"bytes,9,opt,name=detail,proto3" json:"detail,omitempty"` Extras map[string]string `` /* 140-byte string literal not displayed */ // contains filtered or unexported fields }
func (*ContactLink) Descriptor
deprecated
added in
v1.13.0
func (*ContactLink) Descriptor() ([]byte, []int)
Deprecated: Use ContactLink.ProtoReflect.Descriptor instead.
func (*ContactLink) GetContactId ¶ added in v1.13.0
func (x *ContactLink) GetContactId() string
func (*ContactLink) GetDetail ¶ added in v1.13.0
func (x *ContactLink) GetDetail() string
func (*ContactLink) GetExtras ¶ added in v1.13.0
func (x *ContactLink) GetExtras() map[string]string
func (*ContactLink) GetProfileId ¶ added in v1.13.0
func (x *ContactLink) GetProfileId() string
func (*ContactLink) GetProfileImageId ¶ added in v1.13.0
func (x *ContactLink) GetProfileImageId() string
func (*ContactLink) GetProfileName ¶ added in v1.13.0
func (x *ContactLink) GetProfileName() string
func (*ContactLink) GetProfileType ¶ added in v1.15.1
func (x *ContactLink) GetProfileType() string
func (*ContactLink) ProtoMessage ¶ added in v1.13.0
func (*ContactLink) ProtoMessage()
func (*ContactLink) ProtoReflect ¶ added in v1.13.0
func (x *ContactLink) ProtoReflect() protoreflect.Message
func (*ContactLink) Reset ¶ added in v1.13.0
func (x *ContactLink) Reset()
func (*ContactLink) String ¶ added in v1.13.0
func (x *ContactLink) String() string
type Pagination ¶ added in v1.14.1
type Pagination struct { Count int32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"` Page int32 `protobuf:"varint,2,opt,name=page,proto3" json:"page,omitempty"` StartDate string `protobuf:"bytes,3,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"` EndDate string `protobuf:"bytes,4,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"` // contains filtered or unexported fields }
func (*Pagination) Descriptor
deprecated
added in
v1.14.1
func (*Pagination) Descriptor() ([]byte, []int)
Deprecated: Use Pagination.ProtoReflect.Descriptor instead.
func (*Pagination) GetCount ¶ added in v1.14.1
func (x *Pagination) GetCount() int32
func (*Pagination) GetEndDate ¶ added in v1.14.1
func (x *Pagination) GetEndDate() string
func (*Pagination) GetPage ¶ added in v1.14.1
func (x *Pagination) GetPage() int32
func (*Pagination) GetStartDate ¶ added in v1.14.1
func (x *Pagination) GetStartDate() string
func (*Pagination) ProtoMessage ¶ added in v1.14.1
func (*Pagination) ProtoMessage()
func (*Pagination) ProtoReflect ¶ added in v1.14.1
func (x *Pagination) ProtoReflect() protoreflect.Message
func (*Pagination) Reset ¶ added in v1.14.1
func (x *Pagination) Reset()
func (*Pagination) String ¶ added in v1.14.1
func (x *Pagination) String() string
type STATE ¶
type STATE int32
buf:lint:ignore ENUM_VALUE_PREFIX
func (STATE) Descriptor ¶
func (STATE) Descriptor() protoreflect.EnumDescriptor
func (STATE) EnumDescriptor
deprecated
func (STATE) Number ¶
func (x STATE) Number() protoreflect.EnumNumber
func (STATE) Type ¶
func (STATE) Type() protoreflect.EnumType
type STATUS ¶
type STATUS int32
buf:lint:ignore ENUM_VALUE_PREFIX
func (STATUS) Descriptor ¶
func (STATUS) Descriptor() protoreflect.EnumDescriptor
func (STATUS) EnumDescriptor
deprecated
func (STATUS) Number ¶
func (x STATUS) Number() protoreflect.EnumNumber
func (STATUS) Type ¶
func (STATUS) Type() protoreflect.EnumType
type SearchRequest ¶
type SearchRequest struct { Query string `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` IdQuery string `protobuf:"bytes,2,opt,name=id_query,json=idQuery,proto3" json:"id_query,omitempty"` Limits *Pagination `protobuf:"bytes,3,opt,name=limits,proto3" json:"limits,omitempty"` Properties []string `protobuf:"bytes,7,rep,name=properties,proto3" json:"properties,omitempty"` Extras map[string]string `` /* 139-byte string literal not displayed */ // contains filtered or unexported fields }
func (*SearchRequest) Descriptor
deprecated
func (*SearchRequest) Descriptor() ([]byte, []int)
Deprecated: Use SearchRequest.ProtoReflect.Descriptor instead.
func (*SearchRequest) GetExtras ¶
func (x *SearchRequest) GetExtras() map[string]string
func (*SearchRequest) GetIdQuery ¶ added in v1.7.13
func (x *SearchRequest) GetIdQuery() string
func (*SearchRequest) GetLimits ¶ added in v1.14.1
func (x *SearchRequest) GetLimits() *Pagination
func (*SearchRequest) GetProperties ¶
func (x *SearchRequest) GetProperties() []string
func (*SearchRequest) GetQuery ¶
func (x *SearchRequest) GetQuery() string
func (*SearchRequest) ProtoMessage ¶
func (*SearchRequest) ProtoMessage()
func (*SearchRequest) ProtoReflect ¶
func (x *SearchRequest) ProtoReflect() protoreflect.Message
func (*SearchRequest) Reset ¶
func (x *SearchRequest) Reset()
func (*SearchRequest) String ¶
func (x *SearchRequest) String() string
type StatusRequest ¶
type StatusRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Extras map[string]string `` /* 139-byte string literal not displayed */ // contains filtered or unexported fields }
func (*StatusRequest) Descriptor
deprecated
func (*StatusRequest) Descriptor() ([]byte, []int)
Deprecated: Use StatusRequest.ProtoReflect.Descriptor instead.
func (*StatusRequest) GetExtras ¶
func (x *StatusRequest) GetExtras() map[string]string
func (*StatusRequest) GetId ¶
func (x *StatusRequest) GetId() string
func (*StatusRequest) ProtoMessage ¶
func (*StatusRequest) ProtoMessage()
func (*StatusRequest) ProtoReflect ¶
func (x *StatusRequest) ProtoReflect() protoreflect.Message
func (*StatusRequest) Reset ¶
func (x *StatusRequest) Reset()
func (*StatusRequest) String ¶
func (x *StatusRequest) String() string
type StatusResponse ¶
type StatusResponse struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` State STATE `protobuf:"varint,2,opt,name=state,proto3,enum=common.v1.STATE" json:"state,omitempty"` Status STATUS `protobuf:"varint,3,opt,name=status,proto3,enum=common.v1.STATUS" json:"status,omitempty"` ExternalId string `protobuf:"bytes,4,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty"` TransientId string `protobuf:"bytes,5,opt,name=transient_id,json=transientId,proto3" json:"transient_id,omitempty"` Extras map[string]string `` /* 139-byte string literal not displayed */ // contains filtered or unexported fields }
func (*StatusResponse) Descriptor
deprecated
func (*StatusResponse) Descriptor() ([]byte, []int)
Deprecated: Use StatusResponse.ProtoReflect.Descriptor instead.
func (*StatusResponse) GetExternalId ¶
func (x *StatusResponse) GetExternalId() string
func (*StatusResponse) GetExtras ¶
func (x *StatusResponse) GetExtras() map[string]string
func (*StatusResponse) GetId ¶
func (x *StatusResponse) GetId() string
func (*StatusResponse) GetState ¶
func (x *StatusResponse) GetState() STATE
func (*StatusResponse) GetStatus ¶
func (x *StatusResponse) GetStatus() STATUS
func (*StatusResponse) GetTransientId ¶
func (x *StatusResponse) GetTransientId() string
func (*StatusResponse) ProtoMessage ¶
func (*StatusResponse) ProtoMessage()
func (*StatusResponse) ProtoReflect ¶
func (x *StatusResponse) ProtoReflect() protoreflect.Message
func (*StatusResponse) Reset ¶
func (x *StatusResponse) Reset()
func (*StatusResponse) String ¶
func (x *StatusResponse) String() string
type StatusUpdateRequest ¶
type StatusUpdateRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` State STATE `protobuf:"varint,2,opt,name=state,proto3,enum=common.v1.STATE" json:"state,omitempty"` Status STATUS `protobuf:"varint,3,opt,name=status,proto3,enum=common.v1.STATUS" json:"status,omitempty"` ExternalId string `protobuf:"bytes,4,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty"` Extras map[string]string `` /* 139-byte string literal not displayed */ // contains filtered or unexported fields }
func (*StatusUpdateRequest) Descriptor
deprecated
func (*StatusUpdateRequest) Descriptor() ([]byte, []int)
Deprecated: Use StatusUpdateRequest.ProtoReflect.Descriptor instead.
func (*StatusUpdateRequest) GetExternalId ¶
func (x *StatusUpdateRequest) GetExternalId() string
func (*StatusUpdateRequest) GetExtras ¶
func (x *StatusUpdateRequest) GetExtras() map[string]string
func (*StatusUpdateRequest) GetId ¶
func (x *StatusUpdateRequest) GetId() string
func (*StatusUpdateRequest) GetState ¶
func (x *StatusUpdateRequest) GetState() STATE
func (*StatusUpdateRequest) GetStatus ¶
func (x *StatusUpdateRequest) GetStatus() STATUS
func (*StatusUpdateRequest) ProtoMessage ¶
func (*StatusUpdateRequest) ProtoMessage()
func (*StatusUpdateRequest) ProtoReflect ¶
func (x *StatusUpdateRequest) ProtoReflect() protoreflect.Message
func (*StatusUpdateRequest) Reset ¶
func (x *StatusUpdateRequest) Reset()
func (*StatusUpdateRequest) String ¶
func (x *StatusUpdateRequest) String() string
type StatusUpdateResponse ¶
type StatusUpdateResponse struct { Data *StatusResponse `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` // contains filtered or unexported fields }
func (*StatusUpdateResponse) Descriptor
deprecated
func (*StatusUpdateResponse) Descriptor() ([]byte, []int)
Deprecated: Use StatusUpdateResponse.ProtoReflect.Descriptor instead.
func (*StatusUpdateResponse) GetData ¶
func (x *StatusUpdateResponse) GetData() *StatusResponse
func (*StatusUpdateResponse) ProtoMessage ¶
func (*StatusUpdateResponse) ProtoMessage()
func (*StatusUpdateResponse) ProtoReflect ¶
func (x *StatusUpdateResponse) ProtoReflect() protoreflect.Message
func (*StatusUpdateResponse) Reset ¶
func (x *StatusUpdateResponse) Reset()
func (*StatusUpdateResponse) String ¶
func (x *StatusUpdateResponse) String() string
Click to show internal directories.
Click to hide internal directories.