Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.09 KB

BotTokens.md

File metadata and controls

72 lines (39 loc) · 2.09 KB

BotTokens

Properties

Name Type Description Notes
VerificationToken string Verification Token
AccessToken string BOTアクセストークン

Methods

NewBotTokens

func NewBotTokens(verificationToken string, accessToken string, ) *BotTokens

NewBotTokens instantiates a new BotTokens 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

NewBotTokensWithDefaults

func NewBotTokensWithDefaults() *BotTokens

NewBotTokensWithDefaults instantiates a new BotTokens 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

GetVerificationToken

func (o *BotTokens) GetVerificationToken() string

GetVerificationToken returns the VerificationToken field if non-nil, zero value otherwise.

GetVerificationTokenOk

func (o *BotTokens) GetVerificationTokenOk() (*string, bool)

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

SetVerificationToken

func (o *BotTokens) SetVerificationToken(v string)

SetVerificationToken sets VerificationToken field to given value.

GetAccessToken

func (o *BotTokens) GetAccessToken() string

GetAccessToken returns the AccessToken field if non-nil, zero value otherwise.

GetAccessTokenOk

func (o *BotTokens) GetAccessTokenOk() (*string, bool)

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

SetAccessToken

func (o *BotTokens) SetAccessToken(v string)

SetAccessToken sets AccessToken field to given value.

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