Documentation ¶
Index ¶
- Variables
- type CustomField
- func (*CustomField) Descriptor() ([]byte, []int)deprecated
- func (x *CustomField) GetType() string
- func (*CustomField) ProtoMessage()
- func (x *CustomField) ProtoReflect() protoreflect.Message
- func (x *CustomField) Reset()
- func (x *CustomField) String() string
- func (m *CustomField) Validate() error
- func (m *CustomField) ValidateAll() error
- type CustomFieldMultiError
- type CustomFieldValidationError
- func (e CustomFieldValidationError) Cause() error
- func (e CustomFieldValidationError) Error() string
- func (e CustomFieldValidationError) ErrorName() string
- func (e CustomFieldValidationError) Field() string
- func (e CustomFieldValidationError) Key() bool
- func (e CustomFieldValidationError) Reason() string
- type JCIssueTypeProject
- func (*JCIssueTypeProject) Descriptor() ([]byte, []int)deprecated
- func (x *JCIssueTypeProject) GetProjectId() string
- func (x *JCIssueTypeProject) GetProjectKey() string
- func (x *JCIssueTypeProject) GetProjectName() string
- func (*JCIssueTypeProject) ProtoMessage()
- func (x *JCIssueTypeProject) ProtoReflect() protoreflect.Message
- func (x *JCIssueTypeProject) Reset()
- func (x *JCIssueTypeProject) String() string
- func (m *JCIssueTypeProject) Validate() error
- func (m *JCIssueTypeProject) ValidateAll() error
- type JCIssueTypeProjectMultiError
- type JCIssueTypeProjectValidationError
- func (e JCIssueTypeProjectValidationError) Cause() error
- func (e JCIssueTypeProjectValidationError) Error() string
- func (e JCIssueTypeProjectValidationError) ErrorName() string
- func (e JCIssueTypeProjectValidationError) Field() string
- func (e JCIssueTypeProjectValidationError) Key() bool
- func (e JCIssueTypeProjectValidationError) Reason() string
Constants ¶
This section is empty.
Variables ¶
var File_c1_connector_v2_jira_cloud_external_ticket_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type CustomField ¶
type CustomField struct { Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"` // contains filtered or unexported fields }
func (*CustomField) Descriptor
deprecated
func (*CustomField) Descriptor() ([]byte, []int)
Deprecated: Use CustomField.ProtoReflect.Descriptor instead.
func (*CustomField) GetType ¶
func (x *CustomField) GetType() string
func (*CustomField) ProtoMessage ¶
func (*CustomField) ProtoMessage()
func (*CustomField) ProtoReflect ¶
func (x *CustomField) ProtoReflect() protoreflect.Message
func (*CustomField) Reset ¶
func (x *CustomField) Reset()
func (*CustomField) String ¶
func (x *CustomField) String() string
func (*CustomField) Validate ¶
func (m *CustomField) Validate() error
Validate checks the field values on CustomField with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*CustomField) ValidateAll ¶
func (m *CustomField) ValidateAll() error
ValidateAll checks the field values on CustomField with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in CustomFieldMultiError, or nil if none found.
type CustomFieldMultiError ¶
type CustomFieldMultiError []error
CustomFieldMultiError is an error wrapping multiple validation errors returned by CustomField.ValidateAll() if the designated constraints aren't met.
func (CustomFieldMultiError) AllErrors ¶
func (m CustomFieldMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (CustomFieldMultiError) Error ¶
func (m CustomFieldMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type CustomFieldValidationError ¶
type CustomFieldValidationError struct {
// contains filtered or unexported fields
}
CustomFieldValidationError is the validation error returned by CustomField.Validate if the designated constraints aren't met.
func (CustomFieldValidationError) Cause ¶
func (e CustomFieldValidationError) Cause() error
Cause function returns cause value.
func (CustomFieldValidationError) Error ¶
func (e CustomFieldValidationError) Error() string
Error satisfies the builtin error interface
func (CustomFieldValidationError) ErrorName ¶
func (e CustomFieldValidationError) ErrorName() string
ErrorName returns error name.
func (CustomFieldValidationError) Field ¶
func (e CustomFieldValidationError) Field() string
Field function returns field value.
func (CustomFieldValidationError) Key ¶
func (e CustomFieldValidationError) Key() bool
Key function returns key value.
func (CustomFieldValidationError) Reason ¶
func (e CustomFieldValidationError) Reason() string
Reason function returns reason value.
type JCIssueTypeProject ¶
type JCIssueTypeProject struct { ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"` ProjectName string `protobuf:"bytes,2,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"` ProjectKey string `protobuf:"bytes,3,opt,name=project_key,json=projectKey,proto3" json:"project_key,omitempty"` // contains filtered or unexported fields }
func (*JCIssueTypeProject) Descriptor
deprecated
func (*JCIssueTypeProject) Descriptor() ([]byte, []int)
Deprecated: Use JCIssueTypeProject.ProtoReflect.Descriptor instead.
func (*JCIssueTypeProject) GetProjectId ¶
func (x *JCIssueTypeProject) GetProjectId() string
func (*JCIssueTypeProject) GetProjectKey ¶
func (x *JCIssueTypeProject) GetProjectKey() string
func (*JCIssueTypeProject) GetProjectName ¶
func (x *JCIssueTypeProject) GetProjectName() string
func (*JCIssueTypeProject) ProtoMessage ¶
func (*JCIssueTypeProject) ProtoMessage()
func (*JCIssueTypeProject) ProtoReflect ¶
func (x *JCIssueTypeProject) ProtoReflect() protoreflect.Message
func (*JCIssueTypeProject) Reset ¶
func (x *JCIssueTypeProject) Reset()
func (*JCIssueTypeProject) String ¶
func (x *JCIssueTypeProject) String() string
func (*JCIssueTypeProject) Validate ¶
func (m *JCIssueTypeProject) Validate() error
Validate checks the field values on JCIssueTypeProject with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*JCIssueTypeProject) ValidateAll ¶
func (m *JCIssueTypeProject) ValidateAll() error
ValidateAll checks the field values on JCIssueTypeProject with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in JCIssueTypeProjectMultiError, or nil if none found.
type JCIssueTypeProjectMultiError ¶
type JCIssueTypeProjectMultiError []error
JCIssueTypeProjectMultiError is an error wrapping multiple validation errors returned by JCIssueTypeProject.ValidateAll() if the designated constraints aren't met.
func (JCIssueTypeProjectMultiError) AllErrors ¶
func (m JCIssueTypeProjectMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (JCIssueTypeProjectMultiError) Error ¶
func (m JCIssueTypeProjectMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type JCIssueTypeProjectValidationError ¶
type JCIssueTypeProjectValidationError struct {
// contains filtered or unexported fields
}
JCIssueTypeProjectValidationError is the validation error returned by JCIssueTypeProject.Validate if the designated constraints aren't met.
func (JCIssueTypeProjectValidationError) Cause ¶
func (e JCIssueTypeProjectValidationError) Cause() error
Cause function returns cause value.
func (JCIssueTypeProjectValidationError) Error ¶
func (e JCIssueTypeProjectValidationError) Error() string
Error satisfies the builtin error interface
func (JCIssueTypeProjectValidationError) ErrorName ¶
func (e JCIssueTypeProjectValidationError) ErrorName() string
ErrorName returns error name.
func (JCIssueTypeProjectValidationError) Field ¶
func (e JCIssueTypeProjectValidationError) Field() string
Field function returns field value.
func (JCIssueTypeProjectValidationError) Key ¶
func (e JCIssueTypeProjectValidationError) Key() bool
Key function returns key value.
func (JCIssueTypeProjectValidationError) Reason ¶
func (e JCIssueTypeProjectValidationError) Reason() string
Reason function returns reason value.