Documentation ¶
Index ¶
- type Inventory
- func (*Inventory) Descriptor() ([]byte, []int)
- func (m *Inventory) GetOnBackorder() string
- func (m *Inventory) GetProductCode() string
- func (m *Inventory) GetPurchaseOrders() []*Inventory_PO
- func (m *Inventory) GetRolls() []*Inventory_Roll
- func (m *Inventory) GetTotal() string
- func (m *Inventory) GetTotalOnPO() string
- func (*Inventory) ProtoMessage()
- func (m *Inventory) Reset()
- func (m *Inventory) String() string
- func (m *Inventory) XXX_DiscardUnknown()
- func (m *Inventory) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Inventory) XXX_Merge(src proto.Message)
- func (m *Inventory) XXX_Size() int
- func (m *Inventory) XXX_Unmarshal(b []byte) error
- type Inventory_PO
- func (*Inventory_PO) Descriptor() ([]byte, []int)
- func (m *Inventory_PO) GetAmount() string
- func (m *Inventory_PO) GetETA() string
- func (*Inventory_PO) ProtoMessage()
- func (m *Inventory_PO) Reset()
- func (m *Inventory_PO) String() string
- func (m *Inventory_PO) XXX_DiscardUnknown()
- func (m *Inventory_PO) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Inventory_PO) XXX_Merge(src proto.Message)
- func (m *Inventory_PO) XXX_Size() int
- func (m *Inventory_PO) XXX_Unmarshal(b []byte) error
- type Inventory_Roll
- func (*Inventory_Roll) Descriptor() ([]byte, []int)
- func (m *Inventory_Roll) GetID() string
- func (m *Inventory_Roll) GetQuantity() string
- func (*Inventory_Roll) ProtoMessage()
- func (m *Inventory_Roll) Reset()
- func (m *Inventory_Roll) String() string
- func (m *Inventory_Roll) XXX_DiscardUnknown()
- func (m *Inventory_Roll) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (m *Inventory_Roll) XXX_Merge(src proto.Message)
- func (m *Inventory_Roll) XXX_Size() int
- func (m *Inventory_Roll) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Inventory ¶
type Inventory struct { // @gotags: dynamo:"FabricProductCode" ProductCode string `protobuf:"bytes,1,opt,name=ProductCode,proto3" json:"ProductCode,omitempty"` // @gotags: dynamo:"InventoryRolls" Rolls []*Inventory_Roll `protobuf:"bytes,2,rep,name=Rolls,proto3" json:"Rolls,omitempty"` // @gotags: dynamo:"InventoryTotal" Total string `protobuf:"bytes,3,opt,name=Total,proto3" json:"Total,omitempty"` // @gotags: dynamo:"InventoryPO" PurchaseOrders []*Inventory_PO `protobuf:"bytes,4,rep,name=PurchaseOrders,proto3" json:"PurchaseOrders,omitempty"` // @gotags: dynamo:"InventoryTotalOnPO" TotalOnPO string `protobuf:"bytes,5,opt,name=TotalOnPO,proto3" json:"TotalOnPO,omitempty"` // @gotags: dynamo:"InventoryOnBackorder" OnBackorder string `protobuf:"bytes,6,opt,name=OnBackorder,proto3" json:"OnBackorder,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Inventory) Descriptor ¶
func (*Inventory) GetOnBackorder ¶
func (*Inventory) GetProductCode ¶
func (*Inventory) GetPurchaseOrders ¶
func (m *Inventory) GetPurchaseOrders() []*Inventory_PO
func (*Inventory) GetRolls ¶
func (m *Inventory) GetRolls() []*Inventory_Roll
func (*Inventory) GetTotalOnPO ¶
func (*Inventory) ProtoMessage ¶
func (*Inventory) ProtoMessage()
func (*Inventory) XXX_DiscardUnknown ¶
func (m *Inventory) XXX_DiscardUnknown()
func (*Inventory) XXX_Marshal ¶
func (*Inventory) XXX_Unmarshal ¶
type Inventory_PO ¶
type Inventory_PO struct { // @gotags: dynamo:"InventoryPOETA" ETA string `protobuf:"bytes,1,opt,name=ETA,proto3" json:"ETA,omitempty"` // @gotags: dynamo:"InventoryPOAmount" Amount string `protobuf:"bytes,2,opt,name=Amount,proto3" json:"Amount,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Inventory_PO) Descriptor ¶
func (*Inventory_PO) Descriptor() ([]byte, []int)
func (*Inventory_PO) GetAmount ¶
func (m *Inventory_PO) GetAmount() string
func (*Inventory_PO) GetETA ¶
func (m *Inventory_PO) GetETA() string
func (*Inventory_PO) ProtoMessage ¶
func (*Inventory_PO) ProtoMessage()
func (*Inventory_PO) Reset ¶
func (m *Inventory_PO) Reset()
func (*Inventory_PO) String ¶
func (m *Inventory_PO) String() string
func (*Inventory_PO) XXX_DiscardUnknown ¶
func (m *Inventory_PO) XXX_DiscardUnknown()
func (*Inventory_PO) XXX_Marshal ¶
func (m *Inventory_PO) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*Inventory_PO) XXX_Merge ¶
func (m *Inventory_PO) XXX_Merge(src proto.Message)
func (*Inventory_PO) XXX_Size ¶
func (m *Inventory_PO) XXX_Size() int
func (*Inventory_PO) XXX_Unmarshal ¶
func (m *Inventory_PO) XXX_Unmarshal(b []byte) error
type Inventory_Roll ¶
type Inventory_Roll struct { // @gotags: dynamo:"InventoryRollID" ID string `protobuf:"bytes,1,opt,name=ID,proto3" json:"ID,omitempty"` // @gotags: dynamo:"InventoryRollQuantity" Quantity string `protobuf:"bytes,2,opt,name=Quantity,proto3" json:"Quantity,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Inventory_Roll) Descriptor ¶
func (*Inventory_Roll) Descriptor() ([]byte, []int)
func (*Inventory_Roll) GetID ¶
func (m *Inventory_Roll) GetID() string
func (*Inventory_Roll) GetQuantity ¶
func (m *Inventory_Roll) GetQuantity() string
func (*Inventory_Roll) ProtoMessage ¶
func (*Inventory_Roll) ProtoMessage()
func (*Inventory_Roll) Reset ¶
func (m *Inventory_Roll) Reset()
func (*Inventory_Roll) String ¶
func (m *Inventory_Roll) String() string
func (*Inventory_Roll) XXX_DiscardUnknown ¶
func (m *Inventory_Roll) XXX_DiscardUnknown()
func (*Inventory_Roll) XXX_Marshal ¶
func (m *Inventory_Roll) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*Inventory_Roll) XXX_Merge ¶
func (m *Inventory_Roll) XXX_Merge(src proto.Message)
func (*Inventory_Roll) XXX_Size ¶
func (m *Inventory_Roll) XXX_Size() int
func (*Inventory_Roll) XXX_Unmarshal ¶
func (m *Inventory_Roll) XXX_Unmarshal(b []byte) error
Click to show internal directories.
Click to hide internal directories.