org_plan_grpc_service

package
v0.0.0-...-f415b7c Latest Latest
Warning

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

Go to latest
Published: May 21, 2024 License: Apache-2.0 Imports: 10 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	OrganizationPlanFieldMask_name = map[int32]string{
		0: "ORGANIZATION_PLAN_PROPERTY_NONE",
		1: "ORGANIZATION_PLAN_PROPERTY_ALL",
		2: "ORGANIZATION_PLAN_PROPERTY_NAME",
		3: "ORGANIZATION_PLAN_PROPERTY_RETIRED",
		4: "ORGANIZATION_PLAN_PROPERTY_STATUS_DETAILS",
	}
	OrganizationPlanFieldMask_value = map[string]int32{
		"ORGANIZATION_PLAN_PROPERTY_NONE":           0,
		"ORGANIZATION_PLAN_PROPERTY_ALL":            1,
		"ORGANIZATION_PLAN_PROPERTY_NAME":           2,
		"ORGANIZATION_PLAN_PROPERTY_RETIRED":        3,
		"ORGANIZATION_PLAN_PROPERTY_STATUS_DETAILS": 4,
	}
)

Enum value maps for OrganizationPlanFieldMask.

View Source
var (
	OrganizationPlanMilestoneFieldMask_name = map[int32]string{
		0: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_NONE",
		1: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_ALL",
		2: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_NAME",
		3: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_RETIRED",
		4: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_OPTIONAL",
		5: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_DUE_DATE",
		6: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_ITEMS",
		7: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_ORDER",
		8: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_STATUS_DETAILS",
		9: "ORGANIZATION_PLAN_MILESTONE_PROPERTY_ADHOC",
	}
	OrganizationPlanMilestoneFieldMask_value = map[string]int32{
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_NONE":           0,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_ALL":            1,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_NAME":           2,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_RETIRED":        3,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_OPTIONAL":       4,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_DUE_DATE":       5,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_ITEMS":          6,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_ORDER":          7,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_STATUS_DETAILS": 8,
		"ORGANIZATION_PLAN_MILESTONE_PROPERTY_ADHOC":          9,
	}
)

Enum value maps for OrganizationPlanMilestoneFieldMask.

View Source
var File_org_plan_proto protoreflect.FileDescriptor
View Source
var OrganizationPlanGrpcService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "OrganizationPlanGrpcService",
	HandlerType: (*OrganizationPlanGrpcServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateOrganizationPlan",
			Handler:    _OrganizationPlanGrpcService_CreateOrganizationPlan_Handler,
		},
		{
			MethodName: "UpdateOrganizationPlan",
			Handler:    _OrganizationPlanGrpcService_UpdateOrganizationPlan_Handler,
		},
		{
			MethodName: "CreateOrganizationPlanMilestone",
			Handler:    _OrganizationPlanGrpcService_CreateOrganizationPlanMilestone_Handler,
		},
		{
			MethodName: "UpdateOrganizationPlanMilestone",
			Handler:    _OrganizationPlanGrpcService_UpdateOrganizationPlanMilestone_Handler,
		},
		{
			MethodName: "ReorderOrganizationPlanMilestones",
			Handler:    _OrganizationPlanGrpcService_ReorderOrganizationPlanMilestones_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "org_plan.proto",
}

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

Functions

func RegisterOrganizationPlanGrpcServiceServer

func RegisterOrganizationPlanGrpcServiceServer(s grpc.ServiceRegistrar, srv OrganizationPlanGrpcServiceServer)

Types

type CreateOrganizationPlanGrpcRequest

