Skip to content

Latest commit

 

History

History
264 lines (143 loc) · 6.47 KB

LegacyAddress.md

File metadata and controls

264 lines (143 loc) · 6.47 KB

LegacyAddress

Properties

Name Type Description Notes
Name Pointer to string [optional]
DisplayName Pointer to string [optional]
Company Pointer to string [optional]
Address1 Pointer to string [optional]
Address2 Pointer to string [optional]
City Pointer to string [optional]
State Pointer to string [optional]
Country Pointer to string [optional]
PostCode Pointer to string [optional]

Methods

NewLegacyAddress

func NewLegacyAddress() *LegacyAddress

NewLegacyAddress instantiates a new LegacyAddress 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

NewLegacyAddressWithDefaults

func NewLegacyAddressWithDefaults() *LegacyAddress

NewLegacyAddressWithDefaults instantiates a new LegacyAddress 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

GetName

func (o *LegacyAddress) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *LegacyAddress) GetNameOk() (*string, bool)

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

SetName

func (o *LegacyAddress) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *LegacyAddress) HasName() bool

HasName returns a boolean if a field has been set.

GetDisplayName

func (o *LegacyAddress) GetDisplayName() string

GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.

GetDisplayNameOk

func (o *LegacyAddress) GetDisplayNameOk() (*string, bool)

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

SetDisplayName

func (o *LegacyAddress) SetDisplayName(v string)

SetDisplayName sets DisplayName field to given value.

HasDisplayName

func (o *LegacyAddress) HasDisplayName() bool

HasDisplayName returns a boolean if a field has been set.

GetCompany

func (o *LegacyAddress) GetCompany() string

GetCompany returns the Company field if non-nil, zero value otherwise.

GetCompanyOk

func (o *LegacyAddress) GetCompanyOk() (*string, bool)

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

SetCompany

func (o *LegacyAddress) SetCompany(v string)

SetCompany sets Company field to given value.

HasCompany

func (o *LegacyAddress) HasCompany() bool

HasCompany returns a boolean if a field has been set.

GetAddress1

func (o *LegacyAddress) GetAddress1() string

GetAddress1 returns the Address1 field if non-nil, zero value otherwise.

GetAddress1Ok

func (o *LegacyAddress) GetAddress1Ok() (*string, bool)

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

SetAddress1

func (o *LegacyAddress) SetAddress1(v string)

SetAddress1 sets Address1 field to given value.

HasAddress1

func (o *LegacyAddress) HasAddress1() bool

HasAddress1 returns a boolean if a field has been set.

GetAddress2

func (o *LegacyAddress) GetAddress2() string

GetAddress2 returns the Address2 field if non-nil, zero value otherwise.

GetAddress2Ok

func (o *LegacyAddress) GetAddress2Ok() (*string, bool)

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

SetAddress2

func (o *LegacyAddress) SetAddress2(v string)

SetAddress2 sets Address2 field to given value.

HasAddress2

func (o *LegacyAddress) HasAddress2() bool

HasAddress2 returns a boolean if a field has been set.

GetCity

func (o *LegacyAddress) GetCity() string

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

GetCityOk

func (o *LegacyAddress) 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 *LegacyAddress) SetCity(v string)

SetCity sets City field to given value.

HasCity

func (o *LegacyAddress) HasCity() bool

HasCity returns a boolean if a field has been set.

GetState

func (o *LegacyAddress) GetState() string

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

GetStateOk

func (o *LegacyAddress) 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 *LegacyAddress) SetState(v string)

SetState sets State field to given value.

HasState

func (o *LegacyAddress) HasState() bool

HasState returns a boolean if a field has been set.

GetCountry

func (o *LegacyAddress) GetCountry() string

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

GetCountryOk

func (o *LegacyAddress) 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 *LegacyAddress) SetCountry(v string)

SetCountry sets Country field to given value.

HasCountry

func (o *LegacyAddress) HasCountry() bool

HasCountry returns a boolean if a field has been set.

GetPostCode

func (o *LegacyAddress) GetPostCode() string

GetPostCode returns the PostCode field if non-nil, zero value otherwise.

GetPostCodeOk

func (o *LegacyAddress) GetPostCodeOk() (*string, bool)

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

SetPostCode

func (o *LegacyAddress) SetPostCode(v string)

SetPostCode sets PostCode field to given value.

HasPostCode

func (o *LegacyAddress) HasPostCode() bool

HasPostCode returns a boolean if a field has been set.

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