Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 2.99 KB

OutgoingPhoneNumberDetails.md

File metadata and controls

103 lines (56 loc) · 2.99 KB

OutgoingPhoneNumberDetails

Properties

Name Type Description Notes
Id int32
PhoneNumber Pointer to string [optional]
Description Pointer to string [optional]

Methods

NewOutgoingPhoneNumberDetails

func NewOutgoingPhoneNumberDetails(id int32, ) *OutgoingPhoneNumberDetails

NewOutgoingPhoneNumberDetails instantiates a new OutgoingPhoneNumberDetails 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

NewOutgoingPhoneNumberDetailsWithDefaults

func NewOutgoingPhoneNumberDetailsWithDefaults() *OutgoingPhoneNumberDetails

NewOutgoingPhoneNumberDetailsWithDefaults instantiates a new OutgoingPhoneNumberDetails 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

GetId

func (o *OutgoingPhoneNumberDetails) GetId() int32

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *OutgoingPhoneNumberDetails) GetIdOk() (*int32, 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.

SetId

func (o *OutgoingPhoneNumberDetails) SetId(v int32)

SetId sets Id field to given value.

GetPhoneNumber

func (o *OutgoingPhoneNumberDetails) GetPhoneNumber() string

GetPhoneNumber returns the PhoneNumber field if non-nil, zero value otherwise.

GetPhoneNumberOk

func (o *OutgoingPhoneNumberDetails) GetPhoneNumberOk() (*string, bool)

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

SetPhoneNumber

func (o *OutgoingPhoneNumberDetails) SetPhoneNumber(v string)

SetPhoneNumber sets PhoneNumber field to given value.

HasPhoneNumber

func (o *OutgoingPhoneNumberDetails) HasPhoneNumber() bool

HasPhoneNumber returns a boolean if a field has been set.

GetDescription

func (o *OutgoingPhoneNumberDetails) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *OutgoingPhoneNumberDetails) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *OutgoingPhoneNumberDetails) SetDescription(v string)

SetDescription sets Description field to given value.

HasDescription

func (o *OutgoingPhoneNumberDetails) HasDescription() bool

HasDescription returns a boolean if a field has been set.

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