type CreateOrganizationPlanGrpcRequest struct {
	Tenant         string                 `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	LoggedInUserId string                 `protobuf:"bytes,2,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	Name           string                 `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	CreatedAt      *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	SourceFields   *common.SourceFields   `protobuf:"bytes,5,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"`
	MasterPlanId   string                 `protobuf:"bytes,6,opt,name=masterPlanId,proto3" json:"masterPlanId,omitempty"`
	OrgId          string                 `protobuf:"bytes,7,opt,name=orgId,proto3" json:"orgId,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrganizationPlanGrpcRequest) Descriptor deprecated

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

Deprecated: Use CreateOrganizationPlanGrpcRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationPlanGrpcRequest) GetCreatedAt

func (*CreateOrganizationPlanGrpcRequest) GetLoggedInUserId

func (x *CreateOrganizationPlanGrpcRequest) GetLoggedInUserId() string

func (*CreateOrganizationPlanGrpcRequest) GetMasterPlanId

func (x *CreateOrganizationPlanGrpcRequest) GetMasterPlanId() string

func (*CreateOrganizationPlanGrpcRequest) GetName

func (*CreateOrganizationPlanGrpcRequest) GetOrgId

func (*CreateOrganizationPlanGrpcRequest) GetSourceFields

func (*CreateOrganizationPlanGrpcRequest) GetTenant

func (*CreateOrganizationPlanGrpcRequest) ProtoMessage

func (*CreateOrganizationPlanGrpcRequest) ProtoMessage()

func (*CreateOrganizationPlanGrpcRequest) ProtoReflect

func (*CreateOrganizationPlanGrpcRequest) Reset

func (*CreateOrganizationPlanGrpcRequest) String

type CreateOrganizationPlanMilestoneGrpcRequest

type CreateOrganizationPlanMilestoneGrpcRequest struct {
	Tenant             string                 `protobuf:"bytes,1,opt,name=tenant,proto3" json:"tenant,omitempty"`
	OrganizationPlanId string                 `protobuf:"bytes,2,opt,name=organizationPlanId,proto3" json:"organizationPlanId,omitempty"`
	LoggedInUserId     string                 `protobuf:"bytes,3,opt,name=loggedInUserId,proto3" json:"loggedInUserId,omitempty"`
	Name               string                 `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	CreatedAt          *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	SourceFields       *common.SourceFields   `protobuf:"bytes,6,opt,name=sourceFields,proto3" json:"sourceFields,omitempty"`
	Optional           bool                   `protobuf:"varint,7,opt,name=optional,proto3" json:"optional,omitempty"`
	DueDate            *timestamppb.Timestamp `protobuf:"bytes,8,opt,name=dueDate,proto3" json:"dueDate,omitempty"`
	Items              []string               `protobuf:"bytes,9,rep,name=items,proto3" json:"items,omitempty"`
	Order              int64                  `protobuf:"varint,10,opt,name=order,proto3" json:"order,omitempty"`
	OrgId              string                 `protobuf:"bytes,11,opt,name=orgId,proto3" json:"orgId,omitempty"`
	Adhoc              bool                   `protobuf:"varint,12,opt,name=adhoc,proto3" json:"adhoc,omitempty"`
	// contains filtered or unexported fields
}

Create Milestone takes just a list of string items, as they are all `not started` by default

func (*CreateOrganizationPlanMilestoneGrpcRequest) Descriptor deprecated

Deprecated: Use CreateOrganizationPlanMilestoneGrpcRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetAdhoc

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetCreatedAt

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetDueDate

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetItems

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetLoggedInUserId

func (x *CreateOrganizationPlanMilestoneGrpcRequest) GetLoggedInUserId() string

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetName

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetOptional

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetOrder

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetOrgId

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanId

