Documentation ¶
Index ¶
- Variables
- func RegisterContractGrpcServiceServer(s grpc.ServiceRegistrar, srv ContractGrpcServiceServer)
- type ContractGrpcServiceClient
- type ContractGrpcServiceServer
- type ContractIdGrpcResponse
- func (*ContractIdGrpcResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ContractIdGrpcResponse) GetId() string
- func (*ContractIdGrpcResponse) ProtoMessage()
- func (x *ContractIdGrpcResponse) ProtoReflect() protoreflect.Message
- func (x *ContractIdGrpcResponse) Reset()
- func (x *ContractIdGrpcResponse) String() string
- type RefreshContractLtvGrpcRequest
- func (*RefreshContractLtvGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RefreshContractLtvGrpcRequest) GetAppSource() string
- func (x *RefreshContractLtvGrpcRequest) GetId() string
- func (x *RefreshContractLtvGrpcRequest) GetLoggedInUserId() string
- func (x *RefreshContractLtvGrpcRequest) GetTenant() string
- func (*RefreshContractLtvGrpcRequest) ProtoMessage()
- func (x *RefreshContractLtvGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *RefreshContractLtvGrpcRequest) Reset()
- func (x *RefreshContractLtvGrpcRequest) String() string
- type RefreshContractStatusGrpcRequest
- func (*RefreshContractStatusGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RefreshContractStatusGrpcRequest) GetAppSource() string
- func (x *RefreshContractStatusGrpcRequest) GetId() string
- func (x *RefreshContractStatusGrpcRequest) GetLoggedInUserId() string
- func (x *RefreshContractStatusGrpcRequest) GetTenant() string
- func (*RefreshContractStatusGrpcRequest) ProtoMessage()
- func (x *RefreshContractStatusGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *RefreshContractStatusGrpcRequest) Reset()
- func (x *RefreshContractStatusGrpcRequest) String() string
- type RolloutRenewalOpportunityOnExpirationGrpcRequest
- func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetAppSource() string
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetId() string
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetLoggedInUserId() string
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetTenant() string
- func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoMessage()
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) Reset()
- func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) String() string
- type SoftDeleteContractGrpcRequest
- func (*SoftDeleteContractGrpcRequest) Descriptor() ([]byte, []int)deprecated
- func (x *SoftDeleteContractGrpcRequest) GetAppSource() string
- func (x *SoftDeleteContractGrpcRequest) GetId() string
- func (x *SoftDeleteContractGrpcRequest) GetLoggedInUserId() string
- func (x *SoftDeleteContractGrpcRequest) GetTenant() string
- func (*SoftDeleteContractGrpcRequest) ProtoMessage()
- func (x *SoftDeleteContractGrpcRequest) ProtoReflect() protoreflect.Message
- func (x *SoftDeleteContractGrpcRequest) Reset()
- func (x *SoftDeleteContractGrpcRequest) String() string
- type UnimplementedContractGrpcServiceServer
- func (UnimplementedContractGrpcServiceServer) RefreshContractLtv(context.Context, *RefreshContractLtvGrpcRequest) (*ContractIdGrpcResponse, error)
- func (UnimplementedContractGrpcServiceServer) RefreshContractStatus(context.Context, *RefreshContractStatusGrpcRequest) (*ContractIdGrpcResponse, error)
- func (UnimplementedContractGrpcServiceServer) RolloutRenewalOpportunityOnExpiration(context.Context, *RolloutRenewalOpportunityOnExpirationGrpcRequest) (*ContractIdGrpcResponse, error)
- func (UnimplementedContractGrpcServiceServer) SoftDeleteContract(context.Context, *SoftDeleteContractGrpcRequest) (*emptypb.Empty, error)
- type UnsafeContractGrpcServiceServer
Constants ¶
This section is empty.
Variables ¶
var ContractGrpcService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "ContractGrpcService", HandlerType: (*ContractGrpcServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "RolloutRenewalOpportunityOnExpiration", Handler: _ContractGrpcService_RolloutRenewalOpportunityOnExpiration_Handler, }, { MethodName: "RefreshContractStatus", Handler: _ContractGrpcService_RefreshContractStatus_Handler, }, { MethodName: "RefreshContractLtv", Handler: _ContractGrpcService_RefreshContractLtv_Handler, }, { MethodName: "SoftDeleteContract", Handler: _ContractGrpcService_SoftDeleteContract_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "contract.proto", }
ContractGrpcService_ServiceDesc is the grpc.ServiceDesc for ContractGrpcService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
var File_contract_proto protoreflect.FileDescriptor
Functions ¶
func RegisterContractGrpcServiceServer ¶
func RegisterContractGrpcServiceServer(s grpc.ServiceRegistrar, srv ContractGrpcServiceServer)
Types ¶
type ContractGrpcServiceClient ¶
type ContractGrpcServiceClient interface { RolloutRenewalOpportunityOnExpiration(ctx context.Context, in *RolloutRenewalOpportunityOnExpirationGrpcRequest, opts ...grpc.CallOption) (*ContractIdGrpcResponse, error) RefreshContractStatus(ctx context.Context, in *RefreshContractStatusGrpcRequest, opts ...grpc.CallOption) (*ContractIdGrpcResponse, error) RefreshContractLtv(ctx context.Context, in *RefreshContractLtvGrpcRequest, opts ...grpc.CallOption) (*ContractIdGrpcResponse, error) SoftDeleteContract(ctx context.Context, in *SoftDeleteContractGrpcRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) }
ContractGrpcServiceClient is the client API for ContractGrpcService 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 NewContractGrpcServiceClient ¶
func NewContractGrpcServiceClient(cc grpc.ClientConnInterface) ContractGrpcServiceClient
type ContractGrpcServiceServer ¶
type ContractGrpcServiceServer interface { RolloutRenewalOpportunityOnExpiration(context.Context, *RolloutRenewalOpportunityOnExpirationGrpcRequest) (*ContractIdGrpcResponse, error) RefreshContractStatus(context.Context, *RefreshContractStatusGrpcRequest) (*ContractIdGrpcResponse, error) RefreshContractLtv(context.Context, *RefreshContractLtvGrpcRequest) (*ContractIdGrpcResponse, error) SoftDeleteContract(context.Context, *SoftDeleteContractGrpcRequest) (*emptypb.Empty, error) }
ContractGrpcServiceServer is the server API for ContractGrpcService service. All implementations should embed UnimplementedContractGrpcServiceServer for forward compatibility
type ContractIdGrpcResponse ¶
type ContractIdGrpcResponse struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // contains filtered or unexported fields }
Contract response message
func (*ContractIdGrpcResponse) Descriptor
deprecated
func (*ContractIdGrpcResponse) Descriptor() ([]byte, []int)
Deprecated: Use ContractIdGrpcResponse.ProtoReflect.Descriptor instead.
func (*ContractIdGrpcResponse) GetId ¶
func (x *ContractIdGrpcResponse) GetId() string
func (*ContractIdGrpcResponse) ProtoMessage ¶
func (*ContractIdGrpcResponse) ProtoMessage()
func (*ContractIdGrpcResponse) ProtoReflect ¶
func (x *ContractIdGrpcResponse) ProtoReflect() protoreflect.Message
func (*ContractIdGrpcResponse) Reset ¶
func (x *ContractIdGrpcResponse) Reset()
func (*ContractIdGrpcResponse) String ¶
func (x *ContractIdGrpcResponse) String() string
type RefreshContractLtvGrpcRequest ¶
type RefreshContractLtvGrpcRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Tenant string `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` AppSource string `protobuf:"bytes,4,opt,name=appSource,proto3" json:"appSource,omitempty"` // contains filtered or unexported fields }
func (*RefreshContractLtvGrpcRequest) Descriptor
deprecated
func (*RefreshContractLtvGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use RefreshContractLtvGrpcRequest.ProtoReflect.Descriptor instead.
func (*RefreshContractLtvGrpcRequest) GetAppSource ¶
func (x *RefreshContractLtvGrpcRequest) GetAppSource() string
func (*RefreshContractLtvGrpcRequest) GetId ¶
func (x *RefreshContractLtvGrpcRequest) GetId() string
func (*RefreshContractLtvGrpcRequest) GetLoggedInUserId ¶
func (x *RefreshContractLtvGrpcRequest) GetLoggedInUserId() string
func (*RefreshContractLtvGrpcRequest) GetTenant ¶
func (x *RefreshContractLtvGrpcRequest) GetTenant() string
func (*RefreshContractLtvGrpcRequest) ProtoMessage ¶
func (*RefreshContractLtvGrpcRequest) ProtoMessage()
func (*RefreshContractLtvGrpcRequest) ProtoReflect ¶
func (x *RefreshContractLtvGrpcRequest) ProtoReflect() protoreflect.Message
func (*RefreshContractLtvGrpcRequest) Reset ¶
func (x *RefreshContractLtvGrpcRequest) Reset()
func (*RefreshContractLtvGrpcRequest) String ¶
func (x *RefreshContractLtvGrpcRequest) String() string
type RefreshContractStatusGrpcRequest ¶
type RefreshContractStatusGrpcRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Tenant string `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` AppSource string `protobuf:"bytes,4,opt,name=appSource,proto3" json:"appSource,omitempty"` // contains filtered or unexported fields }
func (*RefreshContractStatusGrpcRequest) Descriptor
deprecated
func (*RefreshContractStatusGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use RefreshContractStatusGrpcRequest.ProtoReflect.Descriptor instead.
func (*RefreshContractStatusGrpcRequest) GetAppSource ¶
func (x *RefreshContractStatusGrpcRequest) GetAppSource() string
func (*RefreshContractStatusGrpcRequest) GetId ¶
func (x *RefreshContractStatusGrpcRequest) GetId() string
func (*RefreshContractStatusGrpcRequest) GetLoggedInUserId ¶
func (x *RefreshContractStatusGrpcRequest) GetLoggedInUserId() string
func (*RefreshContractStatusGrpcRequest) GetTenant ¶
func (x *RefreshContractStatusGrpcRequest) GetTenant() string
func (*RefreshContractStatusGrpcRequest) ProtoMessage ¶
func (*RefreshContractStatusGrpcRequest) ProtoMessage()
func (*RefreshContractStatusGrpcRequest) ProtoReflect ¶
func (x *RefreshContractStatusGrpcRequest) ProtoReflect() protoreflect.Message
func (*RefreshContractStatusGrpcRequest) Reset ¶
func (x *RefreshContractStatusGrpcRequest) Reset()
func (*RefreshContractStatusGrpcRequest) String ¶
func (x *RefreshContractStatusGrpcRequest) String() string
type RolloutRenewalOpportunityOnExpirationGrpcRequest ¶
type RolloutRenewalOpportunityOnExpirationGrpcRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Tenant string `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` AppSource string `protobuf:"bytes,4,opt,name=appSource,proto3" json:"appSource,omitempty"` // contains filtered or unexported fields }
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) Descriptor
deprecated
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use RolloutRenewalOpportunityOnExpirationGrpcRequest.ProtoReflect.Descriptor instead.
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) GetAppSource ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetAppSource() string
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) GetId ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetId() string
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) GetLoggedInUserId ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetLoggedInUserId() string
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) GetTenant ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) GetTenant() string
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoMessage ¶
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoMessage()
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoReflect ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) ProtoReflect() protoreflect.Message
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) Reset ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) Reset()
func (*RolloutRenewalOpportunityOnExpirationGrpcRequest) String ¶
func (x *RolloutRenewalOpportunityOnExpirationGrpcRequest) String() string
type SoftDeleteContractGrpcRequest ¶
type SoftDeleteContractGrpcRequest struct { Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` Tenant string `protobuf:"bytes,2,opt,name=tenant,proto3" json:"tenant,omitempty"` LoggedInUserId string `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` AppSource string `protobuf:"bytes,4,opt,name=appSource,proto3" json:"appSource,omitempty"` // contains filtered or unexported fields }
Permanently delete contract request
func (*SoftDeleteContractGrpcRequest) Descriptor
deprecated
func (*SoftDeleteContractGrpcRequest) Descriptor() ([]byte, []int)
Deprecated: Use SoftDeleteContractGrpcRequest.ProtoReflect.Descriptor instead.
func (*SoftDeleteContractGrpcRequest) GetAppSource ¶
func (x *SoftDeleteContractGrpcRequest) GetAppSource() string
func (*SoftDeleteContractGrpcRequest) GetId ¶
func (x *SoftDeleteContractGrpcRequest) GetId() string
func (*SoftDeleteContractGrpcRequest) GetLoggedInUserId ¶
func (x *SoftDeleteContractGrpcRequest) GetLoggedInUserId() string
func (*SoftDeleteContractGrpcRequest) GetTenant ¶
func (x *SoftDeleteContractGrpcRequest) GetTenant() string
func (*SoftDeleteContractGrpcRequest) ProtoMessage ¶
func (*SoftDeleteContractGrpcRequest) ProtoMessage()
func (*SoftDeleteContractGrpcRequest) ProtoReflect ¶
func (x *SoftDeleteContractGrpcRequest) ProtoReflect() protoreflect.Message
func (*SoftDeleteContractGrpcRequest) Reset ¶
func (x *SoftDeleteContractGrpcRequest) Reset()
func (*SoftDeleteContractGrpcRequest) String ¶
func (x *SoftDeleteContractGrpcRequest) String() string
type UnimplementedContractGrpcServiceServer ¶
type UnimplementedContractGrpcServiceServer struct { }
UnimplementedContractGrpcServiceServer should be embedded to have forward compatible implementations.
func (UnimplementedContractGrpcServiceServer) RefreshContractLtv ¶
func (UnimplementedContractGrpcServiceServer) RefreshContractLtv(context.Context, *RefreshContractLtvGrpcRequest) (*ContractIdGrpcResponse, error)
func (UnimplementedContractGrpcServiceServer) RefreshContractStatus ¶
func (UnimplementedContractGrpcServiceServer) RefreshContractStatus(context.Context, *RefreshContractStatusGrpcRequest) (*ContractIdGrpcResponse, error)
func (UnimplementedContractGrpcServiceServer) RolloutRenewalOpportunityOnExpiration ¶
func (UnimplementedContractGrpcServiceServer) RolloutRenewalOpportunityOnExpiration(context.Context, *RolloutRenewalOpportunityOnExpirationGrpcRequest) (*ContractIdGrpcResponse, error)
func (UnimplementedContractGrpcServiceServer) SoftDeleteContract ¶
func (UnimplementedContractGrpcServiceServer) SoftDeleteContract(context.Context, *SoftDeleteContractGrpcRequest) (*emptypb.Empty, error)
type UnsafeContractGrpcServiceServer ¶
type UnsafeContractGrpcServiceServer interface {
// contains filtered or unexported methods
}
UnsafeContractGrpcServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ContractGrpcServiceServer will result in compilation errors.