github.com/cloudwan/edgelq-sdk@v1.15.4/iam/resources/v1alpha2/organization_invitation/organization_invitation_change.pb.go (about)

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