Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.75 KB

ProductVolume.md

File metadata and controls

108 lines (59 loc) · 2.75 KB

ProductVolume

Properties

Name Type Description Notes
Length Pointer to int64 Product Length [optional]
Width Pointer to int64 Product Width [optional]
Height Pointer to int64 Product Height [optional]

Methods

NewProductVolume

func NewProductVolume() *ProductVolume

NewProductVolume instantiates a new ProductVolume 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

NewProductVolumeWithDefaults

func NewProductVolumeWithDefaults() *ProductVolume

NewProductVolumeWithDefaults instantiates a new ProductVolume 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

GetLength

func (o *ProductVolume) GetLength() int64

GetLength returns the Length field if non-nil, zero value otherwise.

GetLengthOk

func (o *ProductVolume) GetLengthOk() (*int64, bool)

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

SetLength

func (o *ProductVolume) SetLength(v int64)

SetLength sets Length field to given value.

HasLength

func (o *ProductVolume) HasLength() bool

HasLength returns a boolean if a field has been set.

GetWidth

func (o *ProductVolume) GetWidth() int64

GetWidth returns the Width field if non-nil, zero value otherwise.

GetWidthOk

func (o *ProductVolume) GetWidthOk() (*int64, bool)

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

SetWidth

func (o *ProductVolume) SetWidth(v int64)

SetWidth sets Width field to given value.

HasWidth

func (o *ProductVolume) HasWidth() bool

HasWidth returns a boolean if a field has been set.

GetHeight

func (o *ProductVolume) GetHeight() int64

GetHeight returns the Height field if non-nil, zero value otherwise.

GetHeightOk

func (o *ProductVolume) GetHeightOk() (*int64, bool)

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

SetHeight

func (o *ProductVolume) SetHeight(v int64)

SetHeight sets Height field to given value.

HasHeight

func (o *ProductVolume) HasHeight() bool

HasHeight returns a boolean if a field has been set.

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