github.com/s7techlab/cckit@v0.10.5/examples/cpaper_extended/schema/state.pb.go (about)

     1  // Code generated by protoc-gen-go. DO NOT EDIT.
     2  // versions:
     3  // 	protoc-gen-go v1.27.1
     4  // 	protoc        (unknown)
     5  // source: cpaper_extended/schema/state.proto
     6  
     7  package schema
     8  
     9  import (
    10  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
    11  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
    12  	timestamppb "google.golang.org/protobuf/types/known/timestamppb"
    13  	reflect "reflect"
    14  	sync "sync"
    15  )
    16  
    17  const (
    18  	// Verify that this generated code is sufficiently up-to-date.
    19  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
    20  	// Verify that runtime/protoimpl is sufficiently up-to-date.
    21  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
    22  )
    23  
    24  type CommercialPaper_State int32
    25  
    26  const (
    27  	CommercialPaper_STATE_ISSUED   CommercialPaper_State = 0
    28  	CommercialPaper_STATE_TRADING  CommercialPaper_State = 1
    29  	CommercialPaper_STATE_REDEEMED CommercialPaper_State = 2
    30  )
    31  
    32  // Enum value maps for CommercialPaper_State.
    33  var (
    34  	CommercialPaper_State_name = map[int32]string{
    35  		0: "STATE_ISSUED",
    36  		1: "STATE_TRADING",
    37  		2: "STATE_REDEEMED",
    38  	}
    39  	CommercialPaper_State_value = map[string]int32{
    40  		"STATE_ISSUED":   0,
    41  		"STATE_TRADING":  1,
    42  		"STATE_REDEEMED": 2,
    43  	}
    44  )
    45  
    46  func (x CommercialPaper_State) Enum() *CommercialPaper_State {
    47  	p := new(CommercialPaper_State)
    48  	*p = x
    49  	return p
    50  }
    51  
    52  func (x CommercialPaper_State) String() string {
    53  	return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
    54  }
    55  
    56  func (CommercialPaper_State) Descriptor() protoreflect.EnumDescriptor {
    57  	return file_cpaper_extended_schema_state_proto_enumTypes[0].Descriptor()
    58  }
    59  
    60  func (CommercialPaper_State) Type() protoreflect.EnumType {
    61  	return &file_cpaper_extended_schema_state_proto_enumTypes[0]
    62  }
    63  
    64  func (x CommercialPaper_State) Number() protoreflect.EnumNumber {
    65  	return protoreflect.EnumNumber(x)
    66  }
    67  
    68  // Deprecated: Use CommercialPaper_State.Descriptor instead.
    69  func (CommercialPaper_State) EnumDescriptor() ([]byte, []int) {
    70  	return file_cpaper_extended_schema_state_proto_rawDescGZIP(), []int{0, 0}
    71  }
    72  
    73  // Commercial Paper state entry
    74  type CommercialPaper struct {
    75  	state         protoimpl.MessageState
    76  	sizeCache     protoimpl.SizeCache
    77  	unknownFields protoimpl.UnknownFields
    78  
    79  	// Issuer and Paper number comprises composite primary key of Commercial paper entry
    80  	Issuer       string                 `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
    81  	PaperNumber  string                 `protobuf:"bytes,2,opt,name=paper_number,json=paperNumber,proto3" json:"paper_number,omitempty"`
    82  	Owner        string                 `protobuf:"bytes,3,opt,name=owner,proto3" json:"owner,omitempty"`
    83  	IssueDate    *timestamppb.Timestamp `protobuf:"bytes,4,opt,name=issue_date,json=issueDate,proto3" json:"issue_date,omitempty"`
    84  	MaturityDate *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=maturity_date,json=maturityDate,proto3" json:"maturity_date,omitempty"`
    85  	FaceValue    int32                  `protobuf:"varint,6,opt,name=face_value,json=faceValue,proto3" json:"face_value,omitempty"`
    86  	State        CommercialPaper_State  `protobuf:"varint,7,opt,name=state,proto3,enum=examples.cpaper_extended.schema.CommercialPaper_State" json:"state,omitempty"`
    87  	// Additional unique field for entry
    88  	ExternalId string `protobuf:"bytes,8,opt,name=external_id,json=externalId,proto3" json:"external_id,omitempty"`
    89  }
    90  
    91  func (x *CommercialPaper) Reset() {
    92  	*x = CommercialPaper{}
    93  	if protoimpl.UnsafeEnabled {
    94  		mi := &file_cpaper_extended_schema_state_proto_msgTypes[0]
    95  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    96  		ms.StoreMessageInfo(mi)
    97  	}
    98  }
    99  
   100  func (x *CommercialPaper) String() string {
   101  	return protoimpl.X.MessageStringOf(x)
   102  }
   103  
   104  func (*CommercialPaper) ProtoMessage() {}
   105  
   106  func (x *CommercialPaper) ProtoReflect() protoreflect.Message {
   107  	mi := &file_cpaper_extended_schema_state_proto_msgTypes[0]
   108  	if protoimpl.UnsafeEnabled && x != nil {
   109  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   110  		if ms.LoadMessageInfo() == nil {
   111  			ms.StoreMessageInfo(mi)
   112  		}
   113  		return ms
   114  	}
   115  	return mi.MessageOf(x)
   116  }
   117  
   118  // Deprecated: Use CommercialPaper.ProtoReflect.Descriptor instead.
   119  func (*CommercialPaper) Descriptor() ([]byte, []int) {
   120  	return file_cpaper_extended_schema_state_proto_rawDescGZIP(), []int{0}
   121  }
   122  
   123  func (x *CommercialPaper) GetIssuer() string {
   124  	if x != nil {
   125  		return x.Issuer
   126  	}
   127  	return ""
   128  }
   129  
   130  func (x *CommercialPaper) GetPaperNumber() string {
   131  	if x != nil {
   132  		return x.PaperNumber
   133  	}
   134  	return ""
   135  }
   136  
   137  func (x *CommercialPaper) GetOwner() string {
   138  	if x != nil {
   139  		return x.Owner
   140  	}
   141  	return ""
   142  }
   143  
   144  func (x *CommercialPaper) GetIssueDate() *timestamppb.Timestamp {
   145  	if x != nil {
   146  		return x.IssueDate
   147  	}
   148  	return nil
   149  }
   150  
   151  func (x *CommercialPaper) GetMaturityDate() *timestamppb.Timestamp {
   152  	if x != nil {
   153  		return x.MaturityDate
   154  	}
   155  	return nil
   156  }
   157  
   158  func (x *CommercialPaper) GetFaceValue() int32 {
   159  	if x != nil {
   160  		return x.FaceValue
   161  	}
   162  	return 0
   163  }
   164  
   165  func (x *CommercialPaper) GetState() CommercialPaper_State {
   166  	if x != nil {
   167  		return x.State
   168  	}
   169  	return CommercialPaper_STATE_ISSUED
   170  }
   171  
   172  func (x *CommercialPaper) GetExternalId() string {
   173  	if x != nil {
   174  		return x.ExternalId
   175  	}
   176  	return ""
   177  }
   178  
   179  // CommercialPaperId identifier part
   180  type CommercialPaperId struct {
   181  	state         protoimpl.MessageState
   182  	sizeCache     protoimpl.SizeCache
   183  	unknownFields protoimpl.UnknownFields
   184  
   185  	Issuer      string `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
   186  	PaperNumber string `protobuf:"bytes,2,opt,name=paper_number,json=paperNumber,proto3" json:"paper_number,omitempty"`
   187  }
   188  
   189  func (x *CommercialPaperId) Reset() {
   190  	*x = CommercialPaperId{}
   191  	if protoimpl.UnsafeEnabled {
   192  		mi := &file_cpaper_extended_schema_state_proto_msgTypes[1]
   193  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   194  		ms.StoreMessageInfo(mi)
   195  	}
   196  }
   197  
   198  func (x *CommercialPaperId) String() string {
   199  	return protoimpl.X.MessageStringOf(x)
   200  }
   201  
   202  func (*CommercialPaperId) ProtoMessage() {}
   203  
   204  func (x *CommercialPaperId) ProtoReflect() protoreflect.Message {
   205  	mi := &file_cpaper_extended_schema_state_proto_msgTypes[1]
   206  	if protoimpl.UnsafeEnabled && x != nil {
   207  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   208  		if ms.LoadMessageInfo() == nil {
   209  			ms.StoreMessageInfo(mi)
   210  		}
   211  		return ms
   212  	}
   213  	return mi.MessageOf(x)
   214  }
   215  
   216  // Deprecated: Use CommercialPaperId.ProtoReflect.Descriptor instead.
   217  func (*CommercialPaperId) Descriptor() ([]byte, []int) {
   218  	return file_cpaper_extended_schema_state_proto_rawDescGZIP(), []int{1}
   219  }
   220  
   221  func (x *CommercialPaperId) GetIssuer() string {
   222  	if x != nil {
   223  		return x.Issuer
   224  	}
   225  	return ""
   226  }
   227  
   228  func (x *CommercialPaperId) GetPaperNumber() string {
   229  	if x != nil {
   230  		return x.PaperNumber
   231  	}
   232  	return ""
   233  }
   234  
   235  // Container for returning multiple entities
   236  type CommercialPaperList struct {
   237  	state         protoimpl.MessageState
   238  	sizeCache     protoimpl.SizeCache
   239  	unknownFields protoimpl.UnknownFields
   240  
   241  	Items []*CommercialPaper `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
   242  }
   243  
   244  func (x *CommercialPaperList) Reset() {
   245  	*x = CommercialPaperList{}
   246  	if protoimpl.UnsafeEnabled {
   247  		mi := &file_cpaper_extended_schema_state_proto_msgTypes[2]
   248  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   249  		ms.StoreMessageInfo(mi)
   250  	}
   251  }
   252  
   253  func (x *CommercialPaperList) String() string {
   254  	return protoimpl.X.MessageStringOf(x)
   255  }
   256  
   257  func (*CommercialPaperList) ProtoMessage() {}
   258  
   259  func (x *CommercialPaperList) ProtoReflect() protoreflect.Message {
   260  	mi := &file_cpaper_extended_schema_state_proto_msgTypes[2]
   261  	if protoimpl.UnsafeEnabled && x != nil {
   262  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
   263  		if ms.LoadMessageInfo() == nil {
   264  			ms.StoreMessageInfo(mi)
   265  		}
   266  		return ms
   267  	}
   268  	return mi.MessageOf(x)
   269  }
   270  
   271  // Deprecated: Use CommercialPaperList.ProtoReflect.Descriptor instead.
   272  func (*CommercialPaperList) Descriptor() ([]byte, []int) {
   273  	return file_cpaper_extended_schema_state_proto_rawDescGZIP(), []int{2}
   274  }
   275  
   276  func (x *CommercialPaperList) GetItems() []*CommercialPaper {
   277  	if x != nil {
   278  		return x.Items
   279  	}
   280  	return nil
   281  }
   282  
   283  var File_cpaper_extended_schema_state_proto protoreflect.FileDescriptor
   284  
   285  var file_cpaper_extended_schema_state_proto_rawDesc = []byte{
   286  	0x0a, 0x22, 0x63, 0x70, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65,
   287  	0x64, 0x2f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70,
   288  	0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x63,
   289  	0x70, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x2e, 0x73,
   290  	0x63, 0x68, 0x65, 0x6d, 0x61, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72,
   291  	0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
   292  	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xae, 0x03, 0x0a, 0x0f, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
   293  	0x72, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x70, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
   294  	0x73, 0x75, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75,
   295  	0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x62,
   296  	0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x70, 0x65, 0x72, 0x4e,
   297  	0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x03,
   298  	0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x39, 0x0a, 0x0a, 0x69,
   299  	0x73, 0x73, 0x75, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
   300  	0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
   301  	0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x69, 0x73, 0x73,
   302  	0x75, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x6d, 0x61, 0x74, 0x75, 0x72, 0x69,
   303  	0x74, 0x79, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
   304  	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
   305  	0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0c, 0x6d, 0x61, 0x74, 0x75, 0x72,
   306  	0x69, 0x74, 0x79, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x61, 0x63, 0x65, 0x5f,
   307  	0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x66, 0x61, 0x63,
   308  	0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x4c, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
   309  	0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73,
   310  	0x2e, 0x63, 0x70, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64,
   311  	0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69,
   312  	0x61, 0x6c, 0x50, 0x61, 0x70, 0x65, 0x72, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73,
   313  	0x74, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
   314  	0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x72,
   315  	0x6e, 0x61, 0x6c, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x10,
   316  	0x0a, 0x0c, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x53, 0x53, 0x55, 0x45, 0x44, 0x10, 0x00,
   317  	0x12, 0x11, 0x0a, 0x0d, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x54, 0x52, 0x41, 0x44, 0x49, 0x4e,
   318  	0x47, 0x10, 0x01, 0x12, 0x12, 0x0a, 0x0e, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45, 0x44,
   319  	0x45, 0x45, 0x4d, 0x45, 0x44, 0x10, 0x02, 0x22, 0x4e, 0x0a, 0x11, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
   320  	0x72, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x70, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
   321  	0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x73,
   322  	0x73, 0x75, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x70, 0x65, 0x72, 0x5f, 0x6e, 0x75,
   323  	0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x61, 0x70, 0x65,
   324  	0x72, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x5d, 0x0a, 0x13, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
   325  	0x72, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x70, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x46,
   326  	0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e,
   327  	0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2e, 0x63, 0x70, 0x61, 0x70, 0x65, 0x72, 0x5f,
   328  	0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x2e, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x2e,
   329  	0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x72, 0x63, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x70, 0x65, 0x72, 0x52,
   330  	0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x42, 0x3c, 0x5a, 0x3a, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62,
   331  	0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x37, 0x74, 0x65, 0x63, 0x68, 0x6c, 0x61, 0x62, 0x2f, 0x63,
   332  	0x63, 0x6b, 0x69, 0x74, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x73, 0x2f, 0x63, 0x70,
   333  	0x61, 0x70, 0x65, 0x72, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x2f, 0x73, 0x63,
   334  	0x68, 0x65, 0x6d, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
   335  }
   336  
   337  var (
   338  	file_cpaper_extended_schema_state_proto_rawDescOnce sync.Once
   339  	file_cpaper_extended_schema_state_proto_rawDescData = file_cpaper_extended_schema_state_proto_rawDesc
   340  )
   341  
   342  func file_cpaper_extended_schema_state_proto_rawDescGZIP() []byte {
   343  	file_cpaper_extended_schema_state_proto_rawDescOnce.Do(func() {
   344  		file_cpaper_extended_schema_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_cpaper_extended_schema_state_proto_rawDescData)
   345  	})
   346  	return file_cpaper_extended_schema_state_proto_rawDescData
   347  }
   348  
   349  var file_cpaper_extended_schema_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
   350  var file_cpaper_extended_schema_state_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
   351  var file_cpaper_extended_schema_state_proto_goTypes = []interface{}{
   352  	(CommercialPaper_State)(0),    // 0: examples.cpaper_extended.schema.CommercialPaper.State
   353  	(*CommercialPaper)(nil),       // 1: examples.cpaper_extended.schema.CommercialPaper
   354  	(*CommercialPaperId)(nil),     // 2: examples.cpaper_extended.schema.CommercialPaperId
   355  	(*CommercialPaperList)(nil),   // 3: examples.cpaper_extended.schema.CommercialPaperList
   356  	(*timestamppb.Timestamp)(nil), // 4: google.protobuf.Timestamp
   357  }
   358  var file_cpaper_extended_schema_state_proto_depIdxs = []int32{
   359  	4, // 0: examples.cpaper_extended.schema.CommercialPaper.issue_date:type_name -> google.protobuf.Timestamp
   360  	4, // 1: examples.cpaper_extended.schema.CommercialPaper.maturity_date:type_name -> google.protobuf.Timestamp
   361  	0, // 2: examples.cpaper_extended.schema.CommercialPaper.state:type_name -> examples.cpaper_extended.schema.CommercialPaper.State
   362  	1, // 3: examples.cpaper_extended.schema.CommercialPaperList.items:type_name -> examples.cpaper_extended.schema.CommercialPaper
   363  	4, // [4:4] is the sub-list for method output_type
   364  	4, // [4:4] is the sub-list for method input_type
   365  	4, // [4:4] is the sub-list for extension type_name
   366  	4, // [4:4] is the sub-list for extension extendee
   367  	0, // [0:4] is the sub-list for field type_name
   368  }
   369  
   370  func init() { file_cpaper_extended_schema_state_proto_init() }
   371  func file_cpaper_extended_schema_state_proto_init() {
   372  	if File_cpaper_extended_schema_state_proto != nil {
   373  		return
   374  	}
   375  	if !protoimpl.UnsafeEnabled {
   376  		file_cpaper_extended_schema_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
   377  			switch v := v.(*CommercialPaper); i {
   378  			case 0:
   379  				return &v.state
   380  			case 1:
   381  				return &v.sizeCache
   382  			case 2:
   383  				return &v.unknownFields
   384  			default:
   385  				return nil
   386  			}
   387  		}
   388  		file_cpaper_extended_schema_state_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
   389  			switch v := v.(*CommercialPaperId); i {
   390  			case 0:
   391  				return &v.state
   392  			case 1:
   393  				return &v.sizeCache
   394  			case 2:
   395  				return &v.unknownFields
   396  			default:
   397  				return nil
   398  			}
   399  		}
   400  		file_cpaper_extended_schema_state_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
   401  			switch v := v.(*CommercialPaperList); i {
   402  			case 0:
   403  				return &v.state
   404  			case 1:
   405  				return &v.sizeCache
   406  			case 2:
   407  				return &v.unknownFields
   408  			default:
   409  				return nil
   410  			}
   411  		}
   412  	}
   413  	type x struct{}
   414  	out := protoimpl.TypeBuilder{
   415  		File: protoimpl.DescBuilder{
   416  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
   417  			RawDescriptor: file_cpaper_extended_schema_state_proto_rawDesc,
   418  			NumEnums:      1,
   419  			NumMessages:   3,
   420  			NumExtensions: 0,
   421  			NumServices:   0,
   422  		},
   423  		GoTypes:           file_cpaper_extended_schema_state_proto_goTypes,
   424  		DependencyIndexes: file_cpaper_extended_schema_state_proto_depIdxs,
   425  		EnumInfos:         file_cpaper_extended_schema_state_proto_enumTypes,
   426  		MessageInfos:      file_cpaper_extended_schema_state_proto_msgTypes,
   427  	}.Build()
   428  	File_cpaper_extended_schema_state_proto = out.File
   429  	file_cpaper_extended_schema_state_proto_rawDesc = nil
   430  	file_cpaper_extended_schema_state_proto_goTypes = nil
   431  	file_cpaper_extended_schema_state_proto_depIdxs = nil
   432  }