Name | Type | Description | Notes |
---|---|---|---|
Id | string | The item's externalID in the partner system. | |
GrabItemID | string | The item's ID in Grab system. Partner can use this field in the `EditOrder` endpoint. | |
Quantity | int32 | The number of the item ordered. | |
Price | int64 | The price for a single item along with its associated modifiers in minor unit and tax-inclusive. ``` price = Item price(tax inclusive) + Modifier price(tax inclusive) | (22411.06)+(1651.06)=2550 |
Tax | Pointer to int64 | Tax in minor format for a single item along with its associated modifiers. `0` if tax configuration is absent. Refer to FAQs for more details about tax. ``` tax = Item tax + Modifier tax | (22410.06)+(1650.06)=144 |
Specifications | Pointer to string | An extra note for the merchant. Empty if no note from consumer. | [optional] |
OutOfStockInstruction | Pointer to NullableOutOfStockInstruction | [optional] | |
Modifiers | Pointer to []OrderItemModifier | An array of JSON objects modifiers. | [optional] |
func NewOrderItem(id string, grabItemID string, quantity int32, price int64, ) *OrderItem
NewOrderItem instantiates a new OrderItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewOrderItemWithDefaults() *OrderItem
NewOrderItemWithDefaults instantiates a new OrderItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *OrderItem) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *OrderItem) GetIdOk() (*string, bool)
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetId(v string)
SetId sets Id field to given value.
func (o *OrderItem) GetGrabItemID() string
GetGrabItemID returns the GrabItemID field if non-nil, zero value otherwise.
func (o *OrderItem) GetGrabItemIDOk() (*string, bool)
GetGrabItemIDOk returns a tuple with the GrabItemID field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetGrabItemID(v string)
SetGrabItemID sets GrabItemID field to given value.
func (o *OrderItem) GetQuantity() int32
GetQuantity returns the Quantity field if non-nil, zero value otherwise.
func (o *OrderItem) GetQuantityOk() (*int32, bool)
GetQuantityOk returns a tuple with the Quantity field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetQuantity(v int32)
SetQuantity sets Quantity field to given value.
func (o *OrderItem) GetPrice() int64
GetPrice returns the Price field if non-nil, zero value otherwise.
func (o *OrderItem) GetPriceOk() (*int64, bool)
GetPriceOk returns a tuple with the Price field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetPrice(v int64)
SetPrice sets Price field to given value.
func (o *OrderItem) GetTax() int64
GetTax returns the Tax field if non-nil, zero value otherwise.
func (o *OrderItem) GetTaxOk() (*int64, bool)
GetTaxOk returns a tuple with the Tax field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetTax(v int64)
SetTax sets Tax field to given value.
func (o *OrderItem) HasTax() bool
HasTax returns a boolean if a field has been set.
func (o *OrderItem) GetSpecifications() string
GetSpecifications returns the Specifications field if non-nil, zero value otherwise.
func (o *OrderItem) GetSpecificationsOk() (*string, bool)
GetSpecificationsOk returns a tuple with the Specifications field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetSpecifications(v string)
SetSpecifications sets Specifications field to given value.
func (o *OrderItem) HasSpecifications() bool
HasSpecifications returns a boolean if a field has been set.
func (o *OrderItem) GetOutOfStockInstruction() OutOfStockInstruction
GetOutOfStockInstruction returns the OutOfStockInstruction field if non-nil, zero value otherwise.
func (o *OrderItem) GetOutOfStockInstructionOk() (*OutOfStockInstruction, bool)
GetOutOfStockInstructionOk returns a tuple with the OutOfStockInstruction field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetOutOfStockInstruction(v OutOfStockInstruction)
SetOutOfStockInstruction sets OutOfStockInstruction field to given value.
func (o *OrderItem) HasOutOfStockInstruction() bool
HasOutOfStockInstruction returns a boolean if a field has been set.
func (o *OrderItem) SetOutOfStockInstructionNil(b bool)
SetOutOfStockInstructionNil sets the value for OutOfStockInstruction to be an explicit nil
func (o *OrderItem) UnsetOutOfStockInstruction()
UnsetOutOfStockInstruction ensures that no value is present for OutOfStockInstruction, not even an explicit nil
func (o *OrderItem) GetModifiers() []OrderItemModifier
GetModifiers returns the Modifiers field if non-nil, zero value otherwise.
func (o *OrderItem) GetModifiersOk() (*[]OrderItemModifier, bool)
GetModifiersOk returns a tuple with the Modifiers field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *OrderItem) SetModifiers(v []OrderItemModifier)
SetModifiers sets Modifiers field to given value.
func (o *OrderItem) HasModifiers() bool
HasModifiers returns a boolean if a field has been set.