- Update version to 0.4.21 in all components - Regenerate OpenAPI spec and client SDKs - Python packages: hindsight-api, hindsight-dev, hindsight-all, hindsight-embed - Python client: hindsight-clients/python - TypeScript client: hindsight-clients/typescript - Rust CLI: hindsight-cli - Control Plane: hindsight-control-plane - Helm chart - Sync documentation to version-0.4
446 lines
11 KiB
Go
446 lines
11 KiB
Go
/*
|
|
Hindsight HTTP API
|
|
|
|
HTTP API for Hindsight
|
|
|
|
API version: 0.4.21
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package hindsight
|
|
|
|
import (
|
|
"encoding/json"
|
|
"bytes"
|
|
"fmt"
|
|
)
|
|
|
|
// checks if the WebhookResponse type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &WebhookResponse{}
|
|
|
|
// WebhookResponse Response model for a webhook.
|
|
type WebhookResponse struct {
|
|
Id string `json:"id"`
|
|
BankId NullableString `json:"bank_id"`
|
|
Url string `json:"url"`
|
|
Secret NullableString `json:"secret,omitempty"`
|
|
EventTypes []string `json:"event_types"`
|
|
Enabled bool `json:"enabled"`
|
|
HttpConfig *WebhookHttpConfig `json:"http_config,omitempty"`
|
|
CreatedAt NullableString `json:"created_at,omitempty"`
|
|
UpdatedAt NullableString `json:"updated_at,omitempty"`
|
|
}
|
|
|
|
type _WebhookResponse WebhookResponse
|
|
|
|
// NewWebhookResponse instantiates a new WebhookResponse 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 NewWebhookResponse(id string, bankId NullableString, url string, eventTypes []string, enabled bool) *WebhookResponse {
|
|
this := WebhookResponse{}
|
|
this.Id = id
|
|
this.BankId = bankId
|
|
this.Url = url
|
|
this.EventTypes = eventTypes
|
|
this.Enabled = enabled
|
|
return &this
|
|
}
|
|
|
|
// NewWebhookResponseWithDefaults instantiates a new WebhookResponse 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 NewWebhookResponseWithDefaults() *WebhookResponse {
|
|
this := WebhookResponse{}
|
|
return &this
|
|
}
|
|
|
|
// GetId returns the Id field value
|
|
func (o *WebhookResponse) GetId() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Id
|
|
}
|
|
|
|
// GetIdOk returns a tuple with the Id field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *WebhookResponse) GetIdOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Id, true
|
|
}
|
|
|
|
// SetId sets field value
|
|
func (o *WebhookResponse) SetId(v string) {
|
|
o.Id = v
|
|
}
|
|
|
|
// GetBankId returns the BankId field value
|
|
// If the value is explicit nil, the zero value for string will be returned
|
|
func (o *WebhookResponse) GetBankId() string {
|
|
if o == nil || o.BankId.Get() == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return *o.BankId.Get()
|
|
}
|
|
|
|
// GetBankIdOk returns a tuple with the BankId field value
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *WebhookResponse) GetBankIdOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.BankId.Get(), o.BankId.IsSet()
|
|
}
|
|
|
|
// SetBankId sets field value
|
|
func (o *WebhookResponse) SetBankId(v string) {
|
|
o.BankId.Set(&v)
|
|
}
|
|
|
|
// GetUrl returns the Url field value
|
|
func (o *WebhookResponse) GetUrl() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Url
|
|
}
|
|
|
|
// GetUrlOk returns a tuple with the Url field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *WebhookResponse) GetUrlOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Url, true
|
|
}
|
|
|
|
// SetUrl sets field value
|
|
func (o *WebhookResponse) SetUrl(v string) {
|
|
o.Url = v
|
|
}
|
|
|
|
// GetSecret returns the Secret field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *WebhookResponse) GetSecret() string {
|
|
if o == nil || IsNil(o.Secret.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.Secret.Get()
|
|
}
|
|
|
|
// GetSecretOk returns a tuple with the Secret field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *WebhookResponse) GetSecretOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.Secret.Get(), o.Secret.IsSet()
|
|
}
|
|
|
|
// HasSecret returns a boolean if a field has been set.
|
|
func (o *WebhookResponse) HasSecret() bool {
|
|
if o != nil && o.Secret.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetSecret gets a reference to the given NullableString and assigns it to the Secret field.
|
|
func (o *WebhookResponse) SetSecret(v string) {
|
|
o.Secret.Set(&v)
|
|
}
|
|
// SetSecretNil sets the value for Secret to be an explicit nil
|
|
func (o *WebhookResponse) SetSecretNil() {
|
|
o.Secret.Set(nil)
|
|
}
|
|
|
|
// UnsetSecret ensures that no value is present for Secret, not even an explicit nil
|
|
func (o *WebhookResponse) UnsetSecret() {
|
|
o.Secret.Unset()
|
|
}
|
|
|
|
// GetEventTypes returns the EventTypes field value
|
|
func (o *WebhookResponse) GetEventTypes() []string {
|
|
if o == nil {
|
|
var ret []string
|
|
return ret
|
|
}
|
|
|
|
return o.EventTypes
|
|
}
|
|
|
|
// GetEventTypesOk returns a tuple with the EventTypes field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *WebhookResponse) GetEventTypesOk() ([]string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.EventTypes, true
|
|
}
|
|
|
|
// SetEventTypes sets field value
|
|
func (o *WebhookResponse) SetEventTypes(v []string) {
|
|
o.EventTypes = v
|
|
}
|
|
|
|
// GetEnabled returns the Enabled field value
|
|
func (o *WebhookResponse) GetEnabled() bool {
|
|
if o == nil {
|
|
var ret bool
|
|
return ret
|
|
}
|
|
|
|
return o.Enabled
|
|
}
|
|
|
|
// GetEnabledOk returns a tuple with the Enabled field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *WebhookResponse) GetEnabledOk() (*bool, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Enabled, true
|
|
}
|
|
|
|
// SetEnabled sets field value
|
|
func (o *WebhookResponse) SetEnabled(v bool) {
|
|
o.Enabled = v
|
|
}
|
|
|
|
// GetHttpConfig returns the HttpConfig field value if set, zero value otherwise.
|
|
func (o *WebhookResponse) GetHttpConfig() WebhookHttpConfig {
|
|
if o == nil || IsNil(o.HttpConfig) {
|
|
var ret WebhookHttpConfig
|
|
return ret
|
|
}
|
|
return *o.HttpConfig
|
|
}
|
|
|
|
// GetHttpConfigOk returns a tuple with the HttpConfig field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
func (o *WebhookResponse) GetHttpConfigOk() (*WebhookHttpConfig, bool) {
|
|
if o == nil || IsNil(o.HttpConfig) {
|
|
return nil, false
|
|
}
|
|
return o.HttpConfig, true
|
|
}
|
|
|
|
// HasHttpConfig returns a boolean if a field has been set.
|
|
func (o *WebhookResponse) HasHttpConfig() bool {
|
|
if o != nil && !IsNil(o.HttpConfig) {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetHttpConfig gets a reference to the given WebhookHttpConfig and assigns it to the HttpConfig field.
|
|
func (o *WebhookResponse) SetHttpConfig(v WebhookHttpConfig) {
|
|
o.HttpConfig = &v
|
|
}
|
|
|
|
// GetCreatedAt returns the CreatedAt field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *WebhookResponse) GetCreatedAt() string {
|
|
if o == nil || IsNil(o.CreatedAt.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.CreatedAt.Get()
|
|
}
|
|
|
|
// GetCreatedAtOk returns a tuple with the CreatedAt field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *WebhookResponse) GetCreatedAtOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.CreatedAt.Get(), o.CreatedAt.IsSet()
|
|
}
|
|
|
|
// HasCreatedAt returns a boolean if a field has been set.
|
|
func (o *WebhookResponse) HasCreatedAt() bool {
|
|
if o != nil && o.CreatedAt.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetCreatedAt gets a reference to the given NullableString and assigns it to the CreatedAt field.
|
|
func (o *WebhookResponse) SetCreatedAt(v string) {
|
|
o.CreatedAt.Set(&v)
|
|
}
|
|
// SetCreatedAtNil sets the value for CreatedAt to be an explicit nil
|
|
func (o *WebhookResponse) SetCreatedAtNil() {
|
|
o.CreatedAt.Set(nil)
|
|
}
|
|
|
|
// UnsetCreatedAt ensures that no value is present for CreatedAt, not even an explicit nil
|
|
func (o *WebhookResponse) UnsetCreatedAt() {
|
|
o.CreatedAt.Unset()
|
|
}
|
|
|
|
// GetUpdatedAt returns the UpdatedAt field value if set, zero value otherwise (both if not set or set to explicit null).
|
|
func (o *WebhookResponse) GetUpdatedAt() string {
|
|
if o == nil || IsNil(o.UpdatedAt.Get()) {
|
|
var ret string
|
|
return ret
|
|
}
|
|
return *o.UpdatedAt.Get()
|
|
}
|
|
|
|
// GetUpdatedAtOk returns a tuple with the UpdatedAt field value if set, nil otherwise
|
|
// and a boolean to check if the value has been set.
|
|
// NOTE: If the value is an explicit nil, `nil, true` will be returned
|
|
func (o *WebhookResponse) GetUpdatedAtOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return o.UpdatedAt.Get(), o.UpdatedAt.IsSet()
|
|
}
|
|
|
|
// HasUpdatedAt returns a boolean if a field has been set.
|
|
func (o *WebhookResponse) HasUpdatedAt() bool {
|
|
if o != nil && o.UpdatedAt.IsSet() {
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// SetUpdatedAt gets a reference to the given NullableString and assigns it to the UpdatedAt field.
|
|
func (o *WebhookResponse) SetUpdatedAt(v string) {
|
|
o.UpdatedAt.Set(&v)
|
|
}
|
|
// SetUpdatedAtNil sets the value for UpdatedAt to be an explicit nil
|
|
func (o *WebhookResponse) SetUpdatedAtNil() {
|
|
o.UpdatedAt.Set(nil)
|
|
}
|
|
|
|
// UnsetUpdatedAt ensures that no value is present for UpdatedAt, not even an explicit nil
|
|
func (o *WebhookResponse) UnsetUpdatedAt() {
|
|
o.UpdatedAt.Unset()
|
|
}
|
|
|
|
func (o WebhookResponse) MarshalJSON() ([]byte, error) {
|
|
toSerialize,err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o WebhookResponse) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
toSerialize["id"] = o.Id
|
|
toSerialize["bank_id"] = o.BankId.Get()
|
|
toSerialize["url"] = o.Url
|
|
if o.Secret.IsSet() {
|
|
toSerialize["secret"] = o.Secret.Get()
|
|
}
|
|
toSerialize["event_types"] = o.EventTypes
|
|
toSerialize["enabled"] = o.Enabled
|
|
if !IsNil(o.HttpConfig) {
|
|
toSerialize["http_config"] = o.HttpConfig
|
|
}
|
|
if o.CreatedAt.IsSet() {
|
|
toSerialize["created_at"] = o.CreatedAt.Get()
|
|
}
|
|
if o.UpdatedAt.IsSet() {
|
|
toSerialize["updated_at"] = o.UpdatedAt.Get()
|
|
}
|
|
return toSerialize, nil
|
|
}
|
|
|
|
func (o *WebhookResponse) UnmarshalJSON(data []byte) (err error) {
|
|
// This validates that all required properties are included in the JSON object
|
|
// by unmarshalling the object into a generic map with string keys and checking
|
|
// that every required field exists as a key in the generic map.
|
|
requiredProperties := []string{
|
|
"id",
|
|
"bank_id",
|
|
"url",
|
|
"event_types",
|
|
"enabled",
|
|
}
|
|
|
|
allProperties := make(map[string]interface{})
|
|
|
|
err = json.Unmarshal(data, &allProperties)
|
|
|
|
if err != nil {
|
|
return err;
|
|
}
|
|
|
|
for _, requiredProperty := range(requiredProperties) {
|
|
if _, exists := allProperties[requiredProperty]; !exists {
|
|
return fmt.Errorf("no value given for required property %v", requiredProperty)
|
|
}
|
|
}
|
|
|
|
varWebhookResponse := _WebhookResponse{}
|
|
|
|
decoder := json.NewDecoder(bytes.NewReader(data))
|
|
decoder.DisallowUnknownFields()
|
|
err = decoder.Decode(&varWebhookResponse)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*o = WebhookResponse(varWebhookResponse)
|
|
|
|
return err
|
|
}
|
|
|
|
type NullableWebhookResponse struct {
|
|
value *WebhookResponse
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableWebhookResponse) Get() *WebhookResponse {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableWebhookResponse) Set(val *WebhookResponse) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableWebhookResponse) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableWebhookResponse) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableWebhookResponse(val *WebhookResponse) *NullableWebhookResponse {
|
|
return &NullableWebhookResponse{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableWebhookResponse) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableWebhookResponse) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|
|
|
|
|