Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 2.6 KB

File metadata and controls

108 lines (59 loc) · 2.6 KB

Subscriber

Properties

Name Type Description Notes
Id Pointer to string [optional]
Type Pointer to string [optional]
SourceId Pointer to string [optional]

Methods

NewSubscriber

func NewSubscriber() *Subscriber

NewSubscriber instantiates a new Subscriber 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

NewSubscriberWithDefaults

func NewSubscriberWithDefaults() *Subscriber

NewSubscriberWithDefaults instantiates a new Subscriber 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 *Subscriber) GetId() string

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

GetIdOk

func (o *Subscriber) GetIdOk() (*string, 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 *Subscriber) SetId(v string)

SetId sets Id field to given value.

HasId

func (o *Subscriber) HasId() bool

HasId returns a boolean if a field has been set.

GetType

func (o *Subscriber) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *Subscriber) GetTypeOk() (*string, bool)

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

SetType

func (o *Subscriber) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *Subscriber) HasType() bool

HasType returns a boolean if a field has been set.

GetSourceId

func (o *Subscriber) GetSourceId() string

GetSourceId returns the SourceId field if non-nil, zero value otherwise.

GetSourceIdOk

func (o *Subscriber) GetSourceIdOk() (*string, bool)

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

SetSourceId

func (o *Subscriber) SetSourceId(v string)

SetSourceId sets SourceId field to given value.

HasSourceId

func (o *Subscriber) HasSourceId() bool

HasSourceId returns a boolean if a field has been set.

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