organization_grpc_service

package
v0.0.0-...-a969eaa Latest Latest
Warning

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

Go to latest
Published: Dec 21, 2024 License: Apache-2.0 Imports: 11 Imported by: 15

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	BillingProfileFieldMask_name = map[int32]string{
		0: "BILLING_PROFILE_PROPERTY_NONE",
		2: "BILLING_PROFILE_PROPERTY_LEGAL_NAME",
		3: "BILLING_PROFILE_PROPERTY_TAX_ID",
	}
	BillingProfileFieldMask_value = map[string]int32{
		"BILLING_PROFILE_PROPERTY_NONE":       0,
		"BILLING_PROFILE_PROPERTY_LEGAL_NAME": 2,
		"BILLING_PROFILE_PROPERTY_TAX_ID":     3,
	}
)

Enum value maps for BillingProfileFieldMask.

View Source
var (
	CustomFieldDataType_name = map[int32]string{
		0: "TEXT",
		1: "BOOL",
		2: "DATETIME",
		3: "INTEGER",
		4: "DECIMAL",
	}
	CustomFieldDataType_value = map[string]int32{
		"TEXT":     0,
		"BOOL":     1,
		"DATETIME": 2,
		"INTEGER":  3,
		"DECIMAL":  4,
	}
)

Enum value maps for CustomFieldDataType.

View Source
var (
	OnboardingStatus_name = map[int32]string{
		0: "ONBOARDING_STATUS_NOT_APPLICABLE",
		1: "ONBOARDING_STATUS_NOT_STARTED",
		2: "ONBOARDING_STATUS_ON_TRACK",
		3: "ONBOARDING_STATUS_LATE",
		4: "ONBOARDING_STATUS_STUCK",
		5: "ONBOARDING_STATUS_DONE",
		6: "ONBOARDING_STATUS_SUCCESSFUL",
	}
	OnboardingStatus_value = map[string]int32{
		"ONBOARDING_STATUS_NOT_APPLICABLE": 0,
		"ONBOARDING_STATUS_NOT_STARTED":    1,
		"ONBOARDING_STATUS_ON_TRACK":       2,
		"ONBOARDING_STATUS_LATE":           3,
		"ONBOARDING_STATUS_STUCK":          4,
		"ONBOARDING_STATUS_DONE":           5,
		"ONBOARDING_STATUS_SUCCESSFUL":     6,
	}
)

Enum value maps for OnboardingStatus.

View Source
var File_organization_proto protoreflect.FileDescriptor
View Source
var OrganizationGrpcService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "organizationGrpcService",
	HandlerType: (*OrganizationGrpcServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "LinkLocationToOrganization",
			Handler:    _OrganizationGrpcService_LinkLocationToOrganization_Handler,
		},
		{
			MethodName: "UnlinkDomainFromOrganization",
			Handler:    _OrganizationGrpcService_UnlinkDomainFromOrganization_Handler,
		},
		{
			MethodName: "UpsertCustomFieldToOrganization",
			Handler:    _OrganizationGrpcService_UpsertCustomFieldToOrganization_Handler,
		},
		{
			MethodName: "RefreshRenewalSummary",
			Handler:    _OrganizationGrpcService_RefreshRenewalSummary_Handler,
		},
		{
			MethodName: "RefreshDerivedData",
			Handler:    _OrganizationGrpcService_RefreshDerivedData_Handler,
		},
		{
			MethodName: "RefreshArr",
			Handler:    _OrganizationGrpcService_RefreshArr_Handler,
		},
		{
			MethodName: "AddParentOrganization",
			Handler:    _OrganizationGrpcService_AddParentOrganization_Handler,
		},
		{
			MethodName: "RemoveParentOrganization",
			Handler:    _OrganizationGrpcService_RemoveParentOrganization_Handler,
		},
		{
			MethodName: "UpdateOnboardingStatus",
			Handler:    _OrganizationGrpcService_UpdateOnboardingStatus_Handler,
		},
		{
			MethodName: "UpdateOrganizationOwner",
			Handler:    _OrganizationGrpcService_UpdateOrganizationOwner_Handler,
		},
		{
			MethodName: "CreateBillingProfile",
			Handler:    _OrganizationGrpcService_CreateBillingProfile_Handler,
		},
		{
			MethodName: "UpdateBillingProfile",
			Handler:    _OrganizationGrpcService_UpdateBillingProfile_Handler,
		},
		{
			MethodName: "LinkEmailToBillingProfile",
			Handler:    _OrganizationGrpcService_LinkEmailToBillingProfile_Handler,
		},
		{
			MethodName: "UnlinkEmailFromBillingProfile",
			Handler:    _OrganizationGrpcService_UnlinkEmailFromBillingProfile_Handler,
		},
		{
			MethodName: "LinkLocationToBillingProfile",
			Handler:    _OrganizationGrpcService_LinkLocationToBillingProfile_Handler,
		},
		{
			MethodName: "UnlinkLocationFromBillingProfile",
			Handler:    _OrganizationGrpcService_UnlinkLocationFromBillingProfile_Handler,
		},
		{
			MethodName: "AddLocation",
			Handler:    _OrganizationGrpcService_AddLocation_Handler,
		},
		{
			MethodName: "AdjustIndustry",
			Handler:    _OrganizationGrpcService_AdjustIndustry_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "organization.proto",
}

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

Functions

func RegisterOrganizationGrpcServiceServer

func RegisterOrganizationGrpcServiceServer(s grpc.ServiceRegistrar, srv OrganizationGrpcServiceServer)

Types

type AddParentOrganizationGrpcRequest

