Skip to content

Latest commit

 

History

History
187 lines (100 loc) · 5.3 KB

File metadata and controls

187 lines (100 loc) · 5.3 KB

EmailNotificationChannel

Properties

Name Type Description Notes
Id int64
NotificationConfigurationId Pointer to int64 [optional]
Status NotificationChannelStatus
To []string
Cc []string
SubjectPrefix Pointer to string [optional]
Type string

Methods

NewEmailNotificationChannel

func NewEmailNotificationChannel(id int64, status NotificationChannelStatus, to []string, cc []string, type_ string, ) *EmailNotificationChannel

NewEmailNotificationChannel instantiates a new EmailNotificationChannel 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

NewEmailNotificationChannelWithDefaults

func NewEmailNotificationChannelWithDefaults() *EmailNotificationChannel

NewEmailNotificationChannelWithDefaults instantiates a new EmailNotificationChannel 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 *EmailNotificationChannel) GetId() int64

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

GetIdOk

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

SetId sets Id field to given value.

GetNotificationConfigurationId

func (o *EmailNotificationChannel) GetNotificationConfigurationId() int64

GetNotificationConfigurationId returns the NotificationConfigurationId field if non-nil, zero value otherwise.

GetNotificationConfigurationIdOk

func (o *EmailNotificationChannel) GetNotificationConfigurationIdOk() (*int64, bool)

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

SetNotificationConfigurationId

func (o *EmailNotificationChannel) SetNotificationConfigurationId(v int64)

SetNotificationConfigurationId sets NotificationConfigurationId field to given value.

HasNotificationConfigurationId

func (o *EmailNotificationChannel) HasNotificationConfigurationId() bool

HasNotificationConfigurationId returns a boolean if a field has been set.

GetStatus

func (o *EmailNotificationChannel) GetStatus() NotificationChannelStatus

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *EmailNotificationChannel) GetStatusOk() (*NotificationChannelStatus, bool)

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

SetStatus

func (o *EmailNotificationChannel) SetStatus(v NotificationChannelStatus)

SetStatus sets Status field to given value.

GetTo

func (o *EmailNotificationChannel) GetTo() []string

GetTo returns the To field if non-nil, zero value otherwise.

GetToOk

func (o *EmailNotificationChannel) GetToOk() (*[]string, bool)

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

SetTo

func (o *EmailNotificationChannel) SetTo(v []string)

SetTo sets To field to given value.

GetCc

func (o *EmailNotificationChannel) GetCc() []string

GetCc returns the Cc field if non-nil, zero value otherwise.

GetCcOk

func (o *EmailNotificationChannel) GetCcOk() (*[]string, bool)

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

SetCc

func (o *EmailNotificationChannel) SetCc(v []string)

SetCc sets Cc field to given value.

GetSubjectPrefix

func (o *EmailNotificationChannel) GetSubjectPrefix() string

GetSubjectPrefix returns the SubjectPrefix field if non-nil, zero value otherwise.

GetSubjectPrefixOk

func (o *EmailNotificationChannel) GetSubjectPrefixOk() (*string, bool)

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

SetSubjectPrefix

func (o *EmailNotificationChannel) SetSubjectPrefix(v string)

SetSubjectPrefix sets SubjectPrefix field to given value.

HasSubjectPrefix

func (o *EmailNotificationChannel) HasSubjectPrefix() bool

HasSubjectPrefix returns a boolean if a field has been set.

GetType

func (o *EmailNotificationChannel) GetType() string

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

GetTypeOk

func (o *EmailNotificationChannel) 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 *EmailNotificationChannel) SetType(v string)

SetType sets Type field to given value.

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