| Name | Type | Description | Notes |
|---|---|---|---|
| Name | Pointer to string | A human-readable name for your webhook | [optional] |
| Url | string | The URL of the remote webhook | |
| Secret | Pointer to string | If sign is true, and the secret attribute is omitted, LaunchDarkly automatically generates a secret for you. | [optional] |
| Statements | Pointer to []StatementPost | [optional] | |
| Sign | bool | If sign is false, the webhook does not include a signature header, and the secret can be omitted. | |
| On | bool | Whether or not this webhook is enabled. | |
| Tags | Pointer to []string | List of tags for this webhook | [optional] |
func NewWebhookPost(url string, sign bool, on bool, ) *WebhookPost
NewWebhookPost instantiates a new WebhookPost 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 NewWebhookPostWithDefaults() *WebhookPost
NewWebhookPostWithDefaults instantiates a new WebhookPost 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 *WebhookPost) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *WebhookPost) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebhookPost) SetName(v string)
SetName sets Name field to given value.
func (o *WebhookPost) HasName() bool
HasName returns a boolean if a field has been set.
func (o *WebhookPost) GetUrl() string
GetUrl returns the Url field if non-nil, zero value otherwise.
func (o *WebhookPost) 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.
func (o *WebhookPost) SetUrl(v string)
SetUrl sets Url field to given value.
func (o *WebhookPost) GetSecret() string
GetSecret returns the Secret field if non-nil, zero value otherwise.
func (o *WebhookPost) 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.
func (o *WebhookPost) SetSecret(v string)
SetSecret sets Secret field to given value.
func (o *WebhookPost) HasSecret() bool
HasSecret returns a boolean if a field has been set.
func (o *WebhookPost) GetStatements() []StatementPost
GetStatements returns the Statements field if non-nil, zero value otherwise.
func (o *WebhookPost) GetStatementsOk() (*[]StatementPost, bool)
GetStatementsOk returns a tuple with the Statements field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebhookPost) SetStatements(v []StatementPost)
SetStatements sets Statements field to given value.
func (o *WebhookPost) HasStatements() bool
HasStatements returns a boolean if a field has been set.
func (o *WebhookPost) GetSign() bool
GetSign returns the Sign field if non-nil, zero value otherwise.
func (o *WebhookPost) GetSignOk() (*bool, bool)
GetSignOk returns a tuple with the Sign field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebhookPost) SetSign(v bool)
SetSign sets Sign field to given value.
func (o *WebhookPost) GetOn() bool
GetOn returns the On field if non-nil, zero value otherwise.
func (o *WebhookPost) GetOnOk() (*bool, bool)
GetOnOk returns a tuple with the On field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebhookPost) SetOn(v bool)
SetOn sets On field to given value.
func (o *WebhookPost) GetTags() []string
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *WebhookPost) GetTagsOk() (*[]string, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *WebhookPost) SetTags(v []string)
SetTags sets Tags field to given value.
func (o *WebhookPost) HasTags() bool
HasTags returns a boolean if a field has been set.