Documentation ¶
Index ¶
- Variables
- type Attachment
- func (*Attachment) Descriptor() ([]byte, []int)deprecated
- func (x *Attachment) GetFileName() string
- func (x *Attachment) GetFormData() []*FormData
- func (x *Attachment) GetId() string
- func (x *Attachment) GetUrl() string
- func (*Attachment) ProtoMessage()
- func (x *Attachment) ProtoReflect() protoreflect.Message
- func (x *Attachment) Reset()
- func (x *Attachment) String() string
- type AttachmentInput
- func (*AttachmentInput) Descriptor() ([]byte, []int)deprecated
- func (x *AttachmentInput) GetName() string
- func (x *AttachmentInput) GetSizeBytes() uint32
- func (*AttachmentInput) ProtoMessage()
- func (x *AttachmentInput) ProtoReflect() protoreflect.Message
- func (x *AttachmentInput) Reset()
- func (x *AttachmentInput) String() string
- type ContactRequest
- type ContactResponse
- type CreateAttachmentRequest
- func (*CreateAttachmentRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CreateAttachmentRequest) GetAttachmentInput() *AttachmentInput
- func (*CreateAttachmentRequest) ProtoMessage()
- func (x *CreateAttachmentRequest) ProtoReflect() protoreflect.Message
- func (x *CreateAttachmentRequest) Reset()
- func (x *CreateAttachmentRequest) String() string
- type CreateAttachmentResponse
- func (*CreateAttachmentResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CreateAttachmentResponse) GetAttachment() *Attachment
- func (*CreateAttachmentResponse) ProtoMessage()
- func (x *CreateAttachmentResponse) ProtoReflect() protoreflect.Message
- func (x *CreateAttachmentResponse) Reset()
- func (x *CreateAttachmentResponse) String() string
- type FormData
- type Ticket
- func (*Ticket) Descriptor() ([]byte, []int)deprecated
- func (x *Ticket) GetAttachmentIds() []string
- func (x *Ticket) GetMessage() string
- func (x *Ticket) GetPreventingUse() bool
- func (x *Ticket) GetType() Type
- func (*Ticket) ProtoMessage()
- func (x *Ticket) ProtoReflect() protoreflect.Message
- func (x *Ticket) Reset()
- func (x *Ticket) String() string
- type Type
Constants ¶
This section is empty.
Variables ¶
View Source
var ( Type_name = map[int32]string{ 0: "TYPE_UNSPECIFIED", 1: "TYPE_BUG", 2: "TYPE_QUESTION", 3: "TYPE_FEATURE_REQUEST", } Type_value = map[string]int32{ "TYPE_UNSPECIFIED": 0, "TYPE_BUG": 1, "TYPE_QUESTION": 2, "TYPE_FEATURE_REQUEST": 3, } )
Enum value maps for Type.
View Source
var File_commonfate_control_support_v1alpha1_support_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Attachment ¶
type Attachment struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"` FileName string `protobuf:"bytes,3,opt,name=file_name,json=fileName,proto3" json:"file_name,omitempty"` FormData []*FormData `protobuf:"bytes,4,rep,name=form_data,json=formData,proto3" json:"form_data,omitempty"` // contains filtered or unexported fields }
func (*Attachment) Descriptor
deprecated
func (*Attachment) Descriptor() ([]byte, []int)
Deprecated: Use Attachment.ProtoReflect.Descriptor instead.
func (*Attachment) GetFileName ¶
func (x *Attachment) GetFileName() string
func (*Attachment) GetFormData ¶
func (x *Attachment) GetFormData() []*FormData
func (*Attachment) GetId ¶
func (x *Attachment) GetId() string
func (*Attachment) GetUrl ¶
func (x *Attachment) GetUrl() string
func (*Attachment) ProtoMessage ¶
func (*Attachment) ProtoMessage()
func (*Attachment) ProtoReflect ¶
func (x *Attachment) ProtoReflect() protoreflect.Message
func (*Attachment) Reset ¶
func (x *Attachment) Reset()
func (*Attachment) String ¶
func (x *Attachment) String() string
type AttachmentInput ¶
type AttachmentInput struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` SizeBytes uint32 `protobuf:"varint,2,opt,name=size_bytes,json=sizeBytes,proto3" json:"size_bytes,omitempty"` // contains filtered or unexported fields }
func (*AttachmentInput) Descriptor
deprecated
func (*AttachmentInput) Descriptor() ([]byte, []int)
Deprecated: Use AttachmentInput.ProtoReflect.Descriptor instead.
func (*AttachmentInput) GetName ¶
func (x *AttachmentInput) GetName() string
func (*AttachmentInput) GetSizeBytes ¶
func (x *AttachmentInput) GetSizeBytes() uint32
func (*AttachmentInput) ProtoMessage ¶
func (*AttachmentInput) ProtoMessage()
func (*AttachmentInput) ProtoReflect ¶
func (x *AttachmentInput) ProtoReflect() protoreflect.Message
func (*AttachmentInput) Reset ¶
func (x *AttachmentInput) Reset()
func (*AttachmentInput) String ¶
func (x *AttachmentInput) String() string
type ContactRequest ¶
type ContactRequest struct { Ticket *Ticket `protobuf:"bytes,1,opt,name=ticket,proto3" json:"ticket,omitempty"` // contains filtered or unexported fields }
func (*ContactRequest) Descriptor
deprecated
func (*ContactRequest) Descriptor() ([]byte, []int)
Deprecated: Use ContactRequest.ProtoReflect.Descriptor instead.
func (*ContactRequest) GetTicket ¶
func (x *ContactRequest) GetTicket() *Ticket
func (*ContactRequest) ProtoMessage ¶
func (*ContactRequest) ProtoMessage()
func (*ContactRequest) ProtoReflect ¶
func (x *ContactRequest) ProtoReflect() protoreflect.Message
func (*ContactRequest) Reset ¶
func (x *ContactRequest) Reset()
func (*ContactRequest) String ¶
func (x *ContactRequest) String() string
type ContactResponse ¶
type ContactResponse struct { // An initial response indicating whether the support request has been received. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` // contains filtered or unexported fields }
func (*ContactResponse) Descriptor
deprecated
func (*ContactResponse) Descriptor() ([]byte, []int)
Deprecated: Use ContactResponse.ProtoReflect.Descriptor instead.
func (*ContactResponse) GetMessage ¶
func (x *ContactResponse) GetMessage() string
func (*ContactResponse) ProtoMessage ¶
func (*ContactResponse) ProtoMessage()
func (*ContactResponse) ProtoReflect ¶
func (x *ContactResponse) ProtoReflect() protoreflect.Message
func (*ContactResponse) Reset ¶
func (x *ContactResponse) Reset()
func (*ContactResponse) String ¶
func (x *ContactResponse) String() string
type CreateAttachmentRequest ¶
type CreateAttachmentRequest struct { AttachmentInput *AttachmentInput `protobuf:"bytes,1,opt,name=attachment_input,json=attachmentInput,proto3" json:"attachment_input,omitempty"` // contains filtered or unexported fields }
func (*CreateAttachmentRequest) Descriptor
deprecated
func (*CreateAttachmentRequest) Descriptor() ([]byte, []int)
Deprecated: Use CreateAttachmentRequest.ProtoReflect.Descriptor instead.
func (*CreateAttachmentRequest) GetAttachmentInput ¶
func (x *CreateAttachmentRequest) GetAttachmentInput() *AttachmentInput
func (*CreateAttachmentRequest) ProtoMessage ¶
func (*CreateAttachmentRequest) ProtoMessage()
func (*CreateAttachmentRequest) ProtoReflect ¶
func (x *CreateAttachmentRequest) ProtoReflect() protoreflect.Message
func (*CreateAttachmentRequest) Reset ¶
func (x *CreateAttachmentRequest) Reset()
func (*CreateAttachmentRequest) String ¶
func (x *CreateAttachmentRequest) String() string
type CreateAttachmentResponse ¶
type CreateAttachmentResponse struct { Attachment *Attachment `protobuf:"bytes,1,opt,name=attachment,proto3" json:"attachment,omitempty"` // contains filtered or unexported fields }
func (*CreateAttachmentResponse) Descriptor
deprecated
func (*CreateAttachmentResponse) Descriptor() ([]byte, []int)
Deprecated: Use CreateAttachmentResponse.ProtoReflect.Descriptor instead.
func (*CreateAttachmentResponse) GetAttachment ¶
func (x *CreateAttachmentResponse) GetAttachment() *Attachment
func (*CreateAttachmentResponse) ProtoMessage ¶
func (*CreateAttachmentResponse) ProtoMessage()
func (*CreateAttachmentResponse) ProtoReflect ¶
func (x *CreateAttachmentResponse) ProtoReflect() protoreflect.Message
func (*CreateAttachmentResponse) Reset ¶
func (x *CreateAttachmentResponse) Reset()
func (*CreateAttachmentResponse) String ¶
func (x *CreateAttachmentResponse) String() string
type FormData ¶
type FormData struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` // contains filtered or unexported fields }
func (*FormData) Descriptor
deprecated
func (*FormData) ProtoMessage ¶
func (*FormData) ProtoMessage()
func (*FormData) ProtoReflect ¶
func (x *FormData) ProtoReflect() protoreflect.Message
type Ticket ¶
type Ticket struct { Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` Type Type `protobuf:"varint,2,opt,name=type,proto3,enum=commonfate.control.support.v1alpha1.Type" json:"type,omitempty"` PreventingUse bool `protobuf:"varint,3,opt,name=preventing_use,json=preventingUse,proto3" json:"preventing_use,omitempty"` AttachmentIds []string `protobuf:"bytes,4,rep,name=attachment_ids,json=attachmentIds,proto3" json:"attachment_ids,omitempty"` // contains filtered or unexported fields }
func (*Ticket) Descriptor
deprecated
func (*Ticket) GetAttachmentIds ¶
func (*Ticket) GetMessage ¶
func (*Ticket) GetPreventingUse ¶
func (*Ticket) ProtoMessage ¶
func (*Ticket) ProtoMessage()
func (*Ticket) ProtoReflect ¶
func (x *Ticket) ProtoReflect() protoreflect.Message
type Type ¶
type Type int32
func (Type) Descriptor ¶
func (Type) Descriptor() protoreflect.EnumDescriptor
func (Type) EnumDescriptor
deprecated
func (Type) Number ¶
func (x Type) Number() protoreflect.EnumNumber
func (Type) Type ¶
func (Type) Type() protoreflect.EnumType
Click to show internal directories.
Click to hide internal directories.