github.com/cloudwan/edgelq-sdk@v1.15.4/iam/resources/v1/project_invitation/project_invitation_change.pb.go (about)

     1  // Code generated by protoc-gen-goten-go
     2  // File: edgelq/iam/proto/v1/project_invitation_change.proto
     3  // DO NOT EDIT!!!
     4  
     5  package project_invitation
     6  
     7  import (
     8  	"fmt"
     9  	"reflect"
    10  	"sync"
    11  
    12  	"google.golang.org/protobuf/encoding/protojson"
    13  	"google.golang.org/protobuf/proto"
    14  	preflect "google.golang.org/protobuf/reflect/protoreflect"
    15  	"google.golang.org/protobuf/runtime/protoimpl"
    16  )
    17  
    18  // proto imports
    19  import (
    20  	project "github.com/cloudwan/edgelq-sdk/iam/resources/v1/project"
    21  	fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb"
    22  )
    23  
    24  // Reference imports to suppress errors if they are not otherwise used.
    25  var (
    26  	_ = fmt.Errorf
    27  	_ = reflect.Method{}
    28  	_ = sync.Once{}
    29  
    30  	_ = protojson.MarshalOptions{}
    31  	_ = proto.MarshalOptions{}
    32  	_ = preflect.Value{}
    33  	_ = protoimpl.DescBuilder{}
    34  )
    35  
    36  // make sure we're using proto imports
    37  var (
    38  	_ = &project.Project{}
    39  	_ = &fieldmaskpb.FieldMask{}
    40  )
    41  
    42  const (
    43  	// Verify that this generated code is sufficiently up-to-date.
    44  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    45  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    46  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    47  )
    48  
    49  // ProjectInvitationChange is used by Watch notifications Responses to describe
    50  // change of single ProjectInvitation One of Added, Modified, Removed
    51  type ProjectInvitationChange struct {
    52  	state         protoimpl.MessageState
    53  	sizeCache     protoimpl.SizeCache
    54  	unknownFields protoimpl.UnknownFields
    55  	// ProjectInvitation change
    56  	//
    57  	// Types that are valid to be assigned to ChangeType:
    58  	//	*ProjectInvitationChange_Added_
    59  	//	*ProjectInvitationChange_Modified_
    60  	//	*ProjectInvitationChange_Current_
    61  	//	*ProjectInvitationChange_Removed_
    62  	ChangeType isProjectInvitationChange_ChangeType `protobuf_oneof:"change_type"`
    63  }
    64  
    65  func (m *ProjectInvitationChange) Reset() {
    66  	*m = ProjectInvitationChange{}
    67  	if protoimpl.UnsafeEnabled {
    68  		mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[0]
    69  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    70  		ms.StoreMessageInfo(mi)
    71  	}
    72  }
    73  
    74  func (m *ProjectInvitationChange) String() string {
    75  	return protoimpl.X.MessageStringOf(m)
    76  }
    77  
    78  func (*ProjectInvitationChange) ProtoMessage() {}
    79  
    80  func (m *ProjectInvitationChange) ProtoReflect() preflect.Message {
    81  	mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[0]
    82  	if protoimpl.UnsafeEnabled && m != nil {
    83  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
    84  		if ms.LoadMessageInfo() == nil {
    85  			ms.StoreMessageInfo(mi)
    86  		}
    87  		return ms
    88  	}
    89  	return mi.MessageOf(m)
    90  }
    91  
    92  func (*ProjectInvitationChange) GotenMessage() {}
    93  
    94  // Deprecated, Use ProjectInvitationChange.ProtoReflect.Descriptor instead.
    95  func (*ProjectInvitationChange) Descriptor() ([]byte, []int) {
    96  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP(), []int{0}
    97  }
    98  
    99  func (m *ProjectInvitationChange) Unmarshal(b []byte) error {
   100  	return proto.Unmarshal(b, m)
   101  }
   102  
   103  func (m *ProjectInvitationChange) Marshal() ([]byte, error) {
   104  	return proto.Marshal(m)
   105  }
   106  
   107  func (m *ProjectInvitationChange) MarshalJSON() ([]byte, error) {
   108  	return protojson.MarshalOptions{}.Marshal(m)
   109  }
   110  
   111  func (m *ProjectInvitationChange) UnmarshalJSON(data []byte) error {
   112  	return protojson.Unmarshal(data, m)
   113  }
   114  
   115  type isProjectInvitationChange_ChangeType interface {
   116  	isProjectInvitationChange_ChangeType()
   117  }
   118  
   119  type ProjectInvitationChange_Added_ struct {
   120  	// Added is returned when watched document is added, either created or
   121  	// enters Query view
   122  	Added *ProjectInvitationChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof"`
   123  }
   124  type ProjectInvitationChange_Modified_ struct {
   125  	// Modified is returned when watched document is modified
   126  	Modified *ProjectInvitationChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof"`
   127  }
   128  type ProjectInvitationChange_Current_ struct {
   129  	// Current is returned in stateless watch when document enters query view or
   130  	// is modified within.
   131  	Current *ProjectInvitationChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof"`
   132  }
   133  type ProjectInvitationChange_Removed_ struct {
   134  	// Removed is returned when ProjectInvitation is deleted or leaves Query
   135  	// view
   136  	Removed *ProjectInvitationChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof"`
   137  }
   138  
   139  func (*ProjectInvitationChange_Added_) isProjectInvitationChange_ChangeType()    {}
   140  func (*ProjectInvitationChange_Modified_) isProjectInvitationChange_ChangeType() {}
   141  func (*ProjectInvitationChange_Current_) isProjectInvitationChange_ChangeType()  {}
   142  func (*ProjectInvitationChange_Removed_) isProjectInvitationChange_ChangeType()  {}
   143  func (m *ProjectInvitationChange) GetChangeType() isProjectInvitationChange_ChangeType {
   144  	if m != nil {
   145  		return m.ChangeType
   146  	}
   147  	return nil
   148  }
   149  func (m *ProjectInvitationChange) GetAdded() *ProjectInvitationChange_Added {
   150  	if x, ok := m.GetChangeType().(*ProjectInvitationChange_Added_); ok {
   151  		return x.Added
   152  	}
   153  	return nil
   154  }
   155  func (m *ProjectInvitationChange) GetModified() *ProjectInvitationChange_Modified {
   156  	if x, ok := m.GetChangeType().(*ProjectInvitationChange_Modified_); ok {
   157  		return x.Modified
   158  	}
   159  	return nil
   160  }
   161  func (m *ProjectInvitationChange) GetCurrent() *ProjectInvitationChange_Current {
   162  	if x, ok := m.GetChangeType().(*ProjectInvitationChange_Current_); ok {
   163  		return x.Current
   164  	}
   165  	return nil
   166  }
   167  func (m *ProjectInvitationChange) GetRemoved() *ProjectInvitationChange_Removed {
   168  	if x, ok := m.GetChangeType().(*ProjectInvitationChange_Removed_); ok {
   169  		return x.Removed
   170  	}
   171  	return nil
   172  }
   173  func (m *ProjectInvitationChange) SetChangeType(ofv isProjectInvitationChange_ChangeType) {
   174  	if m == nil {
   175  		panic(fmt.Errorf("can't set %s on nil %s", "isProjectInvitationChange_ChangeType", "ProjectInvitationChange"))
   176  	}
   177  	m.ChangeType = ofv
   178  }
   179  func (m *ProjectInvitationChange) SetAdded(fv *ProjectInvitationChange_Added) {
   180  	m.SetChangeType(&ProjectInvitationChange_Added_{Added: fv})
   181  }
   182  func (m *ProjectInvitationChange) SetModified(fv *ProjectInvitationChange_Modified) {
   183  	m.SetChangeType(&ProjectInvitationChange_Modified_{Modified: fv})
   184  }
   185  func (m *ProjectInvitationChange) SetCurrent(fv *ProjectInvitationChange_Current) {
   186  	m.SetChangeType(&ProjectInvitationChange_Current_{Current: fv})
   187  }
   188  func (m *ProjectInvitationChange) SetRemoved(fv *ProjectInvitationChange_Removed) {
   189  	m.SetChangeType(&ProjectInvitationChange_Removed_{Removed: fv})
   190  }
   191  
   192  // ProjectInvitation has been added to query view
   193  type ProjectInvitationChange_Added struct {
   194  	state             protoimpl.MessageState
   195  	sizeCache         protoimpl.SizeCache
   196  	unknownFields     protoimpl.UnknownFields
   197  	ProjectInvitation *ProjectInvitation `protobuf:"bytes,1,opt,name=project_invitation,json=projectInvitation,proto3" json:"project_invitation,omitempty"`
   198  	// Integer describing index of added ProjectInvitation in resulting query
   199  	// view.
   200  	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   201  }
   202  
   203  func (m *ProjectInvitationChange_Added) Reset() {
   204  	*m = ProjectInvitationChange_Added{}
   205  	if protoimpl.UnsafeEnabled {
   206  		mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[1]
   207  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   208  		ms.StoreMessageInfo(mi)
   209  	}
   210  }
   211  
   212  func (m *ProjectInvitationChange_Added) String() string {
   213  	return protoimpl.X.MessageStringOf(m)
   214  }
   215  
   216  func (*ProjectInvitationChange_Added) ProtoMessage() {}
   217  
   218  func (m *ProjectInvitationChange_Added) ProtoReflect() preflect.Message {
   219  	mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[1]
   220  	if protoimpl.UnsafeEnabled && m != nil {
   221  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   222  		if ms.LoadMessageInfo() == nil {
   223  			ms.StoreMessageInfo(mi)
   224  		}
   225  		return ms
   226  	}
   227  	return mi.MessageOf(m)
   228  }
   229  
   230  func (*ProjectInvitationChange_Added) GotenMessage() {}
   231  
   232  // Deprecated, Use ProjectInvitationChange_Added.ProtoReflect.Descriptor instead.
   233  func (*ProjectInvitationChange_Added) Descriptor() ([]byte, []int) {
   234  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP(), []int{0, 0}
   235  }
   236  
   237  func (m *ProjectInvitationChange_Added) Unmarshal(b []byte) error {
   238  	return proto.Unmarshal(b, m)
   239  }
   240  
   241  func (m *ProjectInvitationChange_Added) Marshal() ([]byte, error) {
   242  	return proto.Marshal(m)
   243  }
   244  
   245  func (m *ProjectInvitationChange_Added) MarshalJSON() ([]byte, error) {
   246  	return protojson.MarshalOptions{}.Marshal(m)
   247  }
   248  
   249  func (m *ProjectInvitationChange_Added) UnmarshalJSON(data []byte) error {
   250  	return protojson.Unmarshal(data, m)
   251  }
   252  
   253  func (m *ProjectInvitationChange_Added) GetProjectInvitation() *ProjectInvitation {
   254  	if m != nil {
   255  		return m.ProjectInvitation
   256  	}
   257  	return nil
   258  }
   259  
   260  func (m *ProjectInvitationChange_Added) GetViewIndex() int32 {
   261  	if m != nil {
   262  		return m.ViewIndex
   263  	}
   264  	return int32(0)
   265  }
   266  
   267  func (m *ProjectInvitationChange_Added) SetProjectInvitation(fv *ProjectInvitation) {
   268  	if m == nil {
   269  		panic(fmt.Errorf("can't set %s on nil %s", "ProjectInvitation", "ProjectInvitationChange_Added"))
   270  	}
   271  	m.ProjectInvitation = fv
   272  }
   273  
   274  func (m *ProjectInvitationChange_Added) SetViewIndex(fv int32) {
   275  	if m == nil {
   276  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ProjectInvitationChange_Added"))
   277  	}
   278  	m.ViewIndex = fv
   279  }
   280  
   281  // ProjectInvitation changed some of it's fields - contains either full
   282  // document or masked change
   283  type ProjectInvitationChange_Modified struct {
   284  	state         protoimpl.MessageState
   285  	sizeCache     protoimpl.SizeCache
   286  	unknownFields protoimpl.UnknownFields
   287  	// Name of modified ProjectInvitation
   288  	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   289  	// New version of ProjectInvitation or masked difference, depending on
   290  	// mask_changes instrumentation of issued [WatchProjectInvitationRequest] or
   291  	// [WatchProjectInvitationsRequest]
   292  	ProjectInvitation *ProjectInvitation `protobuf:"bytes,2,opt,name=project_invitation,json=projectInvitation,proto3" json:"project_invitation,omitempty"`
   293  	// Used when mask_changes is set, contains field paths of modified
   294  	// properties.
   295  	FieldMask *ProjectInvitation_FieldMask `protobuf:"bytes,3,opt,customtype=ProjectInvitation_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
   296  	// Previous view index specifies previous position of modified
   297  	// ProjectInvitation. When modification doesn't affect sorted order, value
   298  	// will remain identical to [view_index].
   299  	PreviousViewIndex int32 `protobuf:"varint,4,opt,name=previous_view_index,json=previousViewIndex,proto3" json:"previous_view_index,omitempty"`
   300  	// Integer specifying ProjectInvitation new index in resulting query view.
   301  	ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   302  }
   303  
   304  func (m *ProjectInvitationChange_Modified) Reset() {
   305  	*m = ProjectInvitationChange_Modified{}
   306  	if protoimpl.UnsafeEnabled {
   307  		mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[2]
   308  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   309  		ms.StoreMessageInfo(mi)
   310  	}
   311  }
   312  
   313  func (m *ProjectInvitationChange_Modified) String() string {
   314  	return protoimpl.X.MessageStringOf(m)
   315  }
   316  
   317  func (*ProjectInvitationChange_Modified) ProtoMessage() {}
   318  
   319  func (m *ProjectInvitationChange_Modified) ProtoReflect() preflect.Message {
   320  	mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[2]
   321  	if protoimpl.UnsafeEnabled && m != nil {
   322  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   323  		if ms.LoadMessageInfo() == nil {
   324  			ms.StoreMessageInfo(mi)
   325  		}
   326  		return ms
   327  	}
   328  	return mi.MessageOf(m)
   329  }
   330  
   331  func (*ProjectInvitationChange_Modified) GotenMessage() {}
   332  
   333  // Deprecated, Use ProjectInvitationChange_Modified.ProtoReflect.Descriptor instead.
   334  func (*ProjectInvitationChange_Modified) Descriptor() ([]byte, []int) {
   335  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP(), []int{0, 1}
   336  }
   337  
   338  func (m *ProjectInvitationChange_Modified) Unmarshal(b []byte) error {
   339  	return proto.Unmarshal(b, m)
   340  }
   341  
   342  func (m *ProjectInvitationChange_Modified) Marshal() ([]byte, error) {
   343  	return proto.Marshal(m)
   344  }
   345  
   346  func (m *ProjectInvitationChange_Modified) MarshalJSON() ([]byte, error) {
   347  	return protojson.MarshalOptions{}.Marshal(m)
   348  }
   349  
   350  func (m *ProjectInvitationChange_Modified) UnmarshalJSON(data []byte) error {
   351  	return protojson.Unmarshal(data, m)
   352  }
   353  
   354  func (m *ProjectInvitationChange_Modified) GetName() *Name {
   355  	if m != nil {
   356  		return m.Name
   357  	}
   358  	return nil
   359  }
   360  
   361  func (m *ProjectInvitationChange_Modified) GetProjectInvitation() *ProjectInvitation {
   362  	if m != nil {
   363  		return m.ProjectInvitation
   364  	}
   365  	return nil
   366  }
   367  
   368  func (m *ProjectInvitationChange_Modified) GetFieldMask() *ProjectInvitation_FieldMask {
   369  	if m != nil {
   370  		return m.FieldMask
   371  	}
   372  	return nil
   373  }
   374  
   375  func (m *ProjectInvitationChange_Modified) GetPreviousViewIndex() int32 {
   376  	if m != nil {
   377  		return m.PreviousViewIndex
   378  	}
   379  	return int32(0)
   380  }
   381  
   382  func (m *ProjectInvitationChange_Modified) GetViewIndex() int32 {
   383  	if m != nil {
   384  		return m.ViewIndex
   385  	}
   386  	return int32(0)
   387  }
   388  
   389  func (m *ProjectInvitationChange_Modified) SetName(fv *Name) {
   390  	if m == nil {
   391  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "ProjectInvitationChange_Modified"))
   392  	}
   393  	m.Name = fv
   394  }
   395  
   396  func (m *ProjectInvitationChange_Modified) SetProjectInvitation(fv *ProjectInvitation) {
   397  	if m == nil {
   398  		panic(fmt.Errorf("can't set %s on nil %s", "ProjectInvitation", "ProjectInvitationChange_Modified"))
   399  	}
   400  	m.ProjectInvitation = fv
   401  }
   402  
   403  func (m *ProjectInvitationChange_Modified) SetFieldMask(fv *ProjectInvitation_FieldMask) {
   404  	if m == nil {
   405  		panic(fmt.Errorf("can't set %s on nil %s", "FieldMask", "ProjectInvitationChange_Modified"))
   406  	}
   407  	m.FieldMask = fv
   408  }
   409  
   410  func (m *ProjectInvitationChange_Modified) SetPreviousViewIndex(fv int32) {
   411  	if m == nil {
   412  		panic(fmt.Errorf("can't set %s on nil %s", "PreviousViewIndex", "ProjectInvitationChange_Modified"))
   413  	}
   414  	m.PreviousViewIndex = fv
   415  }
   416  
   417  func (m *ProjectInvitationChange_Modified) SetViewIndex(fv int32) {
   418  	if m == nil {
   419  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ProjectInvitationChange_Modified"))
   420  	}
   421  	m.ViewIndex = fv
   422  }
   423  
   424  // ProjectInvitation has been added or modified in a query view. Version used
   425  // for stateless watching
   426  type ProjectInvitationChange_Current struct {
   427  	state             protoimpl.MessageState
   428  	sizeCache         protoimpl.SizeCache
   429  	unknownFields     protoimpl.UnknownFields
   430  	ProjectInvitation *ProjectInvitation `protobuf:"bytes,1,opt,name=project_invitation,json=projectInvitation,proto3" json:"project_invitation,omitempty"`
   431  }
   432  
   433  func (m *ProjectInvitationChange_Current) Reset() {
   434  	*m = ProjectInvitationChange_Current{}
   435  	if protoimpl.UnsafeEnabled {
   436  		mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[3]
   437  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   438  		ms.StoreMessageInfo(mi)
   439  	}
   440  }
   441  
   442  func (m *ProjectInvitationChange_Current) String() string {
   443  	return protoimpl.X.MessageStringOf(m)
   444  }
   445  
   446  func (*ProjectInvitationChange_Current) ProtoMessage() {}
   447  
   448  func (m *ProjectInvitationChange_Current) ProtoReflect() preflect.Message {
   449  	mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[3]
   450  	if protoimpl.UnsafeEnabled && m != nil {
   451  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   452  		if ms.LoadMessageInfo() == nil {
   453  			ms.StoreMessageInfo(mi)
   454  		}
   455  		return ms
   456  	}
   457  	return mi.MessageOf(m)
   458  }
   459  
   460  func (*ProjectInvitationChange_Current) GotenMessage() {}
   461  
   462  // Deprecated, Use ProjectInvitationChange_Current.ProtoReflect.Descriptor instead.
   463  func (*ProjectInvitationChange_Current) Descriptor() ([]byte, []int) {
   464  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP(), []int{0, 2}
   465  }
   466  
   467  func (m *ProjectInvitationChange_Current) Unmarshal(b []byte) error {
   468  	return proto.Unmarshal(b, m)
   469  }
   470  
   471  func (m *ProjectInvitationChange_Current) Marshal() ([]byte, error) {
   472  	return proto.Marshal(m)
   473  }
   474  
   475  func (m *ProjectInvitationChange_Current) MarshalJSON() ([]byte, error) {
   476  	return protojson.MarshalOptions{}.Marshal(m)
   477  }
   478  
   479  func (m *ProjectInvitationChange_Current) UnmarshalJSON(data []byte) error {
   480  	return protojson.Unmarshal(data, m)
   481  }
   482  
   483  func (m *ProjectInvitationChange_Current) GetProjectInvitation() *ProjectInvitation {
   484  	if m != nil {
   485  		return m.ProjectInvitation
   486  	}
   487  	return nil
   488  }
   489  
   490  func (m *ProjectInvitationChange_Current) SetProjectInvitation(fv *ProjectInvitation) {
   491  	if m == nil {
   492  		panic(fmt.Errorf("can't set %s on nil %s", "ProjectInvitation", "ProjectInvitationChange_Current"))
   493  	}
   494  	m.ProjectInvitation = fv
   495  }
   496  
   497  // Removed is returned when ProjectInvitation is deleted or leaves Query view
   498  type ProjectInvitationChange_Removed struct {
   499  	state         protoimpl.MessageState
   500  	sizeCache     protoimpl.SizeCache
   501  	unknownFields protoimpl.UnknownFields
   502  	Name          *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
   503  	// Integer specifying removed ProjectInvitation index. Not populated in
   504  	// stateless watch type.
   505  	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
   506  }
   507  
   508  func (m *ProjectInvitationChange_Removed) Reset() {
   509  	*m = ProjectInvitationChange_Removed{}
   510  	if protoimpl.UnsafeEnabled {
   511  		mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[4]
   512  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   513  		ms.StoreMessageInfo(mi)
   514  	}
   515  }
   516  
   517  func (m *ProjectInvitationChange_Removed) String() string {
   518  	return protoimpl.X.MessageStringOf(m)
   519  }
   520  
   521  func (*ProjectInvitationChange_Removed) ProtoMessage() {}
   522  
   523  func (m *ProjectInvitationChange_Removed) ProtoReflect() preflect.Message {
   524  	mi := &edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[4]
   525  	if protoimpl.UnsafeEnabled && m != nil {
   526  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(m))
   527  		if ms.LoadMessageInfo() == nil {
   528  			ms.StoreMessageInfo(mi)
   529  		}
   530  		return ms
   531  	}
   532  	return mi.MessageOf(m)
   533  }
   534  
   535  func (*ProjectInvitationChange_Removed) GotenMessage() {}
   536  
   537  // Deprecated, Use ProjectInvitationChange_Removed.ProtoReflect.Descriptor instead.
   538  func (*ProjectInvitationChange_Removed) Descriptor() ([]byte, []int) {
   539  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP(), []int{0, 3}
   540  }
   541  
   542  func (m *ProjectInvitationChange_Removed) Unmarshal(b []byte) error {
   543  	return proto.Unmarshal(b, m)
   544  }
   545  
   546  func (m *ProjectInvitationChange_Removed) Marshal() ([]byte, error) {
   547  	return proto.Marshal(m)
   548  }
   549  
   550  func (m *ProjectInvitationChange_Removed) MarshalJSON() ([]byte, error) {
   551  	return protojson.MarshalOptions{}.Marshal(m)
   552  }
   553  
   554  func (m *ProjectInvitationChange_Removed) UnmarshalJSON(data []byte) error {
   555  	return protojson.Unmarshal(data, m)
   556  }
   557  
   558  func (m *ProjectInvitationChange_Removed) GetName() *Name {
   559  	if m != nil {
   560  		return m.Name
   561  	}
   562  	return nil
   563  }
   564  
   565  func (m *ProjectInvitationChange_Removed) GetViewIndex() int32 {
   566  	if m != nil {
   567  		return m.ViewIndex
   568  	}
   569  	return int32(0)
   570  }
   571  
   572  func (m *ProjectInvitationChange_Removed) SetName(fv *Name) {
   573  	if m == nil {
   574  		panic(fmt.Errorf("can't set %s on nil %s", "Name", "ProjectInvitationChange_Removed"))
   575  	}
   576  	m.Name = fv
   577  }
   578  
   579  func (m *ProjectInvitationChange_Removed) SetViewIndex(fv int32) {
   580  	if m == nil {
   581  		panic(fmt.Errorf("can't set %s on nil %s", "ViewIndex", "ProjectInvitationChange_Removed"))
   582  	}
   583  	m.ViewIndex = fv
   584  }
   585  
   586  var edgelq_iam_proto_v1_project_invitation_change_proto preflect.FileDescriptor
   587  
   588  var edgelq_iam_proto_v1_project_invitation_change_proto_rawDesc = []byte{
   589  	0x0a, 0x33, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f,
   590  	0x74, 0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e,
   591  	0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e,
   592  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76,
   593  	0x31, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65,
   594  	0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67, 0x6f,
   595  	0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x66, 0x69,
   596  	0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1d,
   597  	0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
   598  	0x73, 0x2f, 0x67, 0x6f, 0x74, 0x65, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x20, 0x67,
   599  	0x6f, 0x74, 0x65, 0x6e, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
   600  	0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
   601  	0x2c, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f, 0x69, 0x61, 0x6d, 0x2f, 0x70, 0x72, 0x6f, 0x74,
   602  	0x6f, 0x2f, 0x76, 0x31, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x76,
   603  	0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xb9, 0x07,
   604  	0x0a, 0x17, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
   605  	0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x41, 0x0a, 0x05, 0x61, 0x64, 0x64,
   606  	0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69,
   607  	0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76,
   608  	0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x41, 0x64,
   609  	0x64, 0x65, 0x64, 0x48, 0x00, 0x52, 0x05, 0x61, 0x64, 0x64, 0x65, 0x64, 0x12, 0x4a, 0x0a, 0x08,
   610  	0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c,
   611  	0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
   612  	0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61,
   613  	0x6e, 0x67, 0x65, 0x2e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x48, 0x00, 0x52, 0x08,
   614  	0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x47, 0x0a, 0x07, 0x63, 0x75, 0x72, 0x72,
   615  	0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6e, 0x74, 0x74, 0x2e,
   616  	0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e,
   617  	0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x43,
   618  	0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x07, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
   619  	0x74, 0x12, 0x47, 0x0a, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01,
   620  	0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e,
   621  	0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
   622  	0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x48,
   623  	0x00, 0x52, 0x07, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x64, 0x1a, 0x74, 0x0a, 0x05, 0x41, 0x64,
   624  	0x64, 0x65, 0x64, 0x12, 0x4c, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
   625  	0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
   626  	0x1d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
   627  	0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11,
   628  	0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
   629  	0x6e, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18,
   630  	0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78,
   631  	0x1a, 0xac, 0x02, 0x0a, 0x08, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x2d, 0x0a,
   632  	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x19, 0xb2, 0xda, 0x21,
   633  	0x15, 0x0a, 0x13, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69,
   634  	0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x12,
   635  	0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69,
   636  	0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69,
   637  	0x61, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76,
   638  	0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
   639  	0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x54, 0x0a, 0x0a, 0x66, 0x69,
   640  	0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a,
   641  	0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
   642  	0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x42, 0x19, 0xb2, 0xda, 0x21, 0x15,
   643  	0x32, 0x13, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74,
   644  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b,
   645  	0x12, 0x2e, 0x0a, 0x13, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x76, 0x69, 0x65,
   646  	0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x11, 0x70,
   647  	0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x56, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78,
   648  	0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x05,
   649  	0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x1a,
   650  	0x57, 0x0a, 0x07, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x4c, 0x0a, 0x12, 0x70, 0x72,
   651  	0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
   652  	0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d,
   653  	0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74,
   654  	0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e,
   655  	0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x57, 0x0a, 0x07, 0x52, 0x65, 0x6d, 0x6f,
   656  	0x76, 0x65, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
   657  	0x09, 0x42, 0x19, 0xb2, 0xda, 0x21, 0x15, 0x0a, 0x13, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65,
   658  	0x63, 0x74, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x04, 0x6e, 0x61,
   659  	0x6d, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78,
   660  	0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6e, 0x64, 0x65,
   661  	0x78, 0x3a, 0x17, 0x9a, 0xd9, 0x21, 0x13, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
   662  	0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0d, 0x0a, 0x0b, 0x63, 0x68,
   663  	0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x8a, 0x01, 0xe8, 0xde, 0x21, 0x00,
   664  	0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x2e, 0x6e, 0x74, 0x74, 0x2e, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x62,
   665  	0x2e, 0x76, 0x31, 0x42, 0x1c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x76, 0x69,
   666  	0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74,
   667  	0x6f, 0x50, 0x00, 0x5a, 0x51, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
   668  	0x63, 0x6c, 0x6f, 0x75, 0x64, 0x77, 0x61, 0x6e, 0x2f, 0x65, 0x64, 0x67, 0x65, 0x6c, 0x71, 0x2f,
   669  	0x69, 0x61, 0x6d, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x76, 0x31,
   670  	0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
   671  	0x69, 0x6f, 0x6e, 0x3b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x69,
   672  	0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   673  }
   674  
   675  var (
   676  	edgelq_iam_proto_v1_project_invitation_change_proto_rawDescOnce sync.Once
   677  	edgelq_iam_proto_v1_project_invitation_change_proto_rawDescData = edgelq_iam_proto_v1_project_invitation_change_proto_rawDesc
   678  )
   679  
   680  func edgelq_iam_proto_v1_project_invitation_change_proto_rawDescGZIP() []byte {
   681  	edgelq_iam_proto_v1_project_invitation_change_proto_rawDescOnce.Do(func() {
   682  		edgelq_iam_proto_v1_project_invitation_change_proto_rawDescData = protoimpl.X.CompressGZIP(edgelq_iam_proto_v1_project_invitation_change_proto_rawDescData)
   683  	})
   684  	return edgelq_iam_proto_v1_project_invitation_change_proto_rawDescData
   685  }
   686  
   687  var edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
   688  var edgelq_iam_proto_v1_project_invitation_change_proto_goTypes = []interface{}{
   689  	(*ProjectInvitationChange)(nil),          // 0: ntt.iam.v1.ProjectInvitationChange
   690  	(*ProjectInvitationChange_Added)(nil),    // 1: ntt.iam.v1.ProjectInvitationChange.Added
   691  	(*ProjectInvitationChange_Modified)(nil), // 2: ntt.iam.v1.ProjectInvitationChange.Modified
   692  	(*ProjectInvitationChange_Current)(nil),  // 3: ntt.iam.v1.ProjectInvitationChange.Current
   693  	(*ProjectInvitationChange_Removed)(nil),  // 4: ntt.iam.v1.ProjectInvitationChange.Removed
   694  	(*ProjectInvitation)(nil),                // 5: ntt.iam.v1.ProjectInvitation
   695  	(*ProjectInvitation_FieldMask)(nil),      // 6: ntt.iam.v1.ProjectInvitation_FieldMask
   696  }
   697  var edgelq_iam_proto_v1_project_invitation_change_proto_depIdxs = []int32{
   698  	1, // 0: ntt.iam.v1.ProjectInvitationChange.added:type_name -> ntt.iam.v1.ProjectInvitationChange.Added
   699  	2, // 1: ntt.iam.v1.ProjectInvitationChange.modified:type_name -> ntt.iam.v1.ProjectInvitationChange.Modified
   700  	3, // 2: ntt.iam.v1.ProjectInvitationChange.current:type_name -> ntt.iam.v1.ProjectInvitationChange.Current
   701  	4, // 3: ntt.iam.v1.ProjectInvitationChange.removed:type_name -> ntt.iam.v1.ProjectInvitationChange.Removed
   702  	5, // 4: ntt.iam.v1.ProjectInvitationChange.Added.project_invitation:type_name -> ntt.iam.v1.ProjectInvitation
   703  	5, // 5: ntt.iam.v1.ProjectInvitationChange.Modified.project_invitation:type_name -> ntt.iam.v1.ProjectInvitation
   704  	6, // 6: ntt.iam.v1.ProjectInvitationChange.Modified.field_mask:type_name -> ntt.iam.v1.ProjectInvitation_FieldMask
   705  	5, // 7: ntt.iam.v1.ProjectInvitationChange.Current.project_invitation:type_name -> ntt.iam.v1.ProjectInvitation
   706  	8, // [8:8] is the sub-list for method output_type
   707  	8, // [8:8] is the sub-list for method input_type
   708  	8, // [8:8] is the sub-list for extension type_name
   709  	8, // [8:8] is the sub-list for extension extendee
   710  	0, // [0:8] is the sub-list for field type_name
   711  }
   712  
   713  func init() { edgelq_iam_proto_v1_project_invitation_change_proto_init() }
   714  func edgelq_iam_proto_v1_project_invitation_change_proto_init() {
   715  	if edgelq_iam_proto_v1_project_invitation_change_proto != nil {
   716  		return
   717  	}
   718  	if !protoimpl.UnsafeEnabled {
   719  
   720  		edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   721  			switch v := v.(*ProjectInvitationChange); i {
   722  			case 0:
   723  				return &v.state
   724  			case 1:
   725  				return &v.sizeCache
   726  			case 2:
   727  				return &v.unknownFields
   728  			default:
   729  				return nil
   730  			}
   731  		}
   732  		edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   733  			switch v := v.(*ProjectInvitationChange_Added); i {
   734  			case 0:
   735  				return &v.state
   736  			case 1:
   737  				return &v.sizeCache
   738  			case 2:
   739  				return &v.unknownFields
   740  			default:
   741  				return nil
   742  			}
   743  		}
   744  		edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   745  			switch v := v.(*ProjectInvitationChange_Modified); i {
   746  			case 0:
   747  				return &v.state
   748  			case 1:
   749  				return &v.sizeCache
   750  			case 2:
   751  				return &v.unknownFields
   752  			default:
   753  				return nil
   754  			}
   755  		}
   756  		edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
   757  			switch v := v.(*ProjectInvitationChange_Current); i {
   758  			case 0:
   759  				return &v.state
   760  			case 1:
   761  				return &v.sizeCache
   762  			case 2:
   763  				return &v.unknownFields
   764  			default:
   765  				return nil
   766  			}
   767  		}
   768  		edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
   769  			switch v := v.(*ProjectInvitationChange_Removed); i {
   770  			case 0:
   771  				return &v.state
   772  			case 1:
   773  				return &v.sizeCache
   774  			case 2:
   775  				return &v.unknownFields
   776  			default:
   777  				return nil
   778  			}
   779  		}
   780  	}
   781  
   782  	edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes[0].OneofWrappers = []interface{}{
   783  		(*ProjectInvitationChange_Added_)(nil),
   784  		(*ProjectInvitationChange_Modified_)(nil),
   785  		(*ProjectInvitationChange_Current_)(nil),
   786  		(*ProjectInvitationChange_Removed_)(nil),
   787  	}
   788  	type x struct{}
   789  	out := protoimpl.TypeBuilder{
   790  		File: protoimpl.DescBuilder{
   791  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   792  			RawDescriptor: edgelq_iam_proto_v1_project_invitation_change_proto_rawDesc,
   793  			NumEnums:      0,
   794  			NumMessages:   5,
   795  			NumExtensions: 0,
   796  			NumServices:   0,
   797  		},
   798  		GoTypes:           edgelq_iam_proto_v1_project_invitation_change_proto_goTypes,
   799  		DependencyIndexes: edgelq_iam_proto_v1_project_invitation_change_proto_depIdxs,
   800  		MessageInfos:      edgelq_iam_proto_v1_project_invitation_change_proto_msgTypes,
   801  	}.Build()
   802  	edgelq_iam_proto_v1_project_invitation_change_proto = out.File
   803  	edgelq_iam_proto_v1_project_invitation_change_proto_rawDesc = nil
   804  	edgelq_iam_proto_v1_project_invitation_change_proto_goTypes = nil
   805  	edgelq_iam_proto_v1_project_invitation_change_proto_depIdxs = nil
   806  }