Name | Type | Description | Notes |
---|---|---|---|
Id | string | WebhookUUID | |
BotUserId | string | WebhookユーザーUUID | |
DisplayName | string | Webhookユーザー表示名 | |
Description | string | 説明 | |
Secure | bool | セキュアWebhookかどうか | |
ChannelId | string | デフォルトの投稿先チャンネルUUID | |
OwnerId | string | オーナーUUID | |
CreatedAt | time.Time | 作成日時 | |
UpdatedAt | time.Time | 更新日時 |
func NewWebhook(id string, botUserId string, displayName string, description string, secure bool, channelId string, ownerId string, createdAt time.Time, updatedAt time.Time, ) *Webhook
NewWebhook instantiates a new Webhook 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
func NewWebhookWithDefaults() *Webhook
NewWebhookWithDefaults instantiates a new Webhook 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
func (o *Webhook) GetId() string
GetId returns the Id field if non-nil, zero value otherwise.
func (o *Webhook) 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.
func (o *Webhook) SetId(v string)
SetId sets Id field to given value.
func (o *Webhook) GetBotUserId() string
GetBotUserId returns the BotUserId field if non-nil, zero value otherwise.
func (o *Webhook) GetBotUserIdOk() (*string, bool)
GetBotUserIdOk returns a tuple with the BotUserId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetBotUserId(v string)
SetBotUserId sets BotUserId field to given value.
func (o *Webhook) GetDisplayName() string
GetDisplayName returns the DisplayName field if non-nil, zero value otherwise.
func (o *Webhook) 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.
func (o *Webhook) SetDisplayName(v string)
SetDisplayName sets DisplayName field to given value.
func (o *Webhook) GetDescription() string
GetDescription returns the Description field if non-nil, zero value otherwise.
func (o *Webhook) 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.
func (o *Webhook) SetDescription(v string)
SetDescription sets Description field to given value.
func (o *Webhook) GetSecure() bool
GetSecure returns the Secure field if non-nil, zero value otherwise.
func (o *Webhook) GetSecureOk() (*bool, bool)
GetSecureOk returns a tuple with the Secure field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetSecure(v bool)
SetSecure sets Secure field to given value.
func (o *Webhook) GetChannelId() string
GetChannelId returns the ChannelId field if non-nil, zero value otherwise.
func (o *Webhook) GetChannelIdOk() (*string, bool)
GetChannelIdOk returns a tuple with the ChannelId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetChannelId(v string)
SetChannelId sets ChannelId field to given value.
func (o *Webhook) GetOwnerId() string
GetOwnerId returns the OwnerId field if non-nil, zero value otherwise.
func (o *Webhook) GetOwnerIdOk() (*string, bool)
GetOwnerIdOk returns a tuple with the OwnerId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetOwnerId(v string)
SetOwnerId sets OwnerId field to given value.
func (o *Webhook) GetCreatedAt() time.Time
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.
func (o *Webhook) GetCreatedAtOk() (*time.Time, bool)
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetCreatedAt(v time.Time)
SetCreatedAt sets CreatedAt field to given value.
func (o *Webhook) GetUpdatedAt() time.Time
GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.
func (o *Webhook) GetUpdatedAtOk() (*time.Time, bool)
GetUpdatedAtOk returns a tuple with the UpdatedAt field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Webhook) SetUpdatedAt(v time.Time)
SetUpdatedAt sets UpdatedAt field to given value.