tenantapp

package
v0.0.0-...-d36d6b6 Latest Latest
Warning

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

Go to latest
Published: Dec 14, 2025 License: MIT Imports: 24 Imported by: 0

Documentation

Index

Constants

View Source
const (
	Tenant_GetTenantApp_FullMethodName    = "/manager.api.tenantapp.Tenant/GetTenantApp"
	Tenant_ListTenantApp_FullMethodName   = "/manager.api.tenantapp.Tenant/ListTenantApp"
	Tenant_CreateTenantApp_FullMethodName = "/manager.api.tenantapp.Tenant/CreateTenantApp"
	Tenant_UpdateTenantApp_FullMethodName = "/manager.api.tenantapp.Tenant/UpdateTenantApp"
	Tenant_DeleteTenantApp_FullMethodName = "/manager.api.tenantapp.Tenant/DeleteTenantApp"
)
View Source
const (
	OperationTenantCreateTenantApp = "/manager.api.tenantapp.Tenant/CreateTenantApp"
	OperationTenantDeleteTenantApp = "/manager.api.tenantapp.Tenant/DeleteTenantApp"
	OperationTenantGetTenantApp    = "/manager.api.tenantapp.Tenant/GetTenantApp"
	OperationTenantListTenantApp   = "/manager.api.tenantapp.Tenant/ListTenantApp"
	OperationTenantUpdateTenantApp = "/manager.api.tenantapp.Tenant/UpdateTenantApp"
)

Variables

View Source
var File_api_tenantapp_proto_tenantapp_proto protoreflect.FileDescriptor
View Source
var File_api_tenantapp_proto_tenantapp_service_proto protoreflect.FileDescriptor
View Source
var Tenant_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "manager.api.tenantapp.Tenant",
	HandlerType: (*TenantServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetTenantApp",
			Handler:    _Tenant_GetTenantApp_Handler,
		},
		{
			MethodName: "ListTenantApp",
			Handler:    _Tenant_ListTenantApp_Handler,
		},
		{
			MethodName: "CreateTenantApp",
			Handler:    _Tenant_CreateTenantApp_Handler,
		},
		{
			MethodName: "UpdateTenantApp",
			Handler:    _Tenant_UpdateTenantApp_Handler,
		},
		{
			MethodName: "DeleteTenantApp",
			Handler:    _Tenant_DeleteTenantApp_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/tenantapp/proto/tenantapp_service.proto",
}

Tenant_ServiceDesc is the grpc.ServiceDesc for Tenant service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

Functions

func RegisterTenantHTTPServer

func RegisterTenantHTTPServer(s *http.Server, srv TenantHTTPServer)

func RegisterTenantServer

func RegisterTenantServer(s grpc.ServiceRegistrar, srv TenantServer)

Types

type App

type App struct {
	Id      uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Keyword string `protobuf:"bytes,3,opt,name=keyword,proto3" json:"keyword,omitempty"`
	Name    string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*App) Descriptor deprecated

func (*App) Descriptor() ([]byte, []int)

Deprecated: Use App.ProtoReflect.Descriptor instead.

func (*App) GetId

func (x *App) GetId() uint32

func (*App) GetKeyword

func (x *App) GetKeyword() string
func (x *App) GetLogo() string

func (*App) GetName

func (x *App) GetName() string

func (*App) ProtoMessage

func (*App) ProtoMessage()

func (*App) ProtoReflect

func (x *App) ProtoReflect() protoreflect.Message

func (*App) Reset

func (x *App) Reset()

func (*App) String

func (x *App) String() string

func (*App) Validate

func (m *App) Validate() error

Validate checks the field values on App 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 (*App) ValidateAll

func (m *App) ValidateAll() error

ValidateAll checks the field values on App 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 AppMultiError, or nil if none found.

type AppMultiError

type AppMultiError []error

AppMultiError is an error wrapping multiple validation errors returned by App.ValidateAll() if the designated constraints aren't met.

func (AppMultiError) AllErrors

func (m AppMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AppMultiError) Error

