Skip to content

Latest commit

 

History

History
92 lines (51 loc) · 2.79 KB

File metadata and controls

92 lines (51 loc) · 2.79 KB

AddBoxToOrder

Properties

Name Type Description Notes
BoxItems []AddBoxItemToBox Items contained in this box
TrackingNumber NullableString Tracking number for the box shipment

Methods

NewAddBoxToOrder

func NewAddBoxToOrder(boxItems []AddBoxItemToBox, trackingNumber NullableString, ) *AddBoxToOrder

NewAddBoxToOrder instantiates a new AddBoxToOrder 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

NewAddBoxToOrderWithDefaults

func NewAddBoxToOrderWithDefaults() *AddBoxToOrder

NewAddBoxToOrderWithDefaults instantiates a new AddBoxToOrder 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

GetBoxItems

func (o *AddBoxToOrder) GetBoxItems() []AddBoxItemToBox

GetBoxItems returns the BoxItems field if non-nil, zero value otherwise.

GetBoxItemsOk

func (o *AddBoxToOrder) GetBoxItemsOk() (*[]AddBoxItemToBox, bool)

GetBoxItemsOk returns a tuple with the BoxItems field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetBoxItems

func (o *AddBoxToOrder) SetBoxItems(v []AddBoxItemToBox)

SetBoxItems sets BoxItems field to given value.

SetBoxItemsNil

func (o *AddBoxToOrder) SetBoxItemsNil(b bool)

SetBoxItemsNil sets the value for BoxItems to be an explicit nil

UnsetBoxItems

func (o *AddBoxToOrder) UnsetBoxItems()

UnsetBoxItems ensures that no value is present for BoxItems, not even an explicit nil

GetTrackingNumber

func (o *AddBoxToOrder) GetTrackingNumber() string

GetTrackingNumber returns the TrackingNumber field if non-nil, zero value otherwise.

GetTrackingNumberOk

func (o *AddBoxToOrder) GetTrackingNumberOk() (*string, bool)

GetTrackingNumberOk returns a tuple with the TrackingNumber field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetTrackingNumber

func (o *AddBoxToOrder) SetTrackingNumber(v string)

SetTrackingNumber sets TrackingNumber field to given value.

SetTrackingNumberNil

func (o *AddBoxToOrder) SetTrackingNumberNil(b bool)

SetTrackingNumberNil sets the value for TrackingNumber to be an explicit nil

UnsetTrackingNumber

func (o *AddBoxToOrder) UnsetTrackingNumber()

UnsetTrackingNumber ensures that no value is present for TrackingNumber, not even an explicit nil

[Back to Model list] [Back to API list] [Back to README]