Skip to content

Latest commit

 

History

History
282 lines (157 loc) · 7.04 KB

File metadata and controls

282 lines (157 loc) · 7.04 KB

CompleteAddress

Properties

Name Type Description Notes
City Pointer to NullableString [optional]
Country Pointer to NullableString [optional]
Line1 Pointer to NullableString [optional]
Line2 Pointer to NullableString [optional]
Line3 Pointer to NullableString [optional]
State Pointer to NullableString [optional]
ZipCode Pointer to NullableString [optional]

Methods

NewCompleteAddress

func NewCompleteAddress() *CompleteAddress

NewCompleteAddress instantiates a new CompleteAddress 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

NewCompleteAddressWithDefaults

func NewCompleteAddressWithDefaults() *CompleteAddress

NewCompleteAddressWithDefaults instantiates a new CompleteAddress 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

GetCity

func (o *CompleteAddress) GetCity() string

GetCity returns the City field if non-nil, zero value otherwise.

GetCityOk

func (o *CompleteAddress) GetCityOk() (*string, bool)

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

SetCity

func (o *CompleteAddress) SetCity(v string)

SetCity sets City field to given value.

HasCity

func (o *CompleteAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

SetCityNil

func (o *CompleteAddress) SetCityNil(b bool)

SetCityNil sets the value for City to be an explicit nil

UnsetCity

func (o *CompleteAddress) UnsetCity()

UnsetCity ensures that no value is present for City, not even an explicit nil

GetCountry

func (o *CompleteAddress) GetCountry() string

GetCountry returns the Country field if non-nil, zero value otherwise.

GetCountryOk

func (o *CompleteAddress) GetCountryOk() (*string, bool)

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

SetCountry

func (o *CompleteAddress) SetCountry(v string)

SetCountry sets Country field to given value.

HasCountry

func (o *CompleteAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

SetCountryNil

func (o *CompleteAddress) SetCountryNil(b bool)

SetCountryNil sets the value for Country to be an explicit nil

UnsetCountry

func (o *CompleteAddress) UnsetCountry()

UnsetCountry ensures that no value is present for Country, not even an explicit nil

GetLine1

func (o *CompleteAddress) GetLine1() string

GetLine1 returns the Line1 field if non-nil, zero value otherwise.

GetLine1Ok

func (o *CompleteAddress) GetLine1Ok() (*string, bool)

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

SetLine1

func (o *CompleteAddress) SetLine1(v string)

SetLine1 sets Line1 field to given value.

HasLine1

func (o *CompleteAddress) HasLine1() bool

HasLine1 returns a boolean if a field has been set.

SetLine1Nil

func (o *CompleteAddress) SetLine1Nil(b bool)

SetLine1Nil sets the value for Line1 to be an explicit nil

UnsetLine1

func (o *CompleteAddress) UnsetLine1()

UnsetLine1 ensures that no value is present for Line1, not even an explicit nil

GetLine2

func (o *CompleteAddress) GetLine2() string

GetLine2 returns the Line2 field if non-nil, zero value otherwise.

GetLine2Ok

func (o *CompleteAddress) GetLine2Ok() (*string, bool)

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

SetLine2

func (o *CompleteAddress) SetLine2(v string)

SetLine2 sets Line2 field to given value.

HasLine2

func (o *CompleteAddress) HasLine2() bool

HasLine2 returns a boolean if a field has been set.

SetLine2Nil

func (o *CompleteAddress) SetLine2Nil(b bool)

SetLine2Nil sets the value for Line2 to be an explicit nil

UnsetLine2

func (o *CompleteAddress) UnsetLine2()

UnsetLine2 ensures that no value is present for Line2, not even an explicit nil

GetLine3

func (o *CompleteAddress) GetLine3() string

GetLine3 returns the Line3 field if non-nil, zero value otherwise.

GetLine3Ok

func (o *CompleteAddress) GetLine3Ok() (*string, bool)

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

SetLine3

func (o *CompleteAddress) SetLine3(v string)

SetLine3 sets Line3 field to given value.

HasLine3

func (o *CompleteAddress) HasLine3() bool

HasLine3 returns a boolean if a field has been set.

SetLine3Nil

func (o *CompleteAddress) SetLine3Nil(b bool)

SetLine3Nil sets the value for Line3 to be an explicit nil

UnsetLine3

func (o *CompleteAddress) UnsetLine3()

UnsetLine3 ensures that no value is present for Line3, not even an explicit nil

GetState

func (o *CompleteAddress) GetState() string

GetState returns the State field if non-nil, zero value otherwise.

GetStateOk

func (o *CompleteAddress) GetStateOk() (*string, bool)

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

SetState

func (o *CompleteAddress) SetState(v string)

SetState sets State field to given value.

HasState

func (o *CompleteAddress) HasState() bool

HasState returns a boolean if a field has been set.

SetStateNil

func (o *CompleteAddress) SetStateNil(b bool)

SetStateNil sets the value for State to be an explicit nil

UnsetState

func (o *CompleteAddress) UnsetState()

UnsetState ensures that no value is present for State, not even an explicit nil

GetZipCode

func (o *CompleteAddress) GetZipCode() string

GetZipCode returns the ZipCode field if non-nil, zero value otherwise.

GetZipCodeOk

func (o *CompleteAddress) GetZipCodeOk() (*string, bool)

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

SetZipCode

func (o *CompleteAddress) SetZipCode(v string)

SetZipCode sets ZipCode field to given value.

HasZipCode

func (o *CompleteAddress) HasZipCode() bool

HasZipCode returns a boolean if a field has been set.

SetZipCodeNil

func (o *CompleteAddress) SetZipCodeNil(b bool)

SetZipCodeNil sets the value for ZipCode to be an explicit nil

UnsetZipCode

func (o *CompleteAddress) UnsetZipCode()

UnsetZipCode ensures that no value is present for ZipCode, not even an explicit nil

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