func (m AppMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type AppValidationError

type AppValidationError struct {
	// contains filtered or unexported fields
}

AppValidationError is the validation error returned by App.Validate if the designated constraints aren't met.

func (AppValidationError) Cause

func (e AppValidationError) Cause() error

Cause function returns cause value.

func (AppValidationError) Error

func (e AppValidationError) Error() string

Error satisfies the builtin error interface

func (AppValidationError) ErrorName

func (e AppValidationError) ErrorName() string

ErrorName returns error name.

func (AppValidationError) Field

func (e AppValidationError) Field() string

Field function returns field value.

func (AppValidationError) Key

func (e AppValidationError) Key() bool

Key function returns key value.

func (AppValidationError) Reason

func (e AppValidationError) Reason() string

Reason function returns reason value.

type CreateTenantAppReply

type CreateTenantAppReply struct {
	Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTenantAppReply) Descriptor deprecated

func (*CreateTenantAppReply) Descriptor() ([]byte, []int)

Deprecated: Use CreateTenantAppReply.ProtoReflect.Descriptor instead.

func (*CreateTenantAppReply) GetId

func (x *CreateTenantAppReply) GetId() uint32

func (*CreateTenantAppReply) ProtoMessage

func (*CreateTenantAppReply) ProtoMessage()

func (*CreateTenantAppReply) ProtoReflect

func (x *CreateTenantAppReply) ProtoReflect() protoreflect.Message

func (*CreateTenantAppReply) Reset

func (x *CreateTenantAppReply) Reset()

func (*CreateTenantAppReply) String

func (x *CreateTenantAppReply) String() string

func (*CreateTenantAppReply) Validate

func (m *CreateTenantAppReply) Validate() error

Validate checks the field values on CreateTenantAppReply 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 (*CreateTenantAppReply) ValidateAll

func (m *CreateTenantAppReply) ValidateAll() error

ValidateAll checks the field values on CreateTenantAppReply 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 CreateTenantAppReplyMultiError, or nil if none found.

type CreateTenantAppReplyMultiError

type CreateTenantAppReplyMultiError []error

CreateTenantAppReplyMultiError is an error wrapping multiple validation errors returned by CreateTenantAppReply.ValidateAll() if the designated constraints aren't met.

func (CreateTenantAppReplyMultiError) AllErrors

func (m CreateTenantAppReplyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTenantAppReplyMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTenantAppReplyValidationError

type CreateTenantAppReplyValidationError struct {
	// contains filtered or unexported fields
}

CreateTenantAppReplyValidationError is the validation error returned by CreateTenantAppReply.Validate if the designated constraints aren't met.

func (CreateTenantAppReplyValidationError) Cause

Cause function returns cause value.

func (CreateTenantAppReplyValidationError) Error

Error satisfies the builtin error interface

func (CreateTenantAppReplyValidationError) ErrorName

ErrorName returns error name.

func (CreateTenantAppReplyValidationError) Field

Field function returns field value.

func (CreateTenantAppReplyValidationError) Key

Key function returns key value.

func (CreateTenantAppReplyValidationError) Reason

Reason function returns reason value.

type CreateTenantAppRequest

type CreateTenantAppRequest struct {
	TenantId  uint32            `protobuf:"varint,1,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	AppId     uint32            `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	ExpiredAt uint32            `protobuf:"varint,3,opt,name=expiredAt,proto3" json:"expiredAt,omitempty"`
	MenuIds   []uint32          `protobuf:"varint,4,rep,packed,name=menuIds,proto3" json:"menuIds,omitempty"`
	Setting   *TenantAppSetting `protobuf:"bytes,5,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateTenantAppRequest) Descriptor deprecated

func (*CreateTenantAppRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateTenantAppRequest.ProtoReflect.Descriptor instead.

func (*CreateTenantAppRequest) GetAppId

func (x *CreateTenantAppRequest) GetAppId() uint32

func (*CreateTenantAppRequest) GetExpiredAt

func (x *CreateTenantAppRequest) GetExpiredAt() uint32

func (*CreateTenantAppRequest) GetMenuIds

func (x *CreateTenantAppRequest) GetMenuIds() []uint32

func (*CreateTenantAppRequest) GetSetting

func (x *CreateTenantAppRequest) GetSetting() *TenantAppSetting

func (*CreateTenantAppRequest) GetTenantId

func (x *CreateTenantAppRequest) GetTenantId() uint32

func (*CreateTenantAppRequest) ProtoMessage

func (*CreateTenantAppRequest) ProtoMessage()

func (*CreateTenantAppRequest) ProtoReflect

func (x *CreateTenantAppRequest) ProtoReflect() protoreflect.Message

func (*CreateTenantAppRequest) Reset

func (x *CreateTenantAppRequest) Reset()

func (*CreateTenantAppRequest) String

func (x *CreateTenantAppRequest) String() string

func (*CreateTenantAppRequest) Validate

func (m *CreateTenantAppRequest) Validate() error

Validate checks the field values on CreateTenantAppRequest 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 (*CreateTenantAppRequest) ValidateAll

func (m *CreateTenantAppRequest) ValidateAll() error

ValidateAll checks the field values on CreateTenantAppRequest 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 CreateTenantAppRequestMultiError, or nil if none found.

type CreateTenantAppRequestMultiError

type CreateTenantAppRequestMultiError []error

CreateTenantAppRequestMultiError is an error wrapping multiple validation errors returned by CreateTenantAppRequest.ValidateAll() if the designated constraints aren't met.

func (CreateTenantAppRequestMultiError) AllErrors

func (m CreateTenantAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CreateTenantAppRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type CreateTenantAppRequestValidationError

type CreateTenantAppRequestValidationError struct {
	// contains filtered or unexported fields
}

CreateTenantAppRequestValidationError is the validation error returned by CreateTenantAppRequest.Validate if the designated constraints aren't met.

func (CreateTenantAppRequestValidationError) Cause

Cause function returns cause value.

func (CreateTenantAppRequestValidationError) Error

Error satisfies the builtin error interface

func (CreateTenantAppRequestValidationError) ErrorName

ErrorName returns error name.

func (CreateTenantAppRequestValidationError) Field

Field function returns field value.

func (CreateTenantAppRequestValidationError) Key

Key function returns key value.

func (CreateTenantAppRequestValidationError) Reason

Reason function returns reason value.

type DeleteTenantAppReply

type DeleteTenantAppReply struct {
	// contains filtered or unexported fields
}

func (*DeleteTenantAppReply) Descriptor deprecated

func (*DeleteTenantAppReply) Descriptor() ([]byte, []int)

Deprecated: Use DeleteTenantAppReply.ProtoReflect.Descriptor instead.

func (*DeleteTenantAppReply) ProtoMessage

func (*DeleteTenantAppReply) ProtoMessage()

func (*DeleteTenantAppReply) ProtoReflect

func (x *DeleteTenantAppReply) ProtoReflect() protoreflect.Message

func (*DeleteTenantAppReply) Reset

func (x *DeleteTenantAppReply) Reset()

func (*DeleteTenantAppReply) String

func (x *DeleteTenantAppReply) String() string

func (*DeleteTenantAppReply) Validate

func (m *DeleteTenantAppReply) Validate() error

Validate checks the field values on DeleteTenantAppReply 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 (*DeleteTenantAppReply) ValidateAll

func (m *DeleteTenantAppReply) ValidateAll() error

ValidateAll checks the field values on DeleteTenantAppReply 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 DeleteTenantAppReplyMultiError, or nil if none found.

type DeleteTenantAppReplyMultiError

type DeleteTenantAppReplyMultiError []error

DeleteTenantAppReplyMultiError is an error wrapping multiple validation errors returned by DeleteTenantAppReply.ValidateAll() if the designated constraints aren't met.

func (DeleteTenantAppReplyMultiError) AllErrors

func (m DeleteTenantAppReplyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTenantAppReplyMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTenantAppReplyValidationError

type DeleteTenantAppReplyValidationError struct {
	// contains filtered or unexported fields
}

DeleteTenantAppReplyValidationError is the validation error returned by DeleteTenantAppReply.Validate if the designated constraints aren't met.

func (DeleteTenantAppReplyValidationError) Cause

Cause function returns cause value.

func (DeleteTenantAppReplyValidationError) Error

Error satisfies the builtin error interface

func (DeleteTenantAppReplyValidationError) ErrorName

ErrorName returns error name.

func (DeleteTenantAppReplyValidationError) Field

Field function returns field value.

func (DeleteTenantAppReplyValidationError) Key

Key function returns key value.

func (DeleteTenantAppReplyValidationError) Reason

Reason function returns reason value.

type DeleteTenantAppRequest

type DeleteTenantAppRequest struct {
	TenantId uint32 `protobuf:"varint,1,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	AppId    uint32 `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTenantAppRequest) Descriptor deprecated

func (*DeleteTenantAppRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteTenantAppRequest.ProtoReflect.Descriptor instead.

func (*DeleteTenantAppRequest) GetAppId

func (x *DeleteTenantAppRequest) GetAppId() uint32

func (*DeleteTenantAppRequest) GetTenantId

func (x *DeleteTenantAppRequest) GetTenantId() uint32

func (*DeleteTenantAppRequest) ProtoMessage

func (*DeleteTenantAppRequest) ProtoMessage()

func (*DeleteTenantAppRequest) ProtoReflect

func (x *DeleteTenantAppRequest) ProtoReflect() protoreflect.Message

func (*DeleteTenantAppRequest) Reset

func (x *DeleteTenantAppRequest) Reset()

func (*DeleteTenantAppRequest) String

func (x *DeleteTenantAppRequest) String() string

func (*DeleteTenantAppRequest) Validate

func (m *DeleteTenantAppRequest) Validate() error

Validate checks the field values on DeleteTenantAppRequest 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 (*DeleteTenantAppRequest) ValidateAll

func (m *DeleteTenantAppRequest) ValidateAll() error

ValidateAll checks the field values on DeleteTenantAppRequest 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 DeleteTenantAppRequestMultiError, or nil if none found.

type DeleteTenantAppRequestMultiError

type DeleteTenantAppRequestMultiError []error

DeleteTenantAppRequestMultiError is an error wrapping multiple validation errors returned by DeleteTenantAppRequest.ValidateAll() if the designated constraints aren't met.

func (DeleteTenantAppRequestMultiError) AllErrors

func (m DeleteTenantAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteTenantAppRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteTenantAppRequestValidationError

type DeleteTenantAppRequestValidationError struct {
	// contains filtered or unexported fields
}

DeleteTenantAppRequestValidationError is the validation error returned by DeleteTenantAppRequest.Validate if the designated constraints aren't met.

func (DeleteTenantAppRequestValidationError) Cause

Cause function returns cause value.

func (DeleteTenantAppRequestValidationError) Error

Error satisfies the builtin error interface

func (DeleteTenantAppRequestValidationError) ErrorName

ErrorName returns error name.

func (DeleteTenantAppRequestValidationError) Field

Field function returns field value.

func (DeleteTenantAppRequestValidationError) Key

Key function returns key value.

func (DeleteTenantAppRequestValidationError) Reason

Reason function returns reason value.

type GetTenantAppReply

type GetTenantAppReply struct {
	Id        uint32            `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	AppId     uint32            `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	TenantId  uint32            `protobuf:"varint,3,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	ExpiredAt uint32            `protobuf:"varint,4,opt,name=expiredAt,proto3" json:"expiredAt,omitempty"`
	CreatedAt uint32            `protobuf:"varint,5,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	UpdatedAt uint32            `protobuf:"varint,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	App       *App              `protobuf:"bytes,7,opt,name=app,proto3" json:"app,omitempty"`
	MenuIds   []uint32          `protobuf:"varint,8,rep,packed,name=menuIds,proto3" json:"menuIds,omitempty"`
	Setting   *TenantAppSetting `protobuf:"bytes,9,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTenantAppReply) Descriptor deprecated

func (*GetTenantAppReply) Descriptor() ([]byte, []int)

Deprecated: Use GetTenantAppReply.ProtoReflect.Descriptor instead.

func (*GetTenantAppReply) GetApp

func (x *GetTenantAppReply) GetApp() *App

func (*GetTenantAppReply) GetAppId

func (x *GetTenantAppReply) GetAppId() uint32

func (*GetTenantAppReply) GetCreatedAt

func (x *GetTenantAppReply) GetCreatedAt() uint32

func (*GetTenantAppReply) GetExpiredAt

func (x *GetTenantAppReply) GetExpiredAt() uint32

func (*GetTenantAppReply) GetId

func (x *GetTenantAppReply) GetId() uint32

func (*GetTenantAppReply) GetMenuIds

func (x *GetTenantAppReply) GetMenuIds() []uint32

func (*GetTenantAppReply) GetSetting

func (x *GetTenantAppReply) GetSetting() *TenantAppSetting

func (*GetTenantAppReply) GetTenantId

func (x *GetTenantAppReply) GetTenantId() uint32

func (*GetTenantAppReply) GetUpdatedAt

func (x *GetTenantAppReply) GetUpdatedAt() uint32

func (*GetTenantAppReply) ProtoMessage

func (*GetTenantAppReply) ProtoMessage()

func (*GetTenantAppReply) ProtoReflect

func (x *GetTenantAppReply) ProtoReflect() protoreflect.Message

func (*GetTenantAppReply) Reset

func (x *GetTenantAppReply) Reset()

func (*GetTenantAppReply) String

func (x *GetTenantAppReply) String() string

func (*GetTenantAppReply) Validate

func (m *GetTenantAppReply) Validate() error

Validate checks the field values on GetTenantAppReply 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 (*GetTenantAppReply) ValidateAll

func (m *GetTenantAppReply) ValidateAll() error

ValidateAll checks the field values on GetTenantAppReply 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 GetTenantAppReplyMultiError, or nil if none found.

type GetTenantAppReplyMultiError

type GetTenantAppReplyMultiError []error

GetTenantAppReplyMultiError is an error wrapping multiple validation errors returned by GetTenantAppReply.ValidateAll() if the designated constraints aren't met.

func (GetTenantAppReplyMultiError) AllErrors

func (m GetTenantAppReplyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTenantAppReplyMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetTenantAppReplyValidationError

type GetTenantAppReplyValidationError struct {
	// contains filtered or unexported fields
}

GetTenantAppReplyValidationError is the validation error returned by GetTenantAppReply.Validate if the designated constraints aren't met.

func (GetTenantAppReplyValidationError) Cause

Cause function returns cause value.

func (GetTenantAppReplyValidationError) Error

Error satisfies the builtin error interface

func (GetTenantAppReplyValidationError) ErrorName

ErrorName returns error name.

func (GetTenantAppReplyValidationError) Field

Field function returns field value.

func (GetTenantAppReplyValidationError) Key

Key function returns key value.

func (GetTenantAppReplyValidationError) Reason

Reason function returns reason value.

type GetTenantAppRequest

type GetTenantAppRequest struct {
	TenantId uint32 `protobuf:"varint,1,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	AppId    uint32 `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	// contains filtered or unexported fields
}

func (*GetTenantAppRequest) Descriptor deprecated

func (*GetTenantAppRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetTenantAppRequest.ProtoReflect.Descriptor instead.

func (*GetTenantAppRequest) GetAppId

func (x *GetTenantAppRequest) GetAppId() uint32

func (*GetTenantAppRequest) GetTenantId

func (x *GetTenantAppRequest) GetTenantId() uint32

func (*GetTenantAppRequest) ProtoMessage

func (*GetTenantAppRequest) ProtoMessage()

func (*GetTenantAppRequest) ProtoReflect

func (x *GetTenantAppRequest) ProtoReflect() protoreflect.Message

func (*GetTenantAppRequest) Reset

func (x *GetTenantAppRequest) Reset()

func (*GetTenantAppRequest) String

func (x *GetTenantAppRequest) String() string

func (*GetTenantAppRequest) Validate

func (m *GetTenantAppRequest) Validate() error

Validate checks the field values on GetTenantAppRequest 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 (*GetTenantAppRequest) ValidateAll

func (m *GetTenantAppRequest) ValidateAll() error

ValidateAll checks the field values on GetTenantAppRequest 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 GetTenantAppRequestMultiError, or nil if none found.

type GetTenantAppRequestMultiError

type GetTenantAppRequestMultiError []error

GetTenantAppRequestMultiError is an error wrapping multiple validation errors returned by GetTenantAppRequest.ValidateAll() if the designated constraints aren't met.

func (GetTenantAppRequestMultiError) AllErrors

func (m GetTenantAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetTenantAppRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetTenantAppRequestValidationError

type GetTenantAppRequestValidationError struct {
	// contains filtered or unexported fields
}

GetTenantAppRequestValidationError is the validation error returned by GetTenantAppRequest.Validate if the designated constraints aren't met.

func (GetTenantAppRequestValidationError) Cause

Cause function returns cause value.

func (GetTenantAppRequestValidationError) Error

Error satisfies the builtin error interface

func (GetTenantAppRequestValidationError) ErrorName

ErrorName returns error name.

func (GetTenantAppRequestValidationError) Field

Field function returns field value.

func (GetTenantAppRequestValidationError) Key

Key function returns key value.

func (GetTenantAppRequestValidationError) Reason

Reason function returns reason value.

type ListTenantAppReply

type ListTenantAppReply struct {
	List  []*ListTenantAppReply_Data `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
	Total uint32                     `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTenantAppReply) Descriptor deprecated

func (*ListTenantAppReply) Descriptor() ([]byte, []int)

Deprecated: Use ListTenantAppReply.ProtoReflect.Descriptor instead.

func (*ListTenantAppReply) GetList

func (*ListTenantAppReply) GetTotal

func (x *ListTenantAppReply) GetTotal() uint32

func (*ListTenantAppReply) ProtoMessage

func (*ListTenantAppReply) ProtoMessage()

func (*ListTenantAppReply) ProtoReflect

func (x *ListTenantAppReply) ProtoReflect() protoreflect.Message

func (*ListTenantAppReply) Reset

func (x *ListTenantAppReply) Reset()

func (*ListTenantAppReply) String

func (x *ListTenantAppReply) String() string

func (*ListTenantAppReply) Validate

func (m *ListTenantAppReply) Validate() error

Validate checks the field values on ListTenantAppReply 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 (*ListTenantAppReply) ValidateAll

func (m *ListTenantAppReply) ValidateAll() error

ValidateAll checks the field values on ListTenantAppReply 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 ListTenantAppReplyMultiError, or nil if none found.

type ListTenantAppReplyMultiError

type ListTenantAppReplyMultiError []error

ListTenantAppReplyMultiError is an error wrapping multiple validation errors returned by ListTenantAppReply.ValidateAll() if the designated constraints aren't met.

func (ListTenantAppReplyMultiError) AllErrors

func (m ListTenantAppReplyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListTenantAppReplyMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ListTenantAppReplyValidationError

type ListTenantAppReplyValidationError struct {
	// contains filtered or unexported fields
}

ListTenantAppReplyValidationError is the validation error returned by ListTenantAppReply.Validate if the designated constraints aren't met.

func (ListTenantAppReplyValidationError) Cause

Cause function returns cause value.

func (ListTenantAppReplyValidationError) Error

Error satisfies the builtin error interface

func (ListTenantAppReplyValidationError) ErrorName

ErrorName returns error name.

func (ListTenantAppReplyValidationError) Field

Field function returns field value.

func (ListTenantAppReplyValidationError) Key

Key function returns key value.

func (ListTenantAppReplyValidationError) Reason

Reason function returns reason value.

type ListTenantAppReply_Data

type ListTenantAppReply_Data struct {
	Id        uint32            `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	AppId     uint32            `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	TenantId  uint32            `protobuf:"varint,3,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	ExpiredAt uint32            `protobuf:"varint,4,opt,name=expiredAt,proto3" json:"expiredAt,omitempty"`
	CreatedAt uint32            `protobuf:"varint,5,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	UpdatedAt uint32            `protobuf:"varint,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	App       *App              `protobuf:"bytes,7,opt,name=app,proto3" json:"app,omitempty"`
	MenuIds   []uint32          `protobuf:"varint,8,rep,packed,name=menuIds,proto3" json:"menuIds,omitempty"`
	Setting   *TenantAppSetting `protobuf:"bytes,9,opt,name=setting,proto3" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTenantAppReply_Data) Descriptor deprecated

func (*ListTenantAppReply_Data) Descriptor() ([]byte, []int)

Deprecated: Use ListTenantAppReply_Data.ProtoReflect.Descriptor instead.

func (*ListTenantAppReply_Data) GetApp

func (x *ListTenantAppReply_Data) GetApp() *App

func (*ListTenantAppReply_Data) GetAppId

func (x *ListTenantAppReply_Data) GetAppId() uint32

func (*ListTenantAppReply_Data) GetCreatedAt

func (x *ListTenantAppReply_Data) GetCreatedAt() uint32

func (*ListTenantAppReply_Data) GetExpiredAt

func (x *ListTenantAppReply_Data) GetExpiredAt() uint32

func (*ListTenantAppReply_Data) GetId

func (x *ListTenantAppReply_Data) GetId() uint32

func (*ListTenantAppReply_Data) GetMenuIds

func (x *ListTenantAppReply_Data) GetMenuIds() []uint32

func (*ListTenantAppReply_Data) GetSetting

func (x *ListTenantAppReply_Data) GetSetting() *TenantAppSetting

func (*ListTenantAppReply_Data) GetTenantId

func (x *ListTenantAppReply_Data) GetTenantId() uint32

func (*ListTenantAppReply_Data) GetUpdatedAt

func (x *ListTenantAppReply_Data) GetUpdatedAt() uint32

func (*ListTenantAppReply_Data) ProtoMessage

func (*ListTenantAppReply_Data) ProtoMessage()

func (*ListTenantAppReply_Data) ProtoReflect

func (x *ListTenantAppReply_Data) ProtoReflect() protoreflect.Message

func (*ListTenantAppReply_Data) Reset

func (x *ListTenantAppReply_Data) Reset()

func (*ListTenantAppReply_Data) String

func (x *ListTenantAppReply_Data) String() string

func (*ListTenantAppReply_Data) Validate

func (m *ListTenantAppReply_Data) Validate() error

Validate checks the field values on ListTenantAppReply_Data 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 (*ListTenantAppReply_Data) ValidateAll

func (m *ListTenantAppReply_Data) ValidateAll() error

ValidateAll checks the field values on ListTenantAppReply_Data 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 ListTenantAppReply_DataMultiError, or nil if none found.

type ListTenantAppReply_DataMultiError

type ListTenantAppReply_DataMultiError []error

ListTenantAppReply_DataMultiError is an error wrapping multiple validation errors returned by ListTenantAppReply_Data.ValidateAll() if the designated constraints aren't met.

func (ListTenantAppReply_DataMultiError) AllErrors

func (m ListTenantAppReply_DataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListTenantAppReply_DataMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ListTenantAppReply_DataValidationError

type ListTenantAppReply_DataValidationError struct {
	// contains filtered or unexported fields
}

ListTenantAppReply_DataValidationError is the validation error returned by ListTenantAppReply_Data.Validate if the designated constraints aren't met.

func (ListTenantAppReply_DataValidationError) Cause

Cause function returns cause value.

func (ListTenantAppReply_DataValidationError) Error

Error satisfies the builtin error interface

func (ListTenantAppReply_DataValidationError) ErrorName

ErrorName returns error name.

func (ListTenantAppReply_DataValidationError) Field

Field function returns field value.

func (ListTenantAppReply_DataValidationError) Key

Key function returns key value.

func (ListTenantAppReply_DataValidationError) Reason

Reason function returns reason value.

type ListTenantAppRequest

type ListTenantAppRequest struct {
	Page       uint32  `protobuf:"varint,1,opt,name=page,proto3" json:"page,omitempty"`
	PageSize   uint32  `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
	Order      *string `protobuf:"bytes,3,opt,name=order,proto3,oneof" json:"order,omitempty"`
	OrderBy    *string `protobuf:"bytes,4,opt,name=orderBy,proto3,oneof" json:"orderBy,omitempty"`
	AppName    *string `protobuf:"bytes,5,opt,name=appName,proto3,oneof" json:"appName,omitempty"`
	AppKeyword *string `protobuf:"bytes,6,opt,name=appKeyword,proto3,oneof" json:"appKeyword,omitempty"`
	TenantId   uint32  `protobuf:"varint,7,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	// contains filtered or unexported fields
}

func (*ListTenantAppRequest) Descriptor deprecated

func (*ListTenantAppRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListTenantAppRequest.ProtoReflect.Descriptor instead.

func (*ListTenantAppRequest) GetAppKeyword

func (x *ListTenantAppRequest) GetAppKeyword() string

func (*ListTenantAppRequest) GetAppName

func (x *ListTenantAppRequest) GetAppName() string

func (*ListTenantAppRequest) GetOrder

func (x *ListTenantAppRequest) GetOrder() string

func (*ListTenantAppRequest) GetOrderBy

func (x *ListTenantAppRequest) GetOrderBy() string

func (*ListTenantAppRequest) GetPage

func (x *ListTenantAppRequest) GetPage() uint32

func (*ListTenantAppRequest) GetPageSize

func (x *ListTenantAppRequest) GetPageSize() uint32

func (*ListTenantAppRequest) GetTenantId

func (x *ListTenantAppRequest) GetTenantId() uint32

func (*ListTenantAppRequest) ProtoMessage

func (*ListTenantAppRequest) ProtoMessage()

func (*ListTenantAppRequest) ProtoReflect

func (x *ListTenantAppRequest) ProtoReflect() protoreflect.Message

func (*ListTenantAppRequest) Reset

func (x *ListTenantAppRequest) Reset()

func (*ListTenantAppRequest) String

func (x *ListTenantAppRequest) String() string

func (*ListTenantAppRequest) Validate

func (m *ListTenantAppRequest) Validate() error

Validate checks the field values on ListTenantAppRequest 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 (*ListTenantAppRequest) ValidateAll

func (m *ListTenantAppRequest) ValidateAll() error

ValidateAll checks the field values on ListTenantAppRequest 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 ListTenantAppRequestMultiError, or nil if none found.

type ListTenantAppRequestMultiError

type ListTenantAppRequestMultiError []error

ListTenantAppRequestMultiError is an error wrapping multiple validation errors returned by ListTenantAppRequest.ValidateAll() if the designated constraints aren't met.

func (ListTenantAppRequestMultiError) AllErrors

func (m ListTenantAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListTenantAppRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ListTenantAppRequestValidationError

type ListTenantAppRequestValidationError struct {
	// contains filtered or unexported fields
}

ListTenantAppRequestValidationError is the validation error returned by ListTenantAppRequest.Validate if the designated constraints aren't met.

func (ListTenantAppRequestValidationError) Cause

Cause function returns cause value.

func (ListTenantAppRequestValidationError) Error

Error satisfies the builtin error interface

func (ListTenantAppRequestValidationError) ErrorName

ErrorName returns error name.

func (ListTenantAppRequestValidationError) Field

Field function returns field value.

func (ListTenantAppRequestValidationError) Key

Key function returns key value.

func (ListTenantAppRequestValidationError) Reason

Reason function returns reason value.

type TenantAppSetting

type TenantAppSetting struct {
	EnableNotice *bool   `protobuf:"varint,1,opt,name=enableNotice,proto3,oneof" json:"enableNotice,omitempty"`
	NoticeEmail  *string `protobuf:"bytes,2,opt,name=noticeEmail,proto3,oneof" json:"noticeEmail,omitempty"`
	// contains filtered or unexported fields
}

func (*TenantAppSetting) Descriptor deprecated

func (*TenantAppSetting) Descriptor() ([]byte, []int)

Deprecated: Use TenantAppSetting.ProtoReflect.Descriptor instead.

func (*TenantAppSetting) GetEnableNotice

func (x *TenantAppSetting) GetEnableNotice() bool

func (*TenantAppSetting) GetNoticeEmail

func (x *TenantAppSetting) GetNoticeEmail() string

func (*TenantAppSetting) ProtoMessage

func (*TenantAppSetting) ProtoMessage()

func (*TenantAppSetting) ProtoReflect

func (x *TenantAppSetting) ProtoReflect() protoreflect.Message

func (*TenantAppSetting) Reset

func (x *TenantAppSetting) Reset()

func (*TenantAppSetting) String

func (x *TenantAppSetting) String() string

func (*TenantAppSetting) Validate

func (m *TenantAppSetting) Validate() error

Validate checks the field values on TenantAppSetting 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 (*TenantAppSetting) ValidateAll

func (m *TenantAppSetting) ValidateAll() error

ValidateAll checks the field values on TenantAppSetting 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 TenantAppSettingMultiError, or nil if none found.

type TenantAppSettingMultiError

type TenantAppSettingMultiError []error

TenantAppSettingMultiError is an error wrapping multiple validation errors returned by TenantAppSetting.ValidateAll() if the designated constraints aren't met.

func (TenantAppSettingMultiError) AllErrors

func (m TenantAppSettingMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (TenantAppSettingMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type TenantAppSettingValidationError

type TenantAppSettingValidationError struct {
	// contains filtered or unexported fields
}

TenantAppSettingValidationError is the validation error returned by TenantAppSetting.Validate if the designated constraints aren't met.

func (TenantAppSettingValidationError) Cause

Cause function returns cause value.

func (TenantAppSettingValidationError) Error

Error satisfies the builtin error interface

func (TenantAppSettingValidationError) ErrorName

ErrorName returns error name.

func (TenantAppSettingValidationError) Field

Field function returns field value.

func (TenantAppSettingValidationError) Key

Key function returns key value.

func (TenantAppSettingValidationError) Reason

Reason function returns reason value.

type TenantClient

type TenantClient interface {
	GetTenantApp(ctx context.Context, in *GetTenantAppRequest, opts ...grpc.CallOption) (*GetTenantAppReply, error)
	ListTenantApp(ctx context.Context, in *ListTenantAppRequest, opts ...grpc.CallOption) (*ListTenantAppReply, error)
	CreateTenantApp(ctx context.Context, in *CreateTenantAppRequest, opts ...grpc.CallOption) (*CreateTenantAppReply, error)
	UpdateTenantApp(ctx context.Context, in *UpdateTenantAppRequest, opts ...grpc.CallOption) (*UpdateTenantAppReply, error)
	DeleteTenantApp(ctx context.Context, in *DeleteTenantAppRequest, opts ...grpc.CallOption) (*DeleteTenantAppReply, error)
}

TenantClient is the client API for Tenant service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

func NewTenantClient

func NewTenantClient(cc grpc.ClientConnInterface) TenantClient

type TenantHTTPClient

type TenantHTTPClient interface {
	CreateTenantApp(ctx context.Context, req *CreateTenantAppRequest, opts ...http.CallOption) (rsp *CreateTenantAppReply, err error)
	DeleteTenantApp(ctx context.Context, req *DeleteTenantAppRequest, opts ...http.CallOption) (rsp *DeleteTenantAppReply, err error)
	GetTenantApp(ctx context.Context, req *GetTenantAppRequest, opts ...http.CallOption) (rsp *GetTenantAppReply, err error)
	ListTenantApp(ctx context.Context, req *ListTenantAppRequest, opts ...http.CallOption) (rsp *ListTenantAppReply, err error)
	UpdateTenantApp(ctx context.Context, req *UpdateTenantAppRequest, opts ...http.CallOption) (rsp *UpdateTenantAppReply, err error)
}

func NewTenantHTTPClient

func NewTenantHTTPClient(client *http.Client) TenantHTTPClient

type TenantHTTPClientImpl

type TenantHTTPClientImpl struct {
	// contains filtered or unexported fields
}

func (*TenantHTTPClientImpl) CreateTenantApp

func (*TenantHTTPClientImpl) DeleteTenantApp

func (*TenantHTTPClientImpl) GetTenantApp

func (*TenantHTTPClientImpl) ListTenantApp

func (*TenantHTTPClientImpl) UpdateTenantApp

type TenantServer

type TenantServer interface {
	GetTenantApp(context.Context, *GetTenantAppRequest) (*GetTenantAppReply, error)
	ListTenantApp(context.Context, *ListTenantAppRequest) (*ListTenantAppReply, error)
	CreateTenantApp(context.Context, *CreateTenantAppRequest) (*CreateTenantAppReply, error)
	UpdateTenantApp(context.Context, *UpdateTenantAppRequest) (*UpdateTenantAppReply, error)
	DeleteTenantApp(context.Context, *DeleteTenantAppRequest) (*DeleteTenantAppReply, error)
	// contains filtered or unexported methods
}

TenantServer is the server API for Tenant service. All implementations must embed UnimplementedTenantServer for forward compatibility

type UnimplementedTenantServer

type UnimplementedTenantServer struct{}

UnimplementedTenantServer must be embedded to have forward compatible implementations.

func (UnimplementedTenantServer) CreateTenantApp

func (UnimplementedTenantServer) DeleteTenantApp

func (UnimplementedTenantServer) GetTenantApp

func (UnimplementedTenantServer) ListTenantApp

func (UnimplementedTenantServer) UpdateTenantApp

type UnsafeTenantServer

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

UnsafeTenantServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to TenantServer will result in compilation errors.

type UpdateTenantAppReply

type UpdateTenantAppReply struct {
	// contains filtered or unexported fields
}

func (*UpdateTenantAppReply) Descriptor deprecated

func (*UpdateTenantAppReply) Descriptor() ([]byte, []int)

Deprecated: Use UpdateTenantAppReply.ProtoReflect.Descriptor instead.

func (*UpdateTenantAppReply) ProtoMessage

func (*UpdateTenantAppReply) ProtoMessage()

func (*UpdateTenantAppReply) ProtoReflect

func (x *UpdateTenantAppReply) ProtoReflect() protoreflect.Message

func (*UpdateTenantAppReply) Reset

func (x *UpdateTenantAppReply) Reset()

func (*UpdateTenantAppReply) String

func (x *UpdateTenantAppReply) String() string

func (*UpdateTenantAppReply) Validate

func (m *UpdateTenantAppReply) Validate() error

Validate checks the field values on UpdateTenantAppReply 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 (*UpdateTenantAppReply) ValidateAll

func (m *UpdateTenantAppReply) ValidateAll() error

ValidateAll checks the field values on UpdateTenantAppReply 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 UpdateTenantAppReplyMultiError, or nil if none found.

type UpdateTenantAppReplyMultiError

type UpdateTenantAppReplyMultiError []error

UpdateTenantAppReplyMultiError is an error wrapping multiple validation errors returned by UpdateTenantAppReply.ValidateAll() if the designated constraints aren't met.

func (UpdateTenantAppReplyMultiError) AllErrors

func (m UpdateTenantAppReplyMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTenantAppReplyMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateTenantAppReplyValidationError

type UpdateTenantAppReplyValidationError struct {
	// contains filtered or unexported fields
}

UpdateTenantAppReplyValidationError is the validation error returned by UpdateTenantAppReply.Validate if the designated constraints aren't met.

func (UpdateTenantAppReplyValidationError) Cause

Cause function returns cause value.

func (UpdateTenantAppReplyValidationError) Error

Error satisfies the builtin error interface

func (UpdateTenantAppReplyValidationError) ErrorName

ErrorName returns error name.

func (UpdateTenantAppReplyValidationError) Field

Field function returns field value.

func (UpdateTenantAppReplyValidationError) Key

Key function returns key value.

func (UpdateTenantAppReplyValidationError) Reason

Reason function returns reason value.

type UpdateTenantAppRequest

type UpdateTenantAppRequest struct {
	TenantId  uint32            `protobuf:"varint,1,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
	AppId     uint32            `protobuf:"varint,2,opt,name=appId,proto3" json:"appId,omitempty"`
	ExpiredAt uint32            `protobuf:"varint,3,opt,name=expiredAt,proto3" json:"expiredAt,omitempty"`
	MenuIds   []uint32          `protobuf:"varint,4,rep,packed,name=menuIds,proto3" json:"menuIds,omitempty"`
	Setting   *TenantAppSetting `protobuf:"bytes,5,opt,name=setting,proto3,oneof" json:"setting,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateTenantAppRequest) Descriptor deprecated

func (*UpdateTenantAppRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateTenantAppRequest.ProtoReflect.Descriptor instead.

func (*UpdateTenantAppRequest) GetAppId

func (x *UpdateTenantAppRequest) GetAppId() uint32

func (*UpdateTenantAppRequest) GetExpiredAt

func (x *UpdateTenantAppRequest) GetExpiredAt() uint32

func (*UpdateTenantAppRequest) GetMenuIds

func (x *UpdateTenantAppRequest) GetMenuIds() []uint32

func (*UpdateTenantAppRequest) GetSetting

func (x *UpdateTenantAppRequest) GetSetting() *TenantAppSetting

func (*UpdateTenantAppRequest) GetTenantId

func (x *UpdateTenantAppRequest) GetTenantId() uint32

func (*UpdateTenantAppRequest) ProtoMessage

func (*UpdateTenantAppRequest) ProtoMessage()

func (*UpdateTenantAppRequest) ProtoReflect

func (x *UpdateTenantAppRequest) ProtoReflect() protoreflect.Message

func (*UpdateTenantAppRequest) Reset

func (x *UpdateTenantAppRequest) Reset()

func (*UpdateTenantAppRequest) String

func (x *UpdateTenantAppRequest) String() string

func (*UpdateTenantAppRequest) Validate

func (m *UpdateTenantAppRequest) Validate() error

Validate checks the field values on UpdateTenantAppRequest 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 (*UpdateTenantAppRequest) ValidateAll

func (m *UpdateTenantAppRequest) ValidateAll() error

ValidateAll checks the field values on UpdateTenantAppRequest 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 UpdateTenantAppRequestMultiError, or nil if none found.

type UpdateTenantAppRequestMultiError

type UpdateTenantAppRequestMultiError []error

UpdateTenantAppRequestMultiError is an error wrapping multiple validation errors returned by UpdateTenantAppRequest.ValidateAll() if the designated constraints aren't met.

func (UpdateTenantAppRequestMultiError) AllErrors

func (m UpdateTenantAppRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (UpdateTenantAppRequestMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type UpdateTenantAppRequestValidationError

type UpdateTenantAppRequestValidationError struct {
	// contains filtered or unexported fields
}

UpdateTenantAppRequestValidationError is the validation error returned by UpdateTenantAppRequest.Validate if the designated constraints aren't met.

func (UpdateTenantAppRequestValidationError) Cause

Cause function returns cause value.

func (UpdateTenantAppRequestValidationError) Error

Error satisfies the builtin error interface

func (UpdateTenantAppRequestValidationError) ErrorName

ErrorName returns error name.

func (UpdateTenantAppRequestValidationError) Field

Field function returns field value.

func (UpdateTenantAppRequestValidationError) Key

Key function returns key value.

func (UpdateTenantAppRequestValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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