type AddParentOrganizationGrpcRequest struct {
	Tenant               string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId       string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	ParentOrganizationId string `protobuf:"bytes,3,opt,name=parentOrganizationId,proto3" json:"parentOrganizationId,omitempty"`
	LoggedInUserId       string `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	Type                 string `protobuf:"bytes,5,opt,name=type,proto3" json:"type,omitempty"`
	AppSource            string `protobuf:"bytes,6,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*AddParentOrganizationGrpcRequest) Descriptor deprecated

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

Deprecated: Use AddParentOrganizationGrpcRequest.ProtoReflect.Descriptor instead.

func (*AddParentOrganizationGrpcRequest) GetAppSource

func (x *AddParentOrganizationGrpcRequest) GetAppSource() string

func (*AddParentOrganizationGrpcRequest) GetLoggedInUserId

func (x *AddParentOrganizationGrpcRequest) GetLoggedInUserId() string

func (*AddParentOrganizationGrpcRequest) GetOrganizationId

func (x *AddParentOrganizationGrpcRequest) GetOrganizationId() string

func (*AddParentOrganizationGrpcRequest) GetParentOrganizationId

func (x *AddParentOrganizationGrpcRequest) GetParentOrganizationId() string

func (*AddParentOrganizationGrpcRequest) GetTenant

func (*AddParentOrganizationGrpcRequest) GetType

func (*AddParentOrganizationGrpcRequest) ProtoMessage

func (*AddParentOrganizationGrpcRequest) ProtoMessage()

func (*AddParentOrganizationGrpcRequest) ProtoReflect

func (*AddParentOrganizationGrpcRequest) Reset

func (*AddParentOrganizationGrpcRequest) String

type BillingProfileFieldMask

type BillingProfileFieldMask int32
const (
	BillingProfileFieldMask_BILLING_PROFILE_PROPERTY_NONE       BillingProfileFieldMask = 0 // No property, ignored by the server
	BillingProfileFieldMask_BILLING_PROFILE_PROPERTY_LEGAL_NAME BillingProfileFieldMask = 2
	BillingProfileFieldMask_BILLING_PROFILE_PROPERTY_TAX_ID     BillingProfileFieldMask = 3
)

func (BillingProfileFieldMask) Descriptor

func (BillingProfileFieldMask) Enum

func (BillingProfileFieldMask) EnumDescriptor deprecated

func (BillingProfileFieldMask) EnumDescriptor() ([]byte, []int)

Deprecated: Use BillingProfileFieldMask.Descriptor instead.

func (BillingProfileFieldMask) Number

func (BillingProfileFieldMask) String

func (x BillingProfileFieldMask) String() string

func (BillingProfileFieldMask) Type

type BillingProfileIdGrpcResponse

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

func (*BillingProfileIdGrpcResponse) Descriptor deprecated

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

Deprecated: Use BillingProfileIdGrpcResponse.ProtoReflect.Descriptor instead.

func (*BillingProfileIdGrpcResponse) GetId

func (*BillingProfileIdGrpcResponse) ProtoMessage

func (*BillingProfileIdGrpcResponse) ProtoMessage()

func (*BillingProfileIdGrpcResponse) ProtoReflect

func (*BillingProfileIdGrpcResponse) Reset

func (x *BillingProfileIdGrpcResponse) Reset()

func (*BillingProfileIdGrpcResponse) String

type CreateBillingProfileGrpcRequest

type CreateBillingProfileGrpcRequest struct {
	Tenant           string                 `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string                 `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string                 `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	LoggedInUserId   string                 `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	SourceFields     *common.SourceFields   `protobuf:"bytes,5,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"`
	CreatedAt        *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	UpdatedAt        *timestamppb.Timestamp `protobuf:"bytes,7,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	LegalName        string                 `protobuf:"bytes,8,opt,name=legalName,proto3" json:"legalName,omitempty"`
	TaxId            string                 `protobuf:"bytes,9,opt,name=taxId,proto3" json:"taxId,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateBillingProfileGrpcRequest) Descriptor deprecated

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

Deprecated: Use CreateBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*CreateBillingProfileGrpcRequest) GetBillingProfileId

func (x *CreateBillingProfileGrpcRequest) GetBillingProfileId() string

func (*CreateBillingProfileGrpcRequest) GetCreatedAt

func (*CreateBillingProfileGrpcRequest) GetLegalName

func (x *CreateBillingProfileGrpcRequest) GetLegalName() string

func (*CreateBillingProfileGrpcRequest) GetLoggedInUserId

func (x *CreateBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*CreateBillingProfileGrpcRequest) GetOrganizationId

func (x *CreateBillingProfileGrpcRequest) GetOrganizationId() string

func (*CreateBillingProfileGrpcRequest) GetSourceFields

func (x *CreateBillingProfileGrpcRequest) GetSourceFields() *common.SourceFields

func (*CreateBillingProfileGrpcRequest) GetTaxId

func (*CreateBillingProfileGrpcRequest) GetTenant

func (x *CreateBillingProfileGrpcRequest) GetTenant() string

func (*CreateBillingProfileGrpcRequest) GetUpdatedAt

func (*CreateBillingProfileGrpcRequest) ProtoMessage

func (*CreateBillingProfileGrpcRequest) ProtoMessage()

func (*CreateBillingProfileGrpcRequest) ProtoReflect

func (*CreateBillingProfileGrpcRequest) Reset

func (*CreateBillingProfileGrpcRequest) String

type CustomFieldDataType

type CustomFieldDataType int32
const (
	CustomFieldDataType_TEXT     CustomFieldDataType = 0
	CustomFieldDataType_BOOL     CustomFieldDataType = 1
	CustomFieldDataType_DATETIME CustomFieldDataType = 2
	CustomFieldDataType_INTEGER  CustomFieldDataType = 3
	CustomFieldDataType_DECIMAL  CustomFieldDataType = 4
)

func (CustomFieldDataType) Descriptor

func (CustomFieldDataType) Enum

func (CustomFieldDataType) EnumDescriptor deprecated

func (CustomFieldDataType) EnumDescriptor() ([]byte, []int)

Deprecated: Use CustomFieldDataType.Descriptor instead.

func (CustomFieldDataType) Number

func (CustomFieldDataType) String

func (x CustomFieldDataType) String() string

func (CustomFieldDataType) Type

type CustomFieldForOrganizationGrpcRequest

type CustomFieldForOrganizationGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	// Deprecated: Marked as deprecated in organization.proto.
	UserId                string                 `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
	CustomFieldId         string                 `protobuf:"bytes,4,opt,name=customFieldId,proto3" json:"customFieldId,omitempty"`
	CustomFieldName       string                 `protobuf:"bytes,5,opt,name=customFieldName,proto3" json:"customFieldName,omitempty"`
	CustomFieldValue      *CustomFieldValue      `protobuf:"bytes,6,opt,name=customFieldValue,proto3" json:"customFieldValue,omitempty"`
	CustomFieldDataType   CustomFieldDataType    `protobuf:"varint,7,opt,name=customFieldDataType,proto3,enum=CustomFieldDataType" json:"customFieldDataType,omitempty"`
	CustomFieldTemplateId *string                `protobuf:"bytes,8,opt,name=customFieldTemplateId,proto3,oneof" json:"customFieldTemplateId,omitempty"`
	SourceFields          *common.SourceFields   `protobuf:"bytes,9,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"`
	CreatedAt             *timestamppb.Timestamp `protobuf:"bytes,10,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	UpdatedAt             *timestamppb.Timestamp `protobuf:"bytes,11,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	LoggedInUserId        string                 `protobuf:"bytes,12,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomFieldForOrganizationGrpcRequest) Descriptor deprecated

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

Deprecated: Use CustomFieldForOrganizationGrpcRequest.ProtoReflect.Descriptor instead.

func (*CustomFieldForOrganizationGrpcRequest) GetCreatedAt

func (*CustomFieldForOrganizationGrpcRequest) GetCustomFieldDataType

func (x *CustomFieldForOrganizationGrpcRequest) GetCustomFieldDataType() CustomFieldDataType

func (*CustomFieldForOrganizationGrpcRequest) GetCustomFieldId

func (x *CustomFieldForOrganizationGrpcRequest) GetCustomFieldId() string

func (*CustomFieldForOrganizationGrpcRequest) GetCustomFieldName

func (x *CustomFieldForOrganizationGrpcRequest) GetCustomFieldName() string

func (*CustomFieldForOrganizationGrpcRequest) GetCustomFieldTemplateId

func (x *CustomFieldForOrganizationGrpcRequest) GetCustomFieldTemplateId() string

func (*CustomFieldForOrganizationGrpcRequest) GetCustomFieldValue

func (x *CustomFieldForOrganizationGrpcRequest) GetCustomFieldValue() *CustomFieldValue

func (*CustomFieldForOrganizationGrpcRequest) GetLoggedInUserId

func (x *CustomFieldForOrganizationGrpcRequest) GetLoggedInUserId() string

func (*CustomFieldForOrganizationGrpcRequest) GetOrganizationId

func (x *CustomFieldForOrganizationGrpcRequest) GetOrganizationId() string

func (*CustomFieldForOrganizationGrpcRequest) GetSourceFields

func (*CustomFieldForOrganizationGrpcRequest) GetTenant

func (*CustomFieldForOrganizationGrpcRequest) GetUpdatedAt

func (*CustomFieldForOrganizationGrpcRequest) GetUserId deprecated

Deprecated: Marked as deprecated in organization.proto.

func (*CustomFieldForOrganizationGrpcRequest) ProtoMessage

func (*CustomFieldForOrganizationGrpcRequest) ProtoMessage()

func (*CustomFieldForOrganizationGrpcRequest) ProtoReflect

func (*CustomFieldForOrganizationGrpcRequest) Reset

func (*CustomFieldForOrganizationGrpcRequest) String

type CustomFieldIdGrpcResponse

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

func (*CustomFieldIdGrpcResponse) Descriptor deprecated

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

Deprecated: Use CustomFieldIdGrpcResponse.ProtoReflect.Descriptor instead.

func (*CustomFieldIdGrpcResponse) GetId

func (x *CustomFieldIdGrpcResponse) GetId() string

func (*CustomFieldIdGrpcResponse) ProtoMessage

func (*CustomFieldIdGrpcResponse) ProtoMessage()

func (*CustomFieldIdGrpcResponse) ProtoReflect

func (*CustomFieldIdGrpcResponse) Reset

func (x *CustomFieldIdGrpcResponse) Reset()

func (*CustomFieldIdGrpcResponse) String

func (x *CustomFieldIdGrpcResponse) String() string

type CustomFieldValue

type CustomFieldValue struct {
	StringValue   *string                `protobuf:"bytes,1,opt,name=stringValue,proto3,oneof" json:"stringValue,omitempty"`
	BoolValue     *bool                  `protobuf:"varint,2,opt,name=boolValue,proto3,oneof" json:"boolValue,omitempty"`
	DatetimeValue *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=datetimeValue,proto3,oneof" json:"datetimeValue,omitempty"`
	IntegerValue  *int64                 `protobuf:"varint,4,opt,name=integerValue,proto3,oneof" json:"integerValue,omitempty"`
	DecimalValue  *float64               `protobuf:"fixed64,5,opt,name=decimalValue,proto3,oneof" json:"decimalValue,omitempty"`
	// contains filtered or unexported fields
}

