Documentation ¶
Index ¶
- type Base
- func (*Base) Descriptor() ([]byte, []int)
- func (m *Base) GetImports() []Package
- func (m *Base) GetPackage() string
- func (m *Base) GetServices() []Service
- func (*Base) ProtoMessage()
- func (m *Base) Reset()
- func (m *Base) String() string
- func (m *Base) XXX_DiscardUnknown()
- func (m *Base) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Base) XXX_Merge(src proto.Message)
- func (m *Base) XXX_Size() int
- func (m *Base) XXX_Unmarshal(b []byte) error
- type FieldImport
- func (*FieldImport) Descriptor() ([]byte, []int)
- func (m *FieldImport) GetName() string
- func (m *FieldImport) GetTag() string
- func (*FieldImport) ProtoMessage()
- func (m *FieldImport) Reset()
- func (m *FieldImport) String() string
- func (m *FieldImport) XXX_DiscardUnknown()
- func (m *FieldImport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *FieldImport) XXX_Merge(src proto.Message)
- func (m *FieldImport) XXX_Size() int
- func (m *FieldImport) XXX_Unmarshal(b []byte) error
- type Fields
- func (*Fields) Descriptor() ([]byte, []int)
- func (m *Fields) GetBase() []string
- func (m *Fields) GetDotNotation() []string
- func (m *Fields) GetFieldImport() []FieldImport
- func (m *Fields) GetLowercase() []string
- func (m *Fields) GetParamCase() []string
- func (m *Fields) GetType() string
- func (m *Fields) GetUpperCamelCase() string
- func (*Fields) ProtoMessage()
- func (m *Fields) Reset()
- func (m *Fields) String() string
- func (m *Fields) XXX_DiscardUnknown()
- func (m *Fields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Fields) XXX_Merge(src proto.Message)
- func (m *Fields) XXX_Size() int
- func (m *Fields) XXX_Unmarshal(b []byte) error
- type Input
- func (*Input) Descriptor() ([]byte, []int)
- func (m *Input) GetFieldName() string
- func (m *Input) GetFieldValue() string
- func (*Input) ProtoMessage()
- func (m *Input) Reset()
- func (m *Input) String() string
- func (m *Input) XXX_DiscardUnknown()
- func (m *Input) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Input) XXX_Merge(src proto.Message)
- func (m *Input) XXX_Size() int
- func (m *Input) XXX_Unmarshal(b []byte) error
- type Method
- func (*Method) Descriptor() ([]byte, []int)
- func (m *Method) GetAuth() string
- func (m *Method) GetInputFields() Fields
- func (m *Method) GetInputType() string
- func (m *Method) GetOutputType() string
- func (m *Method) GetRequestOptions() proto1.RequestOptions
- func (m *Method) GetUpperCamelCaseMethodName() string
- func (m *Method) GetUpperCamelCaseServiceName() string
- func (*Method) ProtoMessage()
- func (m *Method) Reset()
- func (m *Method) String() string
- func (m *Method) XXX_DiscardUnknown()
- func (m *Method) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Method) XXX_Merge(src proto.Message)
- func (m *Method) XXX_Size() int
- func (m *Method) XXX_Unmarshal(b []byte) error
- type Package
- func (*Package) Descriptor() ([]byte, []int)
- func (m *Package) GetPackageName() string
- func (m *Package) GetPackagePath() string
- func (*Package) ProtoMessage()
- func (m *Package) Reset()
- func (m *Package) String() string
- func (m *Package) XXX_DiscardUnknown()
- func (m *Package) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Package) XXX_Merge(src proto.Message)
- func (m *Package) XXX_Size() int
- func (m *Package) XXX_Unmarshal(b []byte) error
- type Service
- func (*Service) Descriptor() ([]byte, []int)
- func (m *Service) GetAuth() string
- func (m *Service) GetLowerCamelCaseServiceName() string
- func (m *Service) GetMethods() []Method
- func (m *Service) GetUpperCamelCaseServiceName() string
- func (*Service) ProtoMessage()
- func (m *Service) Reset()
- func (m *Service) String() string
- func (m *Service) XXX_DiscardUnknown()
- func (m *Service) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Service) XXX_Merge(src proto.Message)
- func (m *Service) XXX_Size() int
- func (m *Service) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Base ¶
type Base struct { Package string `protobuf:"bytes,1,opt,name=package,proto3" json:"package,omitempty"` Imports []Package `protobuf:"bytes,2,rep,name=imports,proto3" json:"imports"` Services []Service `protobuf:"bytes,3,rep,name=services,proto3" json:"services"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Base) Descriptor ¶
func (*Base) GetImports ¶
func (*Base) GetPackage ¶
func (*Base) GetServices ¶
func (*Base) ProtoMessage ¶
func (*Base) ProtoMessage()
func (*Base) XXX_DiscardUnknown ¶
func (m *Base) XXX_DiscardUnknown()
func (*Base) XXX_Unmarshal ¶
type FieldImport ¶
type FieldImport struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Tag string `protobuf:"bytes,2,opt,name=tag,proto3" json:"tag,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*FieldImport) Descriptor ¶
func (*FieldImport) Descriptor() ([]byte, []int)
func (*FieldImport) GetName ¶
func (m *FieldImport) GetName() string
func (*FieldImport) GetTag ¶
func (m *FieldImport) GetTag() string
func (*FieldImport) ProtoMessage ¶
func (*FieldImport) ProtoMessage()
func (*FieldImport) Reset ¶
func (m *FieldImport) Reset()
func (*FieldImport) String ¶
func (m *FieldImport) String() string
func (*FieldImport) XXX_DiscardUnknown ¶
func (m *FieldImport) XXX_DiscardUnknown()
func (*FieldImport) XXX_Marshal ¶
func (m *FieldImport) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*FieldImport) XXX_Merge ¶
func (m *FieldImport) XXX_Merge(src proto.Message)
func (*FieldImport) XXX_Size ¶
func (m *FieldImport) XXX_Size() int
func (*FieldImport) XXX_Unmarshal ¶
func (m *FieldImport) XXX_Unmarshal(b []byte) error
type Fields ¶
type Fields struct { FieldImport []FieldImport `protobuf:"bytes,1,rep,name=field_import,json=fieldImport,proto3" json:"field_import"` Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"` UpperCamelCase string `protobuf:"bytes,3,opt,name=upper_camel_case,json=upperCamelCase,proto3" json:"upper_camel_case,omitempty"` Base []string `protobuf:"bytes,4,rep,name=base,proto3" json:"base,omitempty"` Lowercase []string `protobuf:"bytes,5,rep,name=lowercase,proto3" json:"lowercase,omitempty"` DotNotation []string `protobuf:"bytes,6,rep,name=dot_notation,json=dotNotation,proto3" json:"dot_notation,omitempty"` ParamCase []string `protobuf:"bytes,7,rep,name=param_case,json=paramCase,proto3" json:"param_case,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Fields) Descriptor ¶
func (*Fields) GetDotNotation ¶
func (*Fields) GetFieldImport ¶
func (m *Fields) GetFieldImport() []FieldImport
func (*Fields) GetLowercase ¶
func (*Fields) GetParamCase ¶
func (*Fields) GetUpperCamelCase ¶
func (*Fields) ProtoMessage ¶
func (*Fields) ProtoMessage()
func (*Fields) XXX_DiscardUnknown ¶
func (m *Fields) XXX_DiscardUnknown()
func (*Fields) XXX_Marshal ¶
func (*Fields) XXX_Unmarshal ¶
type Input ¶
type Input struct { FieldName string `protobuf:"bytes,1,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` FieldValue string `protobuf:"bytes,2,opt,name=field_value,json=fieldValue,proto3" json:"field_value,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Input) Descriptor ¶
func (*Input) GetFieldName ¶
func (*Input) GetFieldValue ¶
func (*Input) ProtoMessage ¶
func (*Input) ProtoMessage()
func (*Input) XXX_DiscardUnknown ¶
func (m *Input) XXX_DiscardUnknown()
func (*Input) XXX_Marshal ¶
func (*Input) XXX_Unmarshal ¶
type Method ¶
type Method struct { UpperCamelCaseServiceName string `` /* 142-byte string literal not displayed */ UpperCamelCaseMethodName string `` /* 139-byte string literal not displayed */ InputType string `protobuf:"bytes,3,opt,name=input_type,json=inputType,proto3" json:"input_type,omitempty"` InputFields Fields `protobuf:"bytes,4,opt,name=input_fields,json=inputFields,proto3" json:"input_fields"` OutputType string `protobuf:"bytes,5,opt,name=output_type,json=outputType,proto3" json:"output_type,omitempty"` Auth string `protobuf:"bytes,6,opt,name=auth,proto3" json:"auth,omitempty"` RequestOptions proto1.RequestOptions `protobuf:"bytes,7,opt,name=request_options,json=requestOptions,proto3" json:"request_options"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Method) Descriptor ¶
func (*Method) GetInputFields ¶
func (*Method) GetInputType ¶
func (*Method) GetOutputType ¶
func (*Method) GetRequestOptions ¶
func (m *Method) GetRequestOptions() proto1.RequestOptions
func (*Method) GetUpperCamelCaseMethodName ¶
func (*Method) GetUpperCamelCaseServiceName ¶
func (*Method) ProtoMessage ¶
func (*Method) ProtoMessage()
func (*Method) XXX_DiscardUnknown ¶
func (m *Method) XXX_DiscardUnknown()
func (*Method) XXX_Marshal ¶
func (*Method) XXX_Unmarshal ¶
type Package ¶
type Package struct { PackageName string `protobuf:"bytes,1,opt,name=package_name,json=packageName,proto3" json:"package_name,omitempty"` PackagePath string `protobuf:"bytes,2,opt,name=package_path,json=packagePath,proto3" json:"package_path,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Package) Descriptor ¶
func (*Package) GetPackageName ¶
func (*Package) GetPackagePath ¶
func (*Package) ProtoMessage ¶
func (*Package) ProtoMessage()
func (*Package) XXX_DiscardUnknown ¶
func (m *Package) XXX_DiscardUnknown()
func (*Package) XXX_Marshal ¶
func (*Package) XXX_Unmarshal ¶
type Service ¶
type Service struct { UpperCamelCaseServiceName string `` /* 142-byte string literal not displayed */ LowerCamelCaseServiceName string `` /* 142-byte string literal not displayed */ Auth string `protobuf:"bytes,3,opt,name=auth,proto3" json:"auth,omitempty"` Methods []Method `protobuf:"bytes,4,rep,name=methods,proto3" json:"methods"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Service) Descriptor ¶
func (*Service) GetLowerCamelCaseServiceName ¶
func (*Service) GetMethods ¶
func (*Service) GetUpperCamelCaseServiceName ¶
func (*Service) ProtoMessage ¶
func (*Service) ProtoMessage()
func (*Service) XXX_DiscardUnknown ¶
func (m *Service) XXX_DiscardUnknown()
func (*Service) XXX_Marshal ¶
func (*Service) XXX_Unmarshal ¶
Click to show internal directories.
Click to hide internal directories.