Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.12 KB

ApiWebhookView.md

File metadata and controls

77 lines (42 loc) · 2.12 KB

ApiWebhookView

Properties

Name Type Description Notes
Secret Pointer to string Parameter returned if someone configure this webhook with a secret. [optional]
Url string Endpoint web address to which MongoDB Cloud sends notifications.

Methods

NewApiWebhookView

func NewApiWebhookView(url string, ) *ApiWebhookView

NewApiWebhookView instantiates a new ApiWebhookView 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

NewApiWebhookViewWithDefaults

func NewApiWebhookViewWithDefaults() *ApiWebhookView

NewApiWebhookViewWithDefaults instantiates a new ApiWebhookView 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

GetSecret

func (o *ApiWebhookView) GetSecret() string

GetSecret returns the Secret field if non-nil, zero value otherwise.

GetSecretOk

func (o *ApiWebhookView) GetSecretOk() (*string, bool)

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

SetSecret

func (o *ApiWebhookView) SetSecret(v string)

SetSecret sets Secret field to given value.

HasSecret

func (o *ApiWebhookView) HasSecret() bool

HasSecret returns a boolean if a field has been set.

GetUrl

func (o *ApiWebhookView) GetUrl() string

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

GetUrlOk

func (o *ApiWebhookView) 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 *ApiWebhookView) SetUrl(v string)

SetUrl sets Url field to given value.

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