func (*CustomFieldValue) Descriptor deprecated

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

Deprecated: Use CustomFieldValue.ProtoReflect.Descriptor instead.

func (*CustomFieldValue) GetBoolValue

func (x *CustomFieldValue) GetBoolValue() bool

func (*CustomFieldValue) GetDatetimeValue

func (x *CustomFieldValue) GetDatetimeValue() *timestamppb.Timestamp

func (*CustomFieldValue) GetDecimalValue

func (x *CustomFieldValue) GetDecimalValue() float64

func (*CustomFieldValue) GetIntegerValue

func (x *CustomFieldValue) GetIntegerValue() int64

func (*CustomFieldValue) GetStringValue

func (x *CustomFieldValue) GetStringValue() string

func (*CustomFieldValue) ProtoMessage

func (*CustomFieldValue) ProtoMessage()

func (*CustomFieldValue) ProtoReflect

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

func (*CustomFieldValue) Reset

func (x *CustomFieldValue) Reset()

func (*CustomFieldValue) String

func (x *CustomFieldValue) String() string

type LinkEmailToBillingProfileGrpcRequest

type LinkEmailToBillingProfileGrpcRequest struct {
	Tenant           string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	EmailId          string `protobuf:"bytes,4,opt,name=emailId,proto3" json:"emailId,omitempty"`
	LoggedInUserId   string `protobuf:"bytes,5,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource        string `protobuf:"bytes,6,opt,name=appSource,proto3" json:"appSource,omitempty"`
	Primary          bool   `protobuf:"varint,7,opt,name=primary,proto3" json:"primary,omitempty"`
	// contains filtered or unexported fields
}

func (*LinkEmailToBillingProfileGrpcRequest) Descriptor deprecated

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

Deprecated: Use LinkEmailToBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*LinkEmailToBillingProfileGrpcRequest) GetAppSource

func (x *LinkEmailToBillingProfileGrpcRequest) GetAppSource() string

func (*LinkEmailToBillingProfileGrpcRequest) GetBillingProfileId

func (x *LinkEmailToBillingProfileGrpcRequest) GetBillingProfileId() string

func (*LinkEmailToBillingProfileGrpcRequest) GetEmailId

func (*LinkEmailToBillingProfileGrpcRequest) GetLoggedInUserId

func (x *LinkEmailToBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*LinkEmailToBillingProfileGrpcRequest) GetOrganizationId

func (x *LinkEmailToBillingProfileGrpcRequest) GetOrganizationId() string

func (*LinkEmailToBillingProfileGrpcRequest) GetPrimary

func (*LinkEmailToBillingProfileGrpcRequest) GetTenant

func (*LinkEmailToBillingProfileGrpcRequest) ProtoMessage

func (*LinkEmailToBillingProfileGrpcRequest) ProtoMessage()

func (*LinkEmailToBillingProfileGrpcRequest) ProtoReflect

func (*LinkEmailToBillingProfileGrpcRequest) Reset

func (*LinkEmailToBillingProfileGrpcRequest) String

type LinkLocationToBillingProfileGrpcRequest

type LinkLocationToBillingProfileGrpcRequest struct {
	Tenant           string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	LocationId       string `protobuf:"bytes,4,opt,name=locationId,proto3" json:"locationId,omitempty"`
	LoggedInUserId   string `protobuf:"bytes,5,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource        string `protobuf:"bytes,6,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*LinkLocationToBillingProfileGrpcRequest) Descriptor deprecated

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

