Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.92 KB

File metadata and controls

134 lines (73 loc) · 3.92 KB

DiscordSettingsOptions

Properties

Name Type Description Notes
BotUsername Pointer to string [optional]
BotAvatarUrl Pointer to string [optional]
WebhookUrl Pointer to string [optional]
EnableMentions Pointer to bool [optional]

Methods

NewDiscordSettingsOptions

func NewDiscordSettingsOptions() *DiscordSettingsOptions

NewDiscordSettingsOptions instantiates a new DiscordSettingsOptions 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

NewDiscordSettingsOptionsWithDefaults

func NewDiscordSettingsOptionsWithDefaults() *DiscordSettingsOptions

NewDiscordSettingsOptionsWithDefaults instantiates a new DiscordSettingsOptions 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

GetBotUsername

func (o *DiscordSettingsOptions) GetBotUsername() string

GetBotUsername returns the BotUsername field if non-nil, zero value otherwise.

GetBotUsernameOk

func (o *DiscordSettingsOptions) GetBotUsernameOk() (*string, bool)

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

SetBotUsername

func (o *DiscordSettingsOptions) SetBotUsername(v string)

SetBotUsername sets BotUsername field to given value.

HasBotUsername

func (o *DiscordSettingsOptions) HasBotUsername() bool

HasBotUsername returns a boolean if a field has been set.

GetBotAvatarUrl

func (o *DiscordSettingsOptions) GetBotAvatarUrl() string

GetBotAvatarUrl returns the BotAvatarUrl field if non-nil, zero value otherwise.

GetBotAvatarUrlOk

func (o *DiscordSettingsOptions) GetBotAvatarUrlOk() (*string, bool)

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

SetBotAvatarUrl

func (o *DiscordSettingsOptions) SetBotAvatarUrl(v string)

SetBotAvatarUrl sets BotAvatarUrl field to given value.

HasBotAvatarUrl

func (o *DiscordSettingsOptions) HasBotAvatarUrl() bool

HasBotAvatarUrl returns a boolean if a field has been set.

GetWebhookUrl

func (o *DiscordSettingsOptions) GetWebhookUrl() string

GetWebhookUrl returns the WebhookUrl field if non-nil, zero value otherwise.

GetWebhookUrlOk

func (o *DiscordSettingsOptions) GetWebhookUrlOk() (*string, bool)

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

SetWebhookUrl

func (o *DiscordSettingsOptions) SetWebhookUrl(v string)

SetWebhookUrl sets WebhookUrl field to given value.

HasWebhookUrl

func (o *DiscordSettingsOptions) HasWebhookUrl() bool

HasWebhookUrl returns a boolean if a field has been set.

GetEnableMentions

func (o *DiscordSettingsOptions) GetEnableMentions() bool

GetEnableMentions returns the EnableMentions field if non-nil, zero value otherwise.

GetEnableMentionsOk

func (o *DiscordSettingsOptions) GetEnableMentionsOk() (*bool, bool)

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

SetEnableMentions

func (o *DiscordSettingsOptions) SetEnableMentions(v bool)

SetEnableMentions sets EnableMentions field to given value.

HasEnableMentions

func (o *DiscordSettingsOptions) HasEnableMentions() bool

HasEnableMentions returns a boolean if a field has been set.

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