func (x *CreateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanId() string

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetSourceFields

func (*CreateOrganizationPlanMilestoneGrpcRequest) GetTenant

func (*CreateOrganizationPlanMilestoneGrpcRequest) ProtoMessage

func (*CreateOrganizationPlanMilestoneGrpcRequest) ProtoReflect

func (*CreateOrganizationPlanMilestoneGrpcRequest) Reset

func (*CreateOrganizationPlanMilestoneGrpcRequest) String

type OrganizationPlanFieldMask

type OrganizationPlanFieldMask int32
const (
	OrganizationPlanFieldMask_ORGANIZATION_PLAN_PROPERTY_NONE           OrganizationPlanFieldMask = 0 // No property, ignored by the server
	OrganizationPlanFieldMask_ORGANIZATION_PLAN_PROPERTY_ALL            OrganizationPlanFieldMask = 1 // All properties, if present in the list all other properties are ignored
	OrganizationPlanFieldMask_ORGANIZATION_PLAN_PROPERTY_NAME           OrganizationPlanFieldMask = 2
	OrganizationPlanFieldMask_ORGANIZATION_PLAN_PROPERTY_RETIRED        OrganizationPlanFieldMask = 3
	OrganizationPlanFieldMask_ORGANIZATION_PLAN_PROPERTY_STATUS_DETAILS OrganizationPlanFieldMask = 4
)

func (OrganizationPlanFieldMask) Descriptor

func (OrganizationPlanFieldMask) Enum

func (OrganizationPlanFieldMask) EnumDescriptor deprecated

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

Deprecated: Use OrganizationPlanFieldMask.Descriptor instead.

func (OrganizationPlanFieldMask) Number

func (OrganizationPlanFieldMask) String

func (x OrganizationPlanFieldMask) String() string

func (OrganizationPlanFieldMask) Type

type OrganizationPlanGrpcServiceClient

OrganizationPlanGrpcServiceClient is the client API for OrganizationPlanGrpcService 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 OrganizationPlanGrpcServiceServer

OrganizationPlanGrpcServiceServer is the server API for OrganizationPlanGrpcService service. All implementations should embed UnimplementedOrganizationPlanGrpcServiceServer for forward compatibility

type OrganizationPlanIdGrpcResponse

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

func (*OrganizationPlanIdGrpcResponse) Descriptor deprecated

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

Deprecated: Use OrganizationPlanIdGrpcResponse.ProtoReflect.Descriptor instead.

func (*OrganizationPlanIdGrpcResponse) GetId

func (*OrganizationPlanIdGrpcResponse) ProtoMessage

func (*OrganizationPlanIdGrpcResponse) ProtoMessage()

func (*OrganizationPlanIdGrpcResponse) ProtoReflect

func (*OrganizationPlanIdGrpcResponse) Reset

func (x *OrganizationPlanIdGrpcResponse) Reset()

func (*OrganizationPlanIdGrpcResponse) String

type OrganizationPlanMilestoneFieldMask

type OrganizationPlanMilestoneFieldMask int32
const (
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_NONE           OrganizationPlanMilestoneFieldMask = 0 // No property, ignored by the server
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_ALL            OrganizationPlanMilestoneFieldMask = 1 // All properties, if present in the list all other properties are ignored
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_NAME           OrganizationPlanMilestoneFieldMask = 2
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_RETIRED        OrganizationPlanMilestoneFieldMask = 3
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_OPTIONAL       OrganizationPlanMilestoneFieldMask = 4
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_DUE_DATE       OrganizationPlanMilestoneFieldMask = 5
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_ITEMS          OrganizationPlanMilestoneFieldMask = 6
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_ORDER          OrganizationPlanMilestoneFieldMask = 7
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_STATUS_DETAILS OrganizationPlanMilestoneFieldMask = 8
	OrganizationPlanMilestoneFieldMask_ORGANIZATION_PLAN_MILESTONE_PROPERTY_ADHOC          OrganizationPlanMilestoneFieldMask = 9
)

func (OrganizationPlanMilestoneFieldMask) Descriptor

func (OrganizationPlanMilestoneFieldMask) Enum

func (OrganizationPlanMilestoneFieldMask) EnumDescriptor deprecated

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

Deprecated: Use OrganizationPlanMilestoneFieldMask.Descriptor instead.

func (OrganizationPlanMilestoneFieldMask) Number

func (OrganizationPlanMilestoneFieldMask) String

func (OrganizationPlanMilestoneFieldMask) Type

type OrganizationPlanMilestoneIdGrpcResponse

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

func (*OrganizationPlanMilestoneIdGrpcResponse) Descriptor deprecated

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

Deprecated: Use OrganizationPlanMilestoneIdGrpcResponse.ProtoReflect.Descriptor instead.

func (*OrganizationPlanMilestoneIdGrpcResponse) GetId

func (*OrganizationPlanMilestoneIdGrpcResponse) ProtoMessage

func (*OrganizationPlanMilestoneIdGrpcResponse) ProtoReflect

func (*OrganizationPlanMilestoneIdGrpcResponse) Reset

func (*OrganizationPlanMilestoneIdGrpcResponse) String

type OrganizationPlanMilestoneItem

type OrganizationPlanMilestoneItem struct {
	Status    string                 `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	Text      string                 `protobuf:"bytes,3,opt,name=text,proto3" json:"text,omitempty"`
	Uuid      string                 `protobuf:"bytes,4,opt,name=uuid,proto3" json:"uuid,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationPlanMilestoneItem) Descriptor deprecated

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

Deprecated: Use OrganizationPlanMilestoneItem.ProtoReflect.Descriptor instead.

func (*OrganizationPlanMilestoneItem) GetStatus

func (x *OrganizationPlanMilestoneItem) GetStatus() string

func (*OrganizationPlanMilestoneItem) GetText

func (*OrganizationPlanMilestoneItem) GetUpdatedAt

func (*OrganizationPlanMilestoneItem) GetUuid

func (*OrganizationPlanMilestoneItem) ProtoMessage

func (*OrganizationPlanMilestoneItem) ProtoMessage()

func (*OrganizationPlanMilestoneItem) ProtoReflect

func (*OrganizationPlanMilestoneItem) Reset

func (x *OrganizationPlanMilestoneItem) Reset()

func (*OrganizationPlanMilestoneItem) String

type ReorderOrganizationPlanMilestonesGrpcRequest

type ReorderOrganizationPlanMilestonesGrpcRequest struct {
	OrganizationPlanId           string                 `protobuf:"bytes,1,opt,name=organizationPlanId,proto3" json:"organizationPlanId,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"`
	UpdatedAt                    *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	OrganizationPlanMilestoneIds []string               `protobuf:"bytes,6,rep,name=organizationPlanMilestoneIds,proto3" json:"organizationPlanMilestoneIds,omitempty"`
	OrgId                        string                 `protobuf:"bytes,7,opt,name=orgId,proto3" json:"orgId,omitempty"`
	// contains filtered or unexported fields
}

func (*ReorderOrganizationPlanMilestonesGrpcRequest) Descriptor deprecated

Deprecated: Use ReorderOrganizationPlanMilestonesGrpcRequest.ProtoReflect.Descriptor instead.

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetAppSource

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetLoggedInUserId

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetOrgId

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetOrganizationPlanId

func (x *ReorderOrganizationPlanMilestonesGrpcRequest) GetOrganizationPlanId() string

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetOrganizationPlanMilestoneIds

func (x *ReorderOrganizationPlanMilestonesGrpcRequest) GetOrganizationPlanMilestoneIds() []string

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetTenant

func (*ReorderOrganizationPlanMilestonesGrpcRequest) GetUpdatedAt

func (*ReorderOrganizationPlanMilestonesGrpcRequest) ProtoMessage

func (*ReorderOrganizationPlanMilestonesGrpcRequest) ProtoReflect

func (*ReorderOrganizationPlanMilestonesGrpcRequest) Reset

func (*ReorderOrganizationPlanMilestonesGrpcRequest) String

type StatusDetails

type StatusDetails struct {
	Status    string                 `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	UpdatedAt *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	Comments  string                 `protobuf:"bytes,3,opt,name=comments,proto3" json:"comments,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusDetails) Descriptor deprecated

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

Deprecated: Use StatusDetails.ProtoReflect.Descriptor instead.

func (*StatusDetails) GetComments

func (x *StatusDetails) GetComments() string

func (*StatusDetails) GetStatus

func (x *StatusDetails) GetStatus() string

func (*StatusDetails) GetUpdatedAt

func (x *StatusDetails) GetUpdatedAt() *timestamppb.Timestamp

func (*StatusDetails) ProtoMessage

func (*StatusDetails) ProtoMessage()

func (*StatusDetails) ProtoReflect

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

func (*StatusDetails) Reset

func (x *StatusDetails) Reset()

func (*StatusDetails) String

func (x *StatusDetails) String() string

type UnimplementedOrganizationPlanGrpcServiceServer

type UnimplementedOrganizationPlanGrpcServiceServer struct {
}

UnimplementedOrganizationPlanGrpcServiceServer should be embedded to have forward compatible implementations.

type UnsafeOrganizationPlanGrpcServiceServer

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

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

type UpdateOrganizationPlanGrpcRequest

type UpdateOrganizationPlanGrpcRequest struct {
	OrganizationPlanId string                      `protobuf:"bytes,1,opt,name=organizationPlanId,proto3" json:"organizationPlanId,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"`
	Name               string                      `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Retired            bool                        `protobuf:"varint,5,opt,name=retired,proto3" json:"retired,omitempty"`
	FieldsMask         []OrganizationPlanFieldMask `protobuf:"varint,6,rep,packed,name=fieldsMask,proto3,enum=OrganizationPlanFieldMask" json:"fieldsMask,omitempty"`
	UpdatedAt          *timestamppb.Timestamp      `protobuf:"bytes,7,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
	AppSource          string                      `protobuf:"bytes,8,opt,name=appSource,proto3" json:"appSource,omitempty"`
	MasterPlanId       string                      `protobuf:"bytes,9,opt,name=masterPlanId,proto3" json:"masterPlanId,omitempty"`
	OrgId              string                      `protobuf:"bytes,10,opt,name=orgId,proto3" json:"orgId,omitempty"`
	StatusDetails      *StatusDetails              `protobuf:"bytes,11,opt,name=statusDetails,proto3" json:"statusDetails,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateOrganizationPlanGrpcRequest) Descriptor deprecated

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

Deprecated: Use UpdateOrganizationPlanGrpcRequest.ProtoReflect.Descriptor instead.

func (*UpdateOrganizationPlanGrpcRequest) GetAppSource

func (x *UpdateOrganizationPlanGrpcRequest) GetAppSource() string

func (*UpdateOrganizationPlanGrpcRequest) GetFieldsMask

func (*UpdateOrganizationPlanGrpcRequest) GetLoggedInUserId

func (x *UpdateOrganizationPlanGrpcRequest) GetLoggedInUserId() string

func (*UpdateOrganizationPlanGrpcRequest) GetMasterPlanId

func (x *UpdateOrganizationPlanGrpcRequest) GetMasterPlanId() string

func (*UpdateOrganizationPlanGrpcRequest) GetName

func (*UpdateOrganizationPlanGrpcRequest) GetOrgId

func (*UpdateOrganizationPlanGrpcRequest) GetOrganizationPlanId

func (x *UpdateOrganizationPlanGrpcRequest) GetOrganizationPlanId() string

func (*UpdateOrganizationPlanGrpcRequest) GetRetired

func (x *UpdateOrganizationPlanGrpcRequest) GetRetired() bool

func (*UpdateOrganizationPlanGrpcRequest) GetStatusDetails

func (x *UpdateOrganizationPlanGrpcRequest) GetStatusDetails() *StatusDetails

func (*UpdateOrganizationPlanGrpcRequest) GetTenant

func (*UpdateOrganizationPlanGrpcRequest) GetUpdatedAt

func (*UpdateOrganizationPlanGrpcRequest) ProtoMessage

func (*UpdateOrganizationPlanGrpcRequest) ProtoMessage()

func (*UpdateOrganizationPlanGrpcRequest) ProtoReflect

func (*UpdateOrganizationPlanGrpcRequest) Reset

func (*UpdateOrganizationPlanGrpcRequest) String

type UpdateOrganizationPlanMilestoneGrpcRequest

type UpdateOrganizationPlanMilestoneGrpcRequest struct {
	OrganizationPlanId          string                               `protobuf:"bytes,1,opt,name=organizationPlanId,proto3" json:"organizationPlanId,omitempty"`
	OrganizationPlanMilestoneId string                               `protobuf:"bytes,2,opt,name=organizationPlanMilestoneId,proto3" json:"organizationPlanMilestoneId,omitempty"`
	Tenant                      string                               `protobuf:"bytes,3,opt,name=tenant,proto3" json:"tenant,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"`
	Name                        string                               `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	Retired                     bool                                 `protobuf:"varint,8,opt,name=retired,proto3" json:"retired,omitempty"`
	Optional                    bool                                 `protobuf:"varint,9,opt,name=optional,proto3" json:"optional,omitempty"`
	Order                       int64                                `protobuf:"varint,10,opt,name=order,proto3" json:"order,omitempty"`
	DueDate                     *timestamppb.Timestamp               `protobuf:"bytes,11,opt,name=dueDate,proto3" json:"dueDate,omitempty"`
	Items                       []*OrganizationPlanMilestoneItem     `protobuf:"bytes,12,rep,name=items,proto3" json:"items,omitempty"`
	FieldsMask                  []OrganizationPlanMilestoneFieldMask `protobuf:"varint,13,rep,packed,name=fieldsMask,proto3,enum=OrganizationPlanMilestoneFieldMask" json:"fieldsMask,omitempty"`
	StatusDetails               *StatusDetails                       `protobuf:"bytes,14,opt,name=statusDetails,proto3" json:"statusDetails,omitempty"`
	OrgId                       string                               `protobuf:"bytes,15,opt,name=orgId,proto3" json:"orgId,omitempty"`
	Adhoc                       bool                                 `protobuf:"varint,16,opt,name=adhoc,proto3" json:"adhoc,omitempty"`
	// contains filtered or unexported fields
}

Update milestone requires items to be a list of objects, which would contain the status, text and updatedAt

func (*UpdateOrganizationPlanMilestoneGrpcRequest) Descriptor deprecated

Deprecated: Use UpdateOrganizationPlanMilestoneGrpcRequest.ProtoReflect.Descriptor instead.

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetAdhoc

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetAppSource

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetDueDate

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetFieldsMask

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetItems

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetLoggedInUserId

func (x *UpdateOrganizationPlanMilestoneGrpcRequest) GetLoggedInUserId() string

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetName

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetOptional

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetOrder

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetOrgId

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanId

func (x *UpdateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanId() string

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanMilestoneId

func (x *UpdateOrganizationPlanMilestoneGrpcRequest) GetOrganizationPlanMilestoneId() string

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetRetired

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetStatusDetails

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetTenant

func (*UpdateOrganizationPlanMilestoneGrpcRequest) GetUpdatedAt

func (*UpdateOrganizationPlanMilestoneGrpcRequest) ProtoMessage

func (*UpdateOrganizationPlanMilestoneGrpcRequest) ProtoReflect

func (*UpdateOrganizationPlanMilestoneGrpcRequest) Reset

func (*UpdateOrganizationPlanMilestoneGrpcRequest) String

Jump to

Keyboard shortcuts

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