Deprecated: Use LinkLocationToBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*LinkLocationToBillingProfileGrpcRequest) GetAppSource

func (*LinkLocationToBillingProfileGrpcRequest) GetBillingProfileId

func (x *LinkLocationToBillingProfileGrpcRequest) GetBillingProfileId() string

func (*LinkLocationToBillingProfileGrpcRequest) GetLocationId

func (*LinkLocationToBillingProfileGrpcRequest) GetLoggedInUserId

func (x *LinkLocationToBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*LinkLocationToBillingProfileGrpcRequest) GetOrganizationId

func (x *LinkLocationToBillingProfileGrpcRequest) GetOrganizationId() string

func (*LinkLocationToBillingProfileGrpcRequest) GetTenant

func (*LinkLocationToBillingProfileGrpcRequest) ProtoMessage

func (*LinkLocationToBillingProfileGrpcRequest) ProtoReflect

func (*LinkLocationToBillingProfileGrpcRequest) Reset

func (*LinkLocationToBillingProfileGrpcRequest) String

type LinkLocationToOrganizationGrpcRequest

type LinkLocationToOrganizationGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	LocationId     string `protobuf:"bytes,3,opt,name=locationId,proto3" json:"locationId,omitempty"`
	LoggedInUserId string `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	// contains filtered or unexported fields
}

func (*LinkLocationToOrganizationGrpcRequest) Descriptor deprecated

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

Deprecated: Use LinkLocationToOrganizationGrpcRequest.ProtoReflect.Descriptor instead.

func (*LinkLocationToOrganizationGrpcRequest) GetLocationId

func (x *LinkLocationToOrganizationGrpcRequest) GetLocationId() string

func (*LinkLocationToOrganizationGrpcRequest) GetLoggedInUserId

func (x *LinkLocationToOrganizationGrpcRequest) GetLoggedInUserId() string

func (*LinkLocationToOrganizationGrpcRequest) GetOrganizationId

func (x *LinkLocationToOrganizationGrpcRequest) GetOrganizationId() string

func (*LinkLocationToOrganizationGrpcRequest) GetTenant

func (*LinkLocationToOrganizationGrpcRequest) ProtoMessage

func (*LinkLocationToOrganizationGrpcRequest) ProtoMessage()

func (*LinkLocationToOrganizationGrpcRequest) ProtoReflect

func (*LinkLocationToOrganizationGrpcRequest) Reset

func (*LinkLocationToOrganizationGrpcRequest) String

type OnboardingStatus

type OnboardingStatus int32
const (
	OnboardingStatus_ONBOARDING_STATUS_NOT_APPLICABLE OnboardingStatus = 0
	OnboardingStatus_ONBOARDING_STATUS_NOT_STARTED    OnboardingStatus = 1
	OnboardingStatus_ONBOARDING_STATUS_ON_TRACK       OnboardingStatus = 2
	OnboardingStatus_ONBOARDING_STATUS_LATE           OnboardingStatus = 3
	OnboardingStatus_ONBOARDING_STATUS_STUCK          OnboardingStatus = 4
	OnboardingStatus_ONBOARDING_STATUS_DONE           OnboardingStatus = 5
	OnboardingStatus_ONBOARDING_STATUS_SUCCESSFUL     OnboardingStatus = 6
)

func (OnboardingStatus) Descriptor

func (OnboardingStatus) Enum

func (OnboardingStatus) EnumDescriptor deprecated

func (OnboardingStatus) EnumDescriptor() ([]byte, []int)

Deprecated: Use OnboardingStatus.Descriptor instead.

func (OnboardingStatus) Number

func (OnboardingStatus) String

func (x OnboardingStatus) String() string

func (OnboardingStatus) Type

type OrganizationAddLocationGrpcRequest

type OrganizationAddLocationGrpcRequest struct {
	Tenant          string                    `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId  string                    `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	LoggedInUserId  string                    `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	SourceFields    *common.SourceFields      `protobuf:"bytes,4,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"`
	LocationId      string                    `protobuf:"bytes,5,opt,name=locationId,proto3" json:"locationId,omitempty"`
	LocationDetails *location.LocationDetails `protobuf:"bytes,6,opt,name=locationDetails,proto3" json:"locationDetails,omitempty"`
	CreatedAt       *timestamppb.Timestamp    `protobuf:"bytes,7,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationAddLocationGrpcRequest) Descriptor deprecated

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

Deprecated: Use OrganizationAddLocationGrpcRequest.ProtoReflect.Descriptor instead.

func (*OrganizationAddLocationGrpcRequest) GetCreatedAt

func (*OrganizationAddLocationGrpcRequest) GetLocationDetails

func (*OrganizationAddLocationGrpcRequest) GetLocationId

func (x *OrganizationAddLocationGrpcRequest) GetLocationId() string

func (*OrganizationAddLocationGrpcRequest) GetLoggedInUserId

func (x *OrganizationAddLocationGrpcRequest) GetLoggedInUserId() string

func (*OrganizationAddLocationGrpcRequest) GetOrganizationId

func (x *OrganizationAddLocationGrpcRequest) GetOrganizationId() string

func (*OrganizationAddLocationGrpcRequest) GetSourceFields

func (*OrganizationAddLocationGrpcRequest) GetTenant

func (*OrganizationAddLocationGrpcRequest) ProtoMessage

func (*OrganizationAddLocationGrpcRequest) ProtoMessage()

func (*OrganizationAddLocationGrpcRequest) ProtoReflect

func (*OrganizationAddLocationGrpcRequest) Reset

func (*OrganizationAddLocationGrpcRequest) String

type OrganizationAddTagGrpcRequest

type OrganizationAddTagGrpcRequest struct {
	OrganizationId string `protobuf:"bytes,1,opt,name=organizationId,proto3" json:"organizationId,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"`
	TagId          string `protobuf:"bytes,4,opt,name=tagId,proto3" json:"tagId,omitempty"`
	AppSource      string `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationAddTagGrpcRequest) Descriptor deprecated

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

