Skip to content

Latest commit

 

History

History
140 lines (75 loc) · 4.08 KB

File metadata and controls

140 lines (75 loc) · 4.08 KB

TeamsNotificationChannel

Properties

Name Type Description Notes
Id int64
NotificationConfigurationId Pointer to int64 [optional]
Status NotificationChannelStatus
Url string
Type string

Methods

NewTeamsNotificationChannel

func NewTeamsNotificationChannel(id int64, status NotificationChannelStatus, url string, type_ string, ) *TeamsNotificationChannel

NewTeamsNotificationChannel instantiates a new TeamsNotificationChannel 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

NewTeamsNotificationChannelWithDefaults

func NewTeamsNotificationChannelWithDefaults() *TeamsNotificationChannel

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

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

GetIdOk

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

SetId sets Id field to given value.

GetNotificationConfigurationId

func (o *TeamsNotificationChannel) GetNotificationConfigurationId() int64

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

GetNotificationConfigurationIdOk

func (o *TeamsNotificationChannel) 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 *TeamsNotificationChannel) SetNotificationConfigurationId(v int64)

SetNotificationConfigurationId sets NotificationConfigurationId field to given value.

HasNotificationConfigurationId

func (o *TeamsNotificationChannel) HasNotificationConfigurationId() bool

HasNotificationConfigurationId returns a boolean if a field has been set.

GetStatus

func (o *TeamsNotificationChannel) GetStatus() NotificationChannelStatus

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

GetStatusOk

func (o *TeamsNotificationChannel) 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 *TeamsNotificationChannel) SetStatus(v NotificationChannelStatus)

SetStatus sets Status field to given value.

GetUrl

func (o *TeamsNotificationChannel) GetUrl() string

GetUrl returns the Url field if non-nil, zero value otherwise.

GetUrlOk

func (o *TeamsNotificationChannel) GetUrlOk() (*string, bool)

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

SetUrl

func (o *TeamsNotificationChannel) SetUrl(v string)

SetUrl sets Url field to given value.

GetType

func (o *TeamsNotificationChannel) GetType() string

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

GetTypeOk

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

SetType sets Type field to given value.

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