Deprecated: Use OrganizationAddTagGrpcRequest.ProtoReflect.Descriptor instead.

func (*OrganizationAddTagGrpcRequest) GetAppSource

func (x *OrganizationAddTagGrpcRequest) GetAppSource() string

func (*OrganizationAddTagGrpcRequest) GetLoggedInUserId

func (x *OrganizationAddTagGrpcRequest) GetLoggedInUserId() string

func (*OrganizationAddTagGrpcRequest) GetOrganizationId

func (x *OrganizationAddTagGrpcRequest) GetOrganizationId() string

func (*OrganizationAddTagGrpcRequest) GetTagId

func (x *OrganizationAddTagGrpcRequest) GetTagId() string

func (*OrganizationAddTagGrpcRequest) GetTenant

func (x *OrganizationAddTagGrpcRequest) GetTenant() string

func (*OrganizationAddTagGrpcRequest) ProtoMessage

func (*OrganizationAddTagGrpcRequest) ProtoMessage()

func (*OrganizationAddTagGrpcRequest) ProtoReflect

func (*OrganizationAddTagGrpcRequest) Reset

func (x *OrganizationAddTagGrpcRequest) Reset()

func (*OrganizationAddTagGrpcRequest) String

type OrganizationGrpcServiceClient

type OrganizationGrpcServiceClient interface {
	LinkLocationToOrganization(ctx context.Context, in *LinkLocationToOrganizationGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	UnlinkDomainFromOrganization(ctx context.Context, in *UnLinkDomainFromOrganizationGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	UpsertCustomFieldToOrganization(ctx context.Context, in *CustomFieldForOrganizationGrpcRequest, opts ...grpc.CallOption) (*CustomFieldIdGrpcResponse, error)
	RefreshRenewalSummary(ctx context.Context, in *RefreshRenewalSummaryGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	RefreshDerivedData(ctx context.Context, in *RefreshDerivedDataGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	RefreshArr(ctx context.Context, in *OrganizationIdGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	AddParentOrganization(ctx context.Context, in *AddParentOrganizationGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	RemoveParentOrganization(ctx context.Context, in *RemoveParentOrganizationGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	UpdateOnboardingStatus(ctx context.Context, in *UpdateOnboardingStatusGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	UpdateOrganizationOwner(ctx context.Context, in *UpdateOrganizationOwnerGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
	CreateBillingProfile(ctx context.Context, in *CreateBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	UpdateBillingProfile(ctx context.Context, in *UpdateBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	LinkEmailToBillingProfile(ctx context.Context, in *LinkEmailToBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	UnlinkEmailFromBillingProfile(ctx context.Context, in *UnlinkEmailFromBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	LinkLocationToBillingProfile(ctx context.Context, in *LinkLocationToBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	UnlinkLocationFromBillingProfile(ctx context.Context, in *UnlinkLocationFromBillingProfileGrpcRequest, opts ...grpc.CallOption) (*BillingProfileIdGrpcResponse, error)
	AddLocation(ctx context.Context, in *OrganizationAddLocationGrpcRequest, opts ...grpc.CallOption) (*location.LocationIdGrpcResponse, error)
	AdjustIndustry(ctx context.Context, in *OrganizationIdGrpcRequest, opts ...grpc.CallOption) (*OrganizationIdGrpcResponse, error)
}

OrganizationGrpcServiceClient is the client API for OrganizationGrpcService 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.

type OrganizationGrpcServiceServer

type OrganizationGrpcServiceServer interface {
	LinkLocationToOrganization(context.Context, *LinkLocationToOrganizationGrpcRequest) (*OrganizationIdGrpcResponse, error)
	UnlinkDomainFromOrganization(context.Context, *UnLinkDomainFromOrganizationGrpcRequest) (*OrganizationIdGrpcResponse, error)
	UpsertCustomFieldToOrganization(context.Context, *CustomFieldForOrganizationGrpcRequest) (*CustomFieldIdGrpcResponse, error)
	RefreshRenewalSummary(context.Context, *RefreshRenewalSummaryGrpcRequest) (*OrganizationIdGrpcResponse, error)
	RefreshDerivedData(context.Context, *RefreshDerivedDataGrpcRequest) (*OrganizationIdGrpcResponse, error)
	RefreshArr(context.Context, *OrganizationIdGrpcRequest) (*OrganizationIdGrpcResponse, error)
	AddParentOrganization(context.Context, *AddParentOrganizationGrpcRequest) (*OrganizationIdGrpcResponse, error)
	RemoveParentOrganization(context.Context, *RemoveParentOrganizationGrpcRequest) (*OrganizationIdGrpcResponse, error)
	UpdateOnboardingStatus(context.Context, *UpdateOnboardingStatusGrpcRequest) (*OrganizationIdGrpcResponse, error)
	UpdateOrganizationOwner(context.Context, *UpdateOrganizationOwnerGrpcRequest) (*OrganizationIdGrpcResponse, error)
	CreateBillingProfile(context.Context, *CreateBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	UpdateBillingProfile(context.Context, *UpdateBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	LinkEmailToBillingProfile(context.Context, *LinkEmailToBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	UnlinkEmailFromBillingProfile(context.Context, *UnlinkEmailFromBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	LinkLocationToBillingProfile(context.Context, *LinkLocationToBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	UnlinkLocationFromBillingProfile(context.Context, *UnlinkLocationFromBillingProfileGrpcRequest) (*BillingProfileIdGrpcResponse, error)
	AddLocation(context.Context, *OrganizationAddLocationGrpcRequest) (*location.LocationIdGrpcResponse, error)
	AdjustIndustry(context.Context, *OrganizationIdGrpcRequest) (*OrganizationIdGrpcResponse, error)
}

OrganizationGrpcServiceServer is the server API for OrganizationGrpcService service. All implementations should embed UnimplementedOrganizationGrpcServiceServer for forward compatibility

type OrganizationIdGrpcRequest

type OrganizationIdGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,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 (*OrganizationIdGrpcRequest) Descriptor deprecated

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

Deprecated: Use OrganizationIdGrpcRequest.ProtoReflect.Descriptor instead.

func (*OrganizationIdGrpcRequest) GetAppSource

func (x *OrganizationIdGrpcRequest) GetAppSource() string

func (*OrganizationIdGrpcRequest) GetLoggedInUserId

func (x *OrganizationIdGrpcRequest) GetLoggedInUserId() string

func (*OrganizationIdGrpcRequest) GetOrganizationId

func (x *OrganizationIdGrpcRequest) GetOrganizationId() string

func (*OrganizationIdGrpcRequest) GetTenant

func (x *OrganizationIdGrpcRequest) GetTenant() string

func (*OrganizationIdGrpcRequest) ProtoMessage

func (*OrganizationIdGrpcRequest) ProtoMessage()

func (*OrganizationIdGrpcRequest) ProtoReflect

func (*OrganizationIdGrpcRequest) Reset

func (x *OrganizationIdGrpcRequest) Reset()

func (*OrganizationIdGrpcRequest) String

func (x *OrganizationIdGrpcRequest) String() string

type OrganizationIdGrpcResponse

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

func (*OrganizationIdGrpcResponse) Descriptor deprecated

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

Deprecated: Use OrganizationIdGrpcResponse.ProtoReflect.Descriptor instead.

func (*OrganizationIdGrpcResponse) GetId

func (*OrganizationIdGrpcResponse) ProtoMessage

func (*OrganizationIdGrpcResponse) ProtoMessage()

func (*OrganizationIdGrpcResponse) ProtoReflect

func (*OrganizationIdGrpcResponse) Reset

func (x *OrganizationIdGrpcResponse) Reset()

func (*OrganizationIdGrpcResponse) String

func (x *OrganizationIdGrpcResponse) String() string

type OrganizationRemoveTagGrpcRequest

type OrganizationRemoveTagGrpcRequest struct {
	OrganizationId string `protobuf:"bytes,1,opt,name=organizationId,proto3" json:"organizationId,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"`
	TagId          string `protobuf:"bytes,4,opt,name=tagId,proto3" json:"tagId,omitempty"`
	AppSource      string `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationRemoveTagGrpcRequest) Descriptor deprecated

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

Deprecated: Use OrganizationRemoveTagGrpcRequest.ProtoReflect.Descriptor instead.

func (*OrganizationRemoveTagGrpcRequest) GetAppSource

func (x *OrganizationRemoveTagGrpcRequest) GetAppSource() string

func (*OrganizationRemoveTagGrpcRequest) GetLoggedInUserId

func (x *OrganizationRemoveTagGrpcRequest) GetLoggedInUserId() string

func (*OrganizationRemoveTagGrpcRequest) GetOrganizationId

func (x *OrganizationRemoveTagGrpcRequest) GetOrganizationId() string

func (*OrganizationRemoveTagGrpcRequest) GetTagId

func (*OrganizationRemoveTagGrpcRequest) GetTenant

func (*OrganizationRemoveTagGrpcRequest) ProtoMessage

func (*OrganizationRemoveTagGrpcRequest) ProtoMessage()

func (*OrganizationRemoveTagGrpcRequest) ProtoReflect

func (*OrganizationRemoveTagGrpcRequest) Reset

func (*OrganizationRemoveTagGrpcRequest) String

type RefreshDerivedDataGrpcRequest

type RefreshDerivedDataGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,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 (*RefreshDerivedDataGrpcRequest) Descriptor deprecated

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

Deprecated: Use RefreshDerivedDataGrpcRequest.ProtoReflect.Descriptor instead.

func (*RefreshDerivedDataGrpcRequest) GetAppSource

func (x *RefreshDerivedDataGrpcRequest) GetAppSource() string

func (*RefreshDerivedDataGrpcRequest) GetLoggedInUserId

func (x *RefreshDerivedDataGrpcRequest) GetLoggedInUserId() string

func (*RefreshDerivedDataGrpcRequest) GetOrganizationId

func (x *RefreshDerivedDataGrpcRequest) GetOrganizationId() string

func (*RefreshDerivedDataGrpcRequest) GetTenant

func (x *RefreshDerivedDataGrpcRequest) GetTenant() string

func (*RefreshDerivedDataGrpcRequest) ProtoMessage

func (*RefreshDerivedDataGrpcRequest) ProtoMessage()

func (*RefreshDerivedDataGrpcRequest) ProtoReflect

func (*RefreshDerivedDataGrpcRequest) Reset

func (x *RefreshDerivedDataGrpcRequest) Reset()

func (*RefreshDerivedDataGrpcRequest) String

type RefreshRenewalSummaryGrpcRequest

type RefreshRenewalSummaryGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,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 (*RefreshRenewalSummaryGrpcRequest) Descriptor deprecated

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

Deprecated: Use RefreshRenewalSummaryGrpcRequest.ProtoReflect.Descriptor instead.

func (*RefreshRenewalSummaryGrpcRequest) GetAppSource

func (x *RefreshRenewalSummaryGrpcRequest) GetAppSource() string

func (*RefreshRenewalSummaryGrpcRequest) GetLoggedInUserId

func (x *RefreshRenewalSummaryGrpcRequest) GetLoggedInUserId() string

func (*RefreshRenewalSummaryGrpcRequest) GetOrganizationId

func (x *RefreshRenewalSummaryGrpcRequest) GetOrganizationId() string

func (*RefreshRenewalSummaryGrpcRequest) GetTenant

func (*RefreshRenewalSummaryGrpcRequest) ProtoMessage

func (*RefreshRenewalSummaryGrpcRequest) ProtoMessage()

func (*RefreshRenewalSummaryGrpcRequest) ProtoReflect

func (*RefreshRenewalSummaryGrpcRequest) Reset

func (*RefreshRenewalSummaryGrpcRequest) String

type RemoveParentOrganizationGrpcRequest

type RemoveParentOrganizationGrpcRequest struct {
	Tenant               string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId       string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	ParentOrganizationId string `protobuf:"bytes,3,opt,name=parentOrganizationId,proto3" json:"parentOrganizationId,omitempty"`
	LoggedInUserId       string `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource            string `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveParentOrganizationGrpcRequest) Descriptor deprecated

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

Deprecated: Use RemoveParentOrganizationGrpcRequest.ProtoReflect.Descriptor instead.

func (*RemoveParentOrganizationGrpcRequest) GetAppSource

func (x *RemoveParentOrganizationGrpcRequest) GetAppSource() string

func (*RemoveParentOrganizationGrpcRequest) GetLoggedInUserId

func (x *RemoveParentOrganizationGrpcRequest) GetLoggedInUserId() string

func (*RemoveParentOrganizationGrpcRequest) GetOrganizationId

func (x *RemoveParentOrganizationGrpcRequest) GetOrganizationId() string

func (*RemoveParentOrganizationGrpcRequest) GetParentOrganizationId

func (x *RemoveParentOrganizationGrpcRequest) GetParentOrganizationId() string

func (*RemoveParentOrganizationGrpcRequest) GetTenant

func (*RemoveParentOrganizationGrpcRequest) ProtoMessage

func (*RemoveParentOrganizationGrpcRequest) ProtoMessage()

func (*RemoveParentOrganizationGrpcRequest) ProtoReflect

func (*RemoveParentOrganizationGrpcRequest) Reset

func (*RemoveParentOrganizationGrpcRequest) String

type UnLinkDomainFromOrganizationGrpcRequest

type UnLinkDomainFromOrganizationGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	Domain         string `protobuf:"bytes,3,opt,name=domain,proto3" json:"domain,omitempty"`
	LoggedInUserId string `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource      string `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*UnLinkDomainFromOrganizationGrpcRequest) Descriptor deprecated

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

Deprecated: Use UnLinkDomainFromOrganizationGrpcRequest.ProtoReflect.Descriptor instead.

func (*UnLinkDomainFromOrganizationGrpcRequest) GetAppSource

func (*UnLinkDomainFromOrganizationGrpcRequest) GetDomain

func (*UnLinkDomainFromOrganizationGrpcRequest) GetLoggedInUserId

func (x *UnLinkDomainFromOrganizationGrpcRequest) GetLoggedInUserId() string

func (*UnLinkDomainFromOrganizationGrpcRequest) GetOrganizationId

func (x *UnLinkDomainFromOrganizationGrpcRequest) GetOrganizationId() string

func (*UnLinkDomainFromOrganizationGrpcRequest) GetTenant

func (*UnLinkDomainFromOrganizationGrpcRequest) ProtoMessage

func (*UnLinkDomainFromOrganizationGrpcRequest) ProtoReflect

func (*UnLinkDomainFromOrganizationGrpcRequest) Reset

func (*UnLinkDomainFromOrganizationGrpcRequest) String

type UnimplementedOrganizationGrpcServiceServer

type UnimplementedOrganizationGrpcServiceServer struct {
}

UnimplementedOrganizationGrpcServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedOrganizationGrpcServiceServer) AddParentOrganization

func (UnimplementedOrganizationGrpcServiceServer) AdjustIndustry

func (UnimplementedOrganizationGrpcServiceServer) RefreshArr

func (UnimplementedOrganizationGrpcServiceServer) RefreshDerivedData

func (UnimplementedOrganizationGrpcServiceServer) RefreshRenewalSummary

func (UnimplementedOrganizationGrpcServiceServer) UpdateOnboardingStatus

func (UnimplementedOrganizationGrpcServiceServer) UpsertCustomFieldToOrganization

type UnlinkEmailFromBillingProfileGrpcRequest

type UnlinkEmailFromBillingProfileGrpcRequest struct {
	Tenant           string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	EmailId          string `protobuf:"bytes,4,opt,name=emailId,proto3" json:"emailId,omitempty"`
	LoggedInUserId   string `protobuf:"bytes,5,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource        string `protobuf:"bytes,6,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*UnlinkEmailFromBillingProfileGrpcRequest) Descriptor deprecated

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

Deprecated: Use UnlinkEmailFromBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetAppSource

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetBillingProfileId

func (x *UnlinkEmailFromBillingProfileGrpcRequest) GetBillingProfileId() string

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetEmailId

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetLoggedInUserId

func (x *UnlinkEmailFromBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetOrganizationId

func (x *UnlinkEmailFromBillingProfileGrpcRequest) GetOrganizationId() string

func (*UnlinkEmailFromBillingProfileGrpcRequest) GetTenant

func (*UnlinkEmailFromBillingProfileGrpcRequest) ProtoMessage

func (*UnlinkEmailFromBillingProfileGrpcRequest) ProtoReflect

func (*UnlinkEmailFromBillingProfileGrpcRequest) Reset

func (*UnlinkEmailFromBillingProfileGrpcRequest) String

type UnlinkLocationFromBillingProfileGrpcRequest

type UnlinkLocationFromBillingProfileGrpcRequest struct {
	Tenant           string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	LocationId       string `protobuf:"bytes,4,opt,name=locationId,proto3" json:"locationId,omitempty"`
	LoggedInUserId   string `protobuf:"bytes,5,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource        string `protobuf:"bytes,6,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*UnlinkLocationFromBillingProfileGrpcRequest) Descriptor deprecated

Deprecated: Use UnlinkLocationFromBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetAppSource

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetBillingProfileId

func (x *UnlinkLocationFromBillingProfileGrpcRequest) GetBillingProfileId() string

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetLocationId

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetLoggedInUserId

func (x *UnlinkLocationFromBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetOrganizationId

func (x *UnlinkLocationFromBillingProfileGrpcRequest) GetOrganizationId() string

func (*UnlinkLocationFromBillingProfileGrpcRequest) GetTenant

func (*UnlinkLocationFromBillingProfileGrpcRequest) ProtoMessage

func (*UnlinkLocationFromBillingProfileGrpcRequest) ProtoReflect

func (*UnlinkLocationFromBillingProfileGrpcRequest) Reset

func (*UnlinkLocationFromBillingProfileGrpcRequest) String

type UnsafeOrganizationGrpcServiceServer

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

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

type UpdateBillingProfileGrpcRequest

type UpdateBillingProfileGrpcRequest struct {
	Tenant           string                    `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId   string                    `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	BillingProfileId string                    `protobuf:"bytes,3,opt,name=billingProfileId,proto3" json:"billingProfileId,omitempty"`
	LoggedInUserId   string                    `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	AppSource        string                    `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	UpdatedAt        *timestamppb.Timestamp    `protobuf:"bytes,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	LegalName        string                    `protobuf:"bytes,7,opt,name=legalName,proto3" json:"legalName,omitempty"`
	TaxId            string                    `protobuf:"bytes,8,opt,name=taxId,proto3" json:"taxId,omitempty"`
	FieldsMask       []BillingProfileFieldMask `protobuf:"varint,9,rep,packed,name=fieldsMask,proto3,enum=BillingProfileFieldMask" json:"fieldsMask,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateBillingProfileGrpcRequest) Descriptor deprecated

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

Deprecated: Use UpdateBillingProfileGrpcRequest.ProtoReflect.Descriptor instead.

func (*UpdateBillingProfileGrpcRequest) GetAppSource

func (x *UpdateBillingProfileGrpcRequest) GetAppSource() string

func (*UpdateBillingProfileGrpcRequest) GetBillingProfileId

func (x *UpdateBillingProfileGrpcRequest) GetBillingProfileId() string

func (*UpdateBillingProfileGrpcRequest) GetFieldsMask

func (*UpdateBillingProfileGrpcRequest) GetLegalName

func (x *UpdateBillingProfileGrpcRequest) GetLegalName() string

func (*UpdateBillingProfileGrpcRequest) GetLoggedInUserId

func (x *UpdateBillingProfileGrpcRequest) GetLoggedInUserId() string

func (*UpdateBillingProfileGrpcRequest) GetOrganizationId

func (x *UpdateBillingProfileGrpcRequest) GetOrganizationId() string

func (*UpdateBillingProfileGrpcRequest) GetTaxId

func (*UpdateBillingProfileGrpcRequest) GetTenant

func (x *UpdateBillingProfileGrpcRequest) GetTenant() string

func (*UpdateBillingProfileGrpcRequest) GetUpdatedAt

func (*UpdateBillingProfileGrpcRequest) ProtoMessage

func (*UpdateBillingProfileGrpcRequest) ProtoMessage()

func (*UpdateBillingProfileGrpcRequest) ProtoReflect

func (*UpdateBillingProfileGrpcRequest) Reset

func (*UpdateBillingProfileGrpcRequest) String

type UpdateOnboardingStatusGrpcRequest

type UpdateOnboardingStatusGrpcRequest struct {
	Tenant             string                 `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId     string                 `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	LoggedInUserId     string                 `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	OnboardingStatus   OnboardingStatus       `protobuf:"varint,4,opt,name=onboardingStatus,proto3,enum=OnboardingStatus" json:"onboardingStatus,omitempty"`
	Comments           string                 `protobuf:"bytes,5,opt,name=comments,proto3" json:"comments,omitempty"`
	UpdatedAt          *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	AppSource          string                 `protobuf:"bytes,7,opt,name=appSource,proto3" json:"appSource,omitempty"`
	CausedByContractId string                 `protobuf:"bytes,8,opt,name=causedByContractId,proto3" json:"causedByContractId,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateOnboardingStatusGrpcRequest) Descriptor deprecated

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

Deprecated: Use UpdateOnboardingStatusGrpcRequest.ProtoReflect.Descriptor instead.

func (*UpdateOnboardingStatusGrpcRequest) GetAppSource

func (x *UpdateOnboardingStatusGrpcRequest) GetAppSource() string

func (*UpdateOnboardingStatusGrpcRequest) GetCausedByContractId

func (x *UpdateOnboardingStatusGrpcRequest) GetCausedByContractId() string

func (*UpdateOnboardingStatusGrpcRequest) GetComments

func (x *UpdateOnboardingStatusGrpcRequest) GetComments() string

func (*UpdateOnboardingStatusGrpcRequest) GetLoggedInUserId

func (x *UpdateOnboardingStatusGrpcRequest) GetLoggedInUserId() string

func (*UpdateOnboardingStatusGrpcRequest) GetOnboardingStatus

func (x *UpdateOnboardingStatusGrpcRequest) GetOnboardingStatus() OnboardingStatus

func (*UpdateOnboardingStatusGrpcRequest) GetOrganizationId

func (x *UpdateOnboardingStatusGrpcRequest) GetOrganizationId() string

func (*UpdateOnboardingStatusGrpcRequest) GetTenant

func (*UpdateOnboardingStatusGrpcRequest) GetUpdatedAt

func (*UpdateOnboardingStatusGrpcRequest) ProtoMessage

func (*UpdateOnboardingStatusGrpcRequest) ProtoMessage()

func (*UpdateOnboardingStatusGrpcRequest) ProtoReflect

func (*UpdateOnboardingStatusGrpcRequest) Reset

func (*UpdateOnboardingStatusGrpcRequest) String

type UpdateOrganizationOwnerGrpcRequest

type UpdateOrganizationOwnerGrpcRequest struct {
	Tenant         string `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organizationId,proto3" json:"organizationId,omitempty"`
	OwnerUserId    string `protobuf:"bytes,3,opt,name=ownerUserId,proto3" json:"ownerUserId,omitempty"`
	LoggedInUserId string `protobuf:"bytes,4,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"` // The user who is performing the action
	AppSource      string `protobuf:"bytes,5,opt,name=appSource,proto3" json:"appSource,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateOrganizationOwnerGrpcRequest) Descriptor deprecated

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

Deprecated: Use UpdateOrganizationOwnerGrpcRequest.ProtoReflect.Descriptor instead.

func (*UpdateOrganizationOwnerGrpcRequest) GetAppSource

func (x *UpdateOrganizationOwnerGrpcRequest) GetAppSource() string

func (*UpdateOrganizationOwnerGrpcRequest) GetLoggedInUserId

func (x *UpdateOrganizationOwnerGrpcRequest) GetLoggedInUserId() string

func (*UpdateOrganizationOwnerGrpcRequest) GetOrganizationId

func (x *UpdateOrganizationOwnerGrpcRequest) GetOrganizationId() string

func (*UpdateOrganizationOwnerGrpcRequest) GetOwnerUserId

func (x *UpdateOrganizationOwnerGrpcRequest) GetOwnerUserId() string

func (*UpdateOrganizationOwnerGrpcRequest) GetTenant

func (*UpdateOrganizationOwnerGrpcRequest) ProtoMessage

func (*UpdateOrganizationOwnerGrpcRequest) ProtoMessage()

func (*UpdateOrganizationOwnerGrpcRequest) ProtoReflect

func (*UpdateOrganizationOwnerGrpcRequest) Reset

func (*UpdateOrganizationOwnerGrpcRequest) String

Jump to

Keyboard shortcuts

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