resources

package
v0.0.0-...-6e6bb61 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 27, 2023 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value.

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value.

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value.

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value.

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value.

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value.

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value.

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value.

Types

type CreateNotification

type CreateNotification struct {
	Type          string                               `json:"type"`
	Attributes    CreateNotificationAllOfAttributes    `json:"attributes"`
	Relationships CreateNotificationAllOfRelationships `json:"relationships"`
}

CreateNotification struct for CreateNotification

func NewCreateNotification

func NewCreateNotification(type_ string, attributes CreateNotificationAllOfAttributes, relationships CreateNotificationAllOfRelationships) *CreateNotification

NewCreateNotification instantiates a new CreateNotification 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 NewCreateNotificationWithDefaults

func NewCreateNotificationWithDefaults() *CreateNotification

NewCreateNotificationWithDefaults instantiates a new CreateNotification 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 (*CreateNotification) GetAttributes

GetAttributes returns the Attributes field value

func (*CreateNotification) GetAttributesOk

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*CreateNotification) GetRelationships

GetRelationships returns the Relationships field value

func (*CreateNotification) GetRelationshipsOk

func (o *CreateNotification) GetRelationshipsOk() (*CreateNotificationAllOfRelationships, bool)

GetRelationshipsOk returns a tuple with the Relationships field value and a boolean to check if the value has been set.

func (*CreateNotification) GetType

func (o *CreateNotification) GetType() string

GetType returns the Type field value

func (*CreateNotification) GetTypeOk

func (o *CreateNotification) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (CreateNotification) MarshalJSON

func (o CreateNotification) MarshalJSON() ([]byte, error)

func (*CreateNotification) SetAttributes

SetAttributes sets field value

func (*CreateNotification) SetRelationships

SetRelationships sets field value

func (*CreateNotification) SetType

func (o *CreateNotification) SetType(v string)

SetType sets field value

func (CreateNotification) ToMap

func (o CreateNotification) ToMap() (map[string]interface{}, error)

func (*CreateNotification) UnmarshalJSON

func (o *CreateNotification) UnmarshalJSON(data []byte) (err error)

type CreateNotification200Response

type CreateNotification200Response struct {
	Data Notification `json:"data"`
}

CreateNotification200Response struct for CreateNotification200Response

func NewCreateNotification200Response

func NewCreateNotification200Response(data Notification) *CreateNotification200Response

NewCreateNotification200Response instantiates a new CreateNotification200Response 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 NewCreateNotification200ResponseWithDefaults

func NewCreateNotification200ResponseWithDefaults() *CreateNotification200Response

NewCreateNotification200ResponseWithDefaults instantiates a new CreateNotification200Response 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 (*CreateNotification200Response) GetData

GetData returns the Data field value

func (*CreateNotification200Response) GetDataOk

func (o *CreateNotification200Response) GetDataOk() (*Notification, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (CreateNotification200Response) MarshalJSON

func (o CreateNotification200Response) MarshalJSON() ([]byte, error)

func (*CreateNotification200Response) SetData

SetData sets field value

func (CreateNotification200Response) ToMap

func (o CreateNotification200Response) ToMap() (map[string]interface{}, error)

func (*CreateNotification200Response) UnmarshalJSON

func (o *CreateNotification200Response) UnmarshalJSON(data []byte) (err error)

type CreateNotificationAllOfAttributes

type CreateNotificationAllOfAttributes struct {
	Topic   string  `json:"topic"`
	Message Message `json:"message"`
	Channel *string `json:"channel,omitempty"`
}

CreateNotificationAllOfAttributes struct for CreateNotificationAllOfAttributes

func NewCreateNotificationAllOfAttributes

func NewCreateNotificationAllOfAttributes(topic string, message Message) *CreateNotificationAllOfAttributes

NewCreateNotificationAllOfAttributes instantiates a new CreateNotificationAllOfAttributes 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 NewCreateNotificationAllOfAttributesWithDefaults

func NewCreateNotificationAllOfAttributesWithDefaults() *CreateNotificationAllOfAttributes

NewCreateNotificationAllOfAttributesWithDefaults instantiates a new CreateNotificationAllOfAttributes 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 (*CreateNotificationAllOfAttributes) GetChannel

func (o *CreateNotificationAllOfAttributes) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*CreateNotificationAllOfAttributes) GetChannelOk

func (o *CreateNotificationAllOfAttributes) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CreateNotificationAllOfAttributes) GetMessage

GetMessage returns the Message field value

func (*CreateNotificationAllOfAttributes) GetMessageOk

func (o *CreateNotificationAllOfAttributes) GetMessageOk() (*Message, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*CreateNotificationAllOfAttributes) GetTopic

GetTopic returns the Topic field value

func (*CreateNotificationAllOfAttributes) GetTopicOk

func (o *CreateNotificationAllOfAttributes) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value and a boolean to check if the value has been set.

func (*CreateNotificationAllOfAttributes) HasChannel

func (o *CreateNotificationAllOfAttributes) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (CreateNotificationAllOfAttributes) MarshalJSON

func (o CreateNotificationAllOfAttributes) MarshalJSON() ([]byte, error)

func (*CreateNotificationAllOfAttributes) SetChannel

func (o *CreateNotificationAllOfAttributes) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*CreateNotificationAllOfAttributes) SetMessage

func (o *CreateNotificationAllOfAttributes) SetMessage(v Message)

SetMessage sets field value

func (*CreateNotificationAllOfAttributes) SetTopic

SetTopic sets field value

func (CreateNotificationAllOfAttributes) ToMap

func (o CreateNotificationAllOfAttributes) ToMap() (map[string]interface{}, error)

func (*CreateNotificationAllOfAttributes) UnmarshalJSON

func (o *CreateNotificationAllOfAttributes) UnmarshalJSON(data []byte) (err error)

type CreateNotificationAllOfRelationships

type CreateNotificationAllOfRelationships struct {
	Destinations CreateNotificationAllOfRelationshipsDestinations `json:"destinations"`
}

CreateNotificationAllOfRelationships struct for CreateNotificationAllOfRelationships

func NewCreateNotificationAllOfRelationships

func NewCreateNotificationAllOfRelationships(destinations CreateNotificationAllOfRelationshipsDestinations) *CreateNotificationAllOfRelationships

NewCreateNotificationAllOfRelationships instantiates a new CreateNotificationAllOfRelationships 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 NewCreateNotificationAllOfRelationshipsWithDefaults

func NewCreateNotificationAllOfRelationshipsWithDefaults() *CreateNotificationAllOfRelationships

NewCreateNotificationAllOfRelationshipsWithDefaults instantiates a new CreateNotificationAllOfRelationships 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 (*CreateNotificationAllOfRelationships) GetDestinations

GetDestinations returns the Destinations field value

func (*CreateNotificationAllOfRelationships) GetDestinationsOk

GetDestinationsOk returns a tuple with the Destinations field value and a boolean to check if the value has been set.

func (CreateNotificationAllOfRelationships) MarshalJSON

func (o CreateNotificationAllOfRelationships) MarshalJSON() ([]byte, error)

func (*CreateNotificationAllOfRelationships) SetDestinations

SetDestinations sets field value

func (CreateNotificationAllOfRelationships) ToMap

func (o CreateNotificationAllOfRelationships) ToMap() (map[string]interface{}, error)

func (*CreateNotificationAllOfRelationships) UnmarshalJSON

func (o *CreateNotificationAllOfRelationships) UnmarshalJSON(data []byte) (err error)

type CreateNotificationAllOfRelationshipsDestinations

type CreateNotificationAllOfRelationshipsDestinations struct {
	Data []DestinationKey `json:"data"`
}

CreateNotificationAllOfRelationshipsDestinations struct for CreateNotificationAllOfRelationshipsDestinations

func NewCreateNotificationAllOfRelationshipsDestinations

func NewCreateNotificationAllOfRelationshipsDestinations(data []DestinationKey) *CreateNotificationAllOfRelationshipsDestinations

NewCreateNotificationAllOfRelationshipsDestinations instantiates a new CreateNotificationAllOfRelationshipsDestinations 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 NewCreateNotificationAllOfRelationshipsDestinationsWithDefaults

func NewCreateNotificationAllOfRelationshipsDestinationsWithDefaults() *CreateNotificationAllOfRelationshipsDestinations

NewCreateNotificationAllOfRelationshipsDestinationsWithDefaults instantiates a new CreateNotificationAllOfRelationshipsDestinations 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 (*CreateNotificationAllOfRelationshipsDestinations) GetData

GetData returns the Data field value

func (*CreateNotificationAllOfRelationshipsDestinations) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (CreateNotificationAllOfRelationshipsDestinations) MarshalJSON

func (*CreateNotificationAllOfRelationshipsDestinations) SetData

SetData sets field value

func (CreateNotificationAllOfRelationshipsDestinations) ToMap

func (o CreateNotificationAllOfRelationshipsDestinations) ToMap() (map[string]interface{}, error)

func (*CreateNotificationAllOfRelationshipsDestinations) UnmarshalJSON

func (o *CreateNotificationAllOfRelationshipsDestinations) UnmarshalJSON(data []byte) (err error)

type CreateNotificationKey

type CreateNotificationKey struct {
	Type string `json:"type"`
}

CreateNotificationKey struct for CreateNotificationKey

func NewCreateNotificationKey

func NewCreateNotificationKey(type_ string) *CreateNotificationKey

NewCreateNotificationKey instantiates a new CreateNotificationKey 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 NewCreateNotificationKeyWithDefaults

func NewCreateNotificationKeyWithDefaults() *CreateNotificationKey

NewCreateNotificationKeyWithDefaults instantiates a new CreateNotificationKey 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 (*CreateNotificationKey) GetType

func (o *CreateNotificationKey) GetType() string

GetType returns the Type field value

func (*CreateNotificationKey) GetTypeOk

func (o *CreateNotificationKey) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (CreateNotificationKey) MarshalJSON

func (o CreateNotificationKey) MarshalJSON() ([]byte, error)

func (*CreateNotificationKey) SetType

func (o *CreateNotificationKey) SetType(v string)

SetType sets field value

func (CreateNotificationKey) ToMap

func (o CreateNotificationKey) ToMap() (map[string]interface{}, error)

func (*CreateNotificationKey) UnmarshalJSON

func (o *CreateNotificationKey) UnmarshalJSON(data []byte) (err error)

type CreateNotificationRequest

type CreateNotificationRequest struct {
	Data CreateNotification `json:"data"`
}

CreateNotificationRequest struct for CreateNotificationRequest

func NewCreateNotificationRequest

func NewCreateNotificationRequest(data CreateNotification) *CreateNotificationRequest

NewCreateNotificationRequest instantiates a new CreateNotificationRequest 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 NewCreateNotificationRequestWithDefaults

func NewCreateNotificationRequestWithDefaults() *CreateNotificationRequest

NewCreateNotificationRequestWithDefaults instantiates a new CreateNotificationRequest 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 (*CreateNotificationRequest) GetData

GetData returns the Data field value

func (*CreateNotificationRequest) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (CreateNotificationRequest) MarshalJSON

func (o CreateNotificationRequest) MarshalJSON() ([]byte, error)

func (*CreateNotificationRequest) SetData

SetData sets field value

func (CreateNotificationRequest) ToMap

func (o CreateNotificationRequest) ToMap() (map[string]interface{}, error)

func (*CreateNotificationRequest) UnmarshalJSON

func (o *CreateNotificationRequest) UnmarshalJSON(data []byte) (err error)

type Delivery

type Delivery struct {
	Id         string                  `json:"id"`
	Type       string                  `json:"type"`
	Attributes DeliveryAllOfAttributes `json:"attributes"`
}

Delivery struct for Delivery

func NewDelivery

func NewDelivery(id string, type_ string, attributes DeliveryAllOfAttributes) *Delivery

NewDelivery instantiates a new Delivery 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 NewDeliveryWithDefaults

func NewDeliveryWithDefaults() *Delivery

NewDeliveryWithDefaults instantiates a new Delivery 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 (*Delivery) GetAttributes

func (o *Delivery) GetAttributes() DeliveryAllOfAttributes

GetAttributes returns the Attributes field value

func (*Delivery) GetAttributesOk

func (o *Delivery) GetAttributesOk() (*DeliveryAllOfAttributes, bool)

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*Delivery) GetId

func (o *Delivery) GetId() string

GetId returns the Id field value

func (*Delivery) GetIdOk

func (o *Delivery) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Delivery) GetType

func (o *Delivery) GetType() string

GetType returns the Type field value

func (*Delivery) GetTypeOk

func (o *Delivery) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (Delivery) MarshalJSON

func (o Delivery) MarshalJSON() ([]byte, error)

func (*Delivery) SetAttributes

func (o *Delivery) SetAttributes(v DeliveryAllOfAttributes)

SetAttributes sets field value

func (*Delivery) SetId

func (o *Delivery) SetId(v string)

SetId sets field value

func (*Delivery) SetType

func (o *Delivery) SetType(v string)

SetType sets field value

func (Delivery) ToMap

func (o Delivery) ToMap() (map[string]interface{}, error)

func (*Delivery) UnmarshalJSON

func (o *Delivery) UnmarshalJSON(data []byte) (err error)

type DeliveryAllOfAttributes

type DeliveryAllOfAttributes struct {
	Destination     string `json:"destination"`
	DestinationType string `json:"destination_type"`
	Status          string `json:"status"`
	SentAt          *int64 `json:"sent_at,omitempty"`
}

DeliveryAllOfAttributes struct for DeliveryAllOfAttributes

func NewDeliveryAllOfAttributes

func NewDeliveryAllOfAttributes(destination string, destinationType string, status string) *DeliveryAllOfAttributes

NewDeliveryAllOfAttributes instantiates a new DeliveryAllOfAttributes 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 NewDeliveryAllOfAttributesWithDefaults

func NewDeliveryAllOfAttributesWithDefaults() *DeliveryAllOfAttributes

NewDeliveryAllOfAttributesWithDefaults instantiates a new DeliveryAllOfAttributes 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 (*DeliveryAllOfAttributes) GetDestination

func (o *DeliveryAllOfAttributes) GetDestination() string

GetDestination returns the Destination field value

func (*DeliveryAllOfAttributes) GetDestinationOk

func (o *DeliveryAllOfAttributes) GetDestinationOk() (*string, bool)

GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.

func (*DeliveryAllOfAttributes) GetDestinationType

func (o *DeliveryAllOfAttributes) GetDestinationType() string

GetDestinationType returns the DestinationType field value

func (*DeliveryAllOfAttributes) GetDestinationTypeOk

func (o *DeliveryAllOfAttributes) GetDestinationTypeOk() (*string, bool)

GetDestinationTypeOk returns a tuple with the DestinationType field value and a boolean to check if the value has been set.

func (*DeliveryAllOfAttributes) GetSentAt

func (o *DeliveryAllOfAttributes) GetSentAt() int64

GetSentAt returns the SentAt field value if set, zero value otherwise.

func (*DeliveryAllOfAttributes) GetSentAtOk

func (o *DeliveryAllOfAttributes) GetSentAtOk() (*int64, bool)

GetSentAtOk returns a tuple with the SentAt field value if set, nil otherwise and a boolean to check if the value has been set.

func (*DeliveryAllOfAttributes) GetStatus

func (o *DeliveryAllOfAttributes) GetStatus() string

GetStatus returns the Status field value

func (*DeliveryAllOfAttributes) GetStatusOk

func (o *DeliveryAllOfAttributes) GetStatusOk() (*string, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*DeliveryAllOfAttributes) HasSentAt

func (o *DeliveryAllOfAttributes) HasSentAt() bool

HasSentAt returns a boolean if a field has been set.

func (DeliveryAllOfAttributes) MarshalJSON

func (o DeliveryAllOfAttributes) MarshalJSON() ([]byte, error)

func (*DeliveryAllOfAttributes) SetDestination

func (o *DeliveryAllOfAttributes) SetDestination(v string)

SetDestination sets field value

func (*DeliveryAllOfAttributes) SetDestinationType

func (o *DeliveryAllOfAttributes) SetDestinationType(v string)

SetDestinationType sets field value

func (*DeliveryAllOfAttributes) SetSentAt

func (o *DeliveryAllOfAttributes) SetSentAt(v int64)

SetSentAt gets a reference to the given int64 and assigns it to the SentAt field.

func (*DeliveryAllOfAttributes) SetStatus

func (o *DeliveryAllOfAttributes) SetStatus(v string)

SetStatus sets field value

func (DeliveryAllOfAttributes) ToMap

func (o DeliveryAllOfAttributes) ToMap() (map[string]interface{}, error)

func (*DeliveryAllOfAttributes) UnmarshalJSON

func (o *DeliveryAllOfAttributes) UnmarshalJSON(data []byte) (err error)

type DeliveryKey

type DeliveryKey struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

DeliveryKey struct for DeliveryKey

func NewDeliveryKey

func NewDeliveryKey(id string, type_ string) *DeliveryKey

NewDeliveryKey instantiates a new DeliveryKey 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 NewDeliveryKeyWithDefaults

func NewDeliveryKeyWithDefaults() *DeliveryKey

NewDeliveryKeyWithDefaults instantiates a new DeliveryKey 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 (*DeliveryKey) GetId

func (o *DeliveryKey) GetId() string

GetId returns the Id field value

func (*DeliveryKey) GetIdOk

func (o *DeliveryKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*DeliveryKey) GetType

func (o *DeliveryKey) GetType() string

GetType returns the Type field value

func (*DeliveryKey) GetTypeOk

func (o *DeliveryKey) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (DeliveryKey) MarshalJSON

func (o DeliveryKey) MarshalJSON() ([]byte, error)

func (*DeliveryKey) SetId

func (o *DeliveryKey) SetId(v string)

SetId sets field value

func (*DeliveryKey) SetType

func (o *DeliveryKey) SetType(v string)

SetType sets field value

func (DeliveryKey) ToMap

func (o DeliveryKey) ToMap() (map[string]interface{}, error)

func (*DeliveryKey) UnmarshalJSON

func (o *DeliveryKey) UnmarshalJSON(data []byte) (err error)

type DestinationKey

type DestinationKey struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

DestinationKey struct for DestinationKey

func NewDestinationKey

func NewDestinationKey(id string, type_ string) *DestinationKey

NewDestinationKey instantiates a new DestinationKey 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 NewDestinationKeyWithDefaults

func NewDestinationKeyWithDefaults() *DestinationKey

NewDestinationKeyWithDefaults instantiates a new DestinationKey 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 (*DestinationKey) GetId

func (o *DestinationKey) GetId() string

GetId returns the Id field value

func (*DestinationKey) GetIdOk

func (o *DestinationKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*DestinationKey) GetType

func (o *DestinationKey) GetType() string

GetType returns the Type field value

func (*DestinationKey) GetTypeOk

func (o *DestinationKey) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (DestinationKey) MarshalJSON

func (o DestinationKey) MarshalJSON() ([]byte, error)

func (*DestinationKey) SetId

func (o *DestinationKey) SetId(v string)

SetId sets field value

func (*DestinationKey) SetType

func (o *DestinationKey) SetType(v string)

SetType sets field value

func (DestinationKey) ToMap

func (o DestinationKey) ToMap() (map[string]interface{}, error)

func (*DestinationKey) UnmarshalJSON

func (o *DestinationKey) UnmarshalJSON(data []byte) (err error)

type Errors

type Errors struct {
	Errors []ErrorsErrorsInner `json:"errors"`
}

Errors struct for Errors

func NewErrors

func NewErrors(errors []ErrorsErrorsInner) *Errors

NewErrors instantiates a new Errors 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 NewErrorsWithDefaults

func NewErrorsWithDefaults() *Errors

NewErrorsWithDefaults instantiates a new Errors 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 (*Errors) GetErrors

func (o *Errors) GetErrors() []ErrorsErrorsInner

GetErrors returns the Errors field value

func (*Errors) GetErrorsOk

func (o *Errors) GetErrorsOk() ([]ErrorsErrorsInner, bool)

GetErrorsOk returns a tuple with the Errors field value and a boolean to check if the value has been set.

func (Errors) MarshalJSON

func (o Errors) MarshalJSON() ([]byte, error)

func (*Errors) SetErrors

func (o *Errors) SetErrors(v []ErrorsErrorsInner)

SetErrors sets field value

func (Errors) ToMap

func (o Errors) ToMap() (map[string]interface{}, error)

func (*Errors) UnmarshalJSON

func (o *Errors) UnmarshalJSON(data []byte) (err error)

type ErrorsErrorsInner

type ErrorsErrorsInner struct {
	Title  string  `json:"title"`
	Status int32   `json:"status"`
	Code   *string `json:"code,omitempty"`
}

ErrorsErrorsInner struct for ErrorsErrorsInner

func NewErrorsErrorsInner

func NewErrorsErrorsInner(title string, status int32) *ErrorsErrorsInner

NewErrorsErrorsInner instantiates a new ErrorsErrorsInner 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 NewErrorsErrorsInnerWithDefaults

func NewErrorsErrorsInnerWithDefaults() *ErrorsErrorsInner

NewErrorsErrorsInnerWithDefaults instantiates a new ErrorsErrorsInner 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 (*ErrorsErrorsInner) GetCode

func (o *ErrorsErrorsInner) GetCode() string

GetCode returns the Code field value if set, zero value otherwise.

func (*ErrorsErrorsInner) GetCodeOk

func (o *ErrorsErrorsInner) GetCodeOk() (*string, bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ErrorsErrorsInner) GetStatus

func (o *ErrorsErrorsInner) GetStatus() int32

GetStatus returns the Status field value

func (*ErrorsErrorsInner) GetStatusOk

func (o *ErrorsErrorsInner) GetStatusOk() (*int32, bool)

GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.

func (*ErrorsErrorsInner) GetTitle

func (o *ErrorsErrorsInner) GetTitle() string

GetTitle returns the Title field value

func (*ErrorsErrorsInner) GetTitleOk

func (o *ErrorsErrorsInner) GetTitleOk() (*string, bool)

GetTitleOk returns a tuple with the Title field value and a boolean to check if the value has been set.

func (*ErrorsErrorsInner) HasCode

func (o *ErrorsErrorsInner) HasCode() bool

HasCode returns a boolean if a field has been set.

func (ErrorsErrorsInner) MarshalJSON

func (o ErrorsErrorsInner) MarshalJSON() ([]byte, error)

func (*ErrorsErrorsInner) SetCode

func (o *ErrorsErrorsInner) SetCode(v string)

SetCode gets a reference to the given string and assigns it to the Code field.

func (*ErrorsErrorsInner) SetStatus

func (o *ErrorsErrorsInner) SetStatus(v int32)

SetStatus sets field value

func (*ErrorsErrorsInner) SetTitle

func (o *ErrorsErrorsInner) SetTitle(v string)

SetTitle sets field value

func (ErrorsErrorsInner) ToMap

func (o ErrorsErrorsInner) ToMap() (map[string]interface{}, error)

func (*ErrorsErrorsInner) UnmarshalJSON

func (o *ErrorsErrorsInner) UnmarshalJSON(data []byte) (err error)

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

type Message

type Message struct {
	Type       string                 `json:"type"`
	Attributes map[string]interface{} `json:"attributes"`
}

Message struct for Message

func NewMessage

func NewMessage(type_ string, attributes map[string]interface{}) *Message

NewMessage instantiates a new Message 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 NewMessageWithDefaults

func NewMessageWithDefaults() *Message

NewMessageWithDefaults instantiates a new Message 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 (*Message) GetAttributes

func (o *Message) GetAttributes() map[string]interface{}

GetAttributes returns the Attributes field value

func (*Message) GetAttributesOk

func (o *Message) GetAttributesOk() (map[string]interface{}, bool)

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*Message) GetType

func (o *Message) GetType() string

GetType returns the Type field value

func (*Message) GetTypeOk

func (o *Message) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (Message) MarshalJSON

func (o Message) MarshalJSON() ([]byte, error)

func (*Message) SetAttributes

func (o *Message) SetAttributes(v map[string]interface{})

SetAttributes sets field value

func (*Message) SetType

func (o *Message) SetType(v string)

SetType sets field value

func (Message) ToMap

func (o Message) ToMap() (map[string]interface{}, error)

func (*Message) UnmarshalJSON

func (o *Message) UnmarshalJSON(data []byte) (err error)

type Notification

type Notification struct {
	Id            string                         `json:"id"`
	Type          string                         `json:"type"`
	Attributes    NotificationAllOfAttributes    `json:"attributes"`
	Relationships NotificationAllOfRelationships `json:"relationships"`
}

Notification struct for Notification

func NewNotification

func NewNotification(id string, type_ string, attributes NotificationAllOfAttributes, relationships NotificationAllOfRelationships) *Notification

NewNotification instantiates a new Notification 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 NewNotificationWithDefaults

func NewNotificationWithDefaults() *Notification

NewNotificationWithDefaults instantiates a new Notification 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 (*Notification) GetAttributes

func (o *Notification) GetAttributes() NotificationAllOfAttributes

GetAttributes returns the Attributes field value

func (*Notification) GetAttributesOk

func (o *Notification) GetAttributesOk() (*NotificationAllOfAttributes, bool)

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*Notification) GetId

func (o *Notification) GetId() string

GetId returns the Id field value

func (*Notification) GetIdOk

func (o *Notification) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*Notification) GetRelationships

func (o *Notification) GetRelationships() NotificationAllOfRelationships

GetRelationships returns the Relationships field value

func (*Notification) GetRelationshipsOk

func (o *Notification) GetRelationshipsOk() (*NotificationAllOfRelationships, bool)

GetRelationshipsOk returns a tuple with the Relationships field value and a boolean to check if the value has been set.

func (*Notification) GetType

func (o *Notification) GetType() string

GetType returns the Type field value

func (*Notification) GetTypeOk

func (o *Notification) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (Notification) MarshalJSON

func (o Notification) MarshalJSON() ([]byte, error)

func (*Notification) SetAttributes

func (o *Notification) SetAttributes(v NotificationAllOfAttributes)

SetAttributes sets field value

func (*Notification) SetId

func (o *Notification) SetId(v string)

SetId sets field value

func (*Notification) SetRelationships

func (o *Notification) SetRelationships(v NotificationAllOfRelationships)

SetRelationships sets field value

func (*Notification) SetType

func (o *Notification) SetType(v string)

SetType sets field value

func (Notification) ToMap

func (o Notification) ToMap() (map[string]interface{}, error)

func (*Notification) UnmarshalJSON

func (o *Notification) UnmarshalJSON(data []byte) (err error)

type NotificationAllOfAttributes

type NotificationAllOfAttributes struct {
	Topic     string  `json:"topic"`
	Message   Message `json:"message"`
	Channel   *string `json:"channel,omitempty"`
	CreatedAt int64   `json:"created_at"`
}

NotificationAllOfAttributes struct for NotificationAllOfAttributes

func NewNotificationAllOfAttributes

func NewNotificationAllOfAttributes(topic string, message Message, createdAt int64) *NotificationAllOfAttributes

NewNotificationAllOfAttributes instantiates a new NotificationAllOfAttributes 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 NewNotificationAllOfAttributesWithDefaults

func NewNotificationAllOfAttributesWithDefaults() *NotificationAllOfAttributes

NewNotificationAllOfAttributesWithDefaults instantiates a new NotificationAllOfAttributes 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 (*NotificationAllOfAttributes) GetChannel

func (o *NotificationAllOfAttributes) GetChannel() string

GetChannel returns the Channel field value if set, zero value otherwise.

func (*NotificationAllOfAttributes) GetChannelOk

func (o *NotificationAllOfAttributes) GetChannelOk() (*string, bool)

GetChannelOk returns a tuple with the Channel field value if set, nil otherwise and a boolean to check if the value has been set.

func (*NotificationAllOfAttributes) GetCreatedAt

func (o *NotificationAllOfAttributes) GetCreatedAt() int64

GetCreatedAt returns the CreatedAt field value

func (*NotificationAllOfAttributes) GetCreatedAtOk

func (o *NotificationAllOfAttributes) GetCreatedAtOk() (*int64, bool)

GetCreatedAtOk returns a tuple with the CreatedAt field value and a boolean to check if the value has been set.

func (*NotificationAllOfAttributes) GetMessage

func (o *NotificationAllOfAttributes) GetMessage() Message

GetMessage returns the Message field value

func (*NotificationAllOfAttributes) GetMessageOk

func (o *NotificationAllOfAttributes) GetMessageOk() (*Message, bool)

GetMessageOk returns a tuple with the Message field value and a boolean to check if the value has been set.

func (*NotificationAllOfAttributes) GetTopic

func (o *NotificationAllOfAttributes) GetTopic() string

GetTopic returns the Topic field value

func (*NotificationAllOfAttributes) GetTopicOk

func (o *NotificationAllOfAttributes) GetTopicOk() (*string, bool)

GetTopicOk returns a tuple with the Topic field value and a boolean to check if the value has been set.

func (*NotificationAllOfAttributes) HasChannel

func (o *NotificationAllOfAttributes) HasChannel() bool

HasChannel returns a boolean if a field has been set.

func (NotificationAllOfAttributes) MarshalJSON

func (o NotificationAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NotificationAllOfAttributes) SetChannel

func (o *NotificationAllOfAttributes) SetChannel(v string)

SetChannel gets a reference to the given string and assigns it to the Channel field.

func (*NotificationAllOfAttributes) SetCreatedAt

func (o *NotificationAllOfAttributes) SetCreatedAt(v int64)

SetCreatedAt sets field value

func (*NotificationAllOfAttributes) SetMessage

func (o *NotificationAllOfAttributes) SetMessage(v Message)

SetMessage sets field value

func (*NotificationAllOfAttributes) SetTopic

func (o *NotificationAllOfAttributes) SetTopic(v string)

SetTopic sets field value

func (NotificationAllOfAttributes) ToMap

func (o NotificationAllOfAttributes) ToMap() (map[string]interface{}, error)

func (*NotificationAllOfAttributes) UnmarshalJSON

func (o *NotificationAllOfAttributes) UnmarshalJSON(data []byte) (err error)

type NotificationAllOfRelationships

type NotificationAllOfRelationships struct {
	Deliveries NotificationAllOfRelationshipsDeliveries `json:"deliveries"`
}

NotificationAllOfRelationships struct for NotificationAllOfRelationships

func NewNotificationAllOfRelationships

func NewNotificationAllOfRelationships(deliveries NotificationAllOfRelationshipsDeliveries) *NotificationAllOfRelationships

NewNotificationAllOfRelationships instantiates a new NotificationAllOfRelationships 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 NewNotificationAllOfRelationshipsWithDefaults

func NewNotificationAllOfRelationshipsWithDefaults() *NotificationAllOfRelationships

NewNotificationAllOfRelationshipsWithDefaults instantiates a new NotificationAllOfRelationships 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 (*NotificationAllOfRelationships) GetDeliveries

GetDeliveries returns the Deliveries field value

func (*NotificationAllOfRelationships) GetDeliveriesOk

GetDeliveriesOk returns a tuple with the Deliveries field value and a boolean to check if the value has been set.

func (NotificationAllOfRelationships) MarshalJSON

func (o NotificationAllOfRelationships) MarshalJSON() ([]byte, error)

func (*NotificationAllOfRelationships) SetDeliveries

SetDeliveries sets field value

func (NotificationAllOfRelationships) ToMap

func (o NotificationAllOfRelationships) ToMap() (map[string]interface{}, error)

func (*NotificationAllOfRelationships) UnmarshalJSON

func (o *NotificationAllOfRelationships) UnmarshalJSON(data []byte) (err error)

type NotificationAllOfRelationshipsDeliveries

type NotificationAllOfRelationshipsDeliveries struct {
	Data []DeliveryKey `json:"data"`
}

NotificationAllOfRelationshipsDeliveries struct for NotificationAllOfRelationshipsDeliveries

func NewNotificationAllOfRelationshipsDeliveries

func NewNotificationAllOfRelationshipsDeliveries(data []DeliveryKey) *NotificationAllOfRelationshipsDeliveries

NewNotificationAllOfRelationshipsDeliveries instantiates a new NotificationAllOfRelationshipsDeliveries 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 NewNotificationAllOfRelationshipsDeliveriesWithDefaults

func NewNotificationAllOfRelationshipsDeliveriesWithDefaults() *NotificationAllOfRelationshipsDeliveries

NewNotificationAllOfRelationshipsDeliveriesWithDefaults instantiates a new NotificationAllOfRelationshipsDeliveries 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 (*NotificationAllOfRelationshipsDeliveries) GetData

GetData returns the Data field value

func (*NotificationAllOfRelationshipsDeliveries) GetDataOk

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (NotificationAllOfRelationshipsDeliveries) MarshalJSON

func (*NotificationAllOfRelationshipsDeliveries) SetData

SetData sets field value

func (NotificationAllOfRelationshipsDeliveries) ToMap

func (o NotificationAllOfRelationshipsDeliveries) ToMap() (map[string]interface{}, error)

func (*NotificationAllOfRelationshipsDeliveries) UnmarshalJSON

func (o *NotificationAllOfRelationshipsDeliveries) UnmarshalJSON(data []byte) (err error)

type NotificationKey

type NotificationKey struct {
	Id   string `json:"id"`
	Type string `json:"type"`
}

NotificationKey struct for NotificationKey

func NewNotificationKey

func NewNotificationKey(id string, type_ string) *NotificationKey

NewNotificationKey instantiates a new NotificationKey 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 NewNotificationKeyWithDefaults

func NewNotificationKeyWithDefaults() *NotificationKey

NewNotificationKeyWithDefaults instantiates a new NotificationKey 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 (*NotificationKey) GetId

func (o *NotificationKey) GetId() string

GetId returns the Id field value

func (*NotificationKey) GetIdOk

func (o *NotificationKey) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (*NotificationKey) GetType

func (o *NotificationKey) GetType() string

GetType returns the Type field value

func (*NotificationKey) GetTypeOk

func (o *NotificationKey) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (NotificationKey) MarshalJSON

func (o NotificationKey) MarshalJSON() ([]byte, error)

func (*NotificationKey) SetId

func (o *NotificationKey) SetId(v string)

SetId sets field value

func (*NotificationKey) SetType

func (o *NotificationKey) SetType(v string)

SetType sets field value

func (NotificationKey) ToMap

func (o NotificationKey) ToMap() (map[string]interface{}, error)

func (*NotificationKey) UnmarshalJSON

func (o *NotificationKey) UnmarshalJSON(data []byte) (err error)

type NotificatorService

type NotificatorService struct {
	Type       string                            `json:"type"`
	Attributes NotificatorServiceAllOfAttributes `json:"attributes"`
}

NotificatorService struct for NotificatorService

func NewNotificatorService

func NewNotificatorService(type_ string, attributes NotificatorServiceAllOfAttributes) *NotificatorService

NewNotificatorService instantiates a new NotificatorService 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 NewNotificatorServiceWithDefaults

func NewNotificatorServiceWithDefaults() *NotificatorService

NewNotificatorServiceWithDefaults instantiates a new NotificatorService 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 (*NotificatorService) GetAttributes

GetAttributes returns the Attributes field value

func (*NotificatorService) GetAttributesOk

GetAttributesOk returns a tuple with the Attributes field value and a boolean to check if the value has been set.

func (*NotificatorService) GetType

func (o *NotificatorService) GetType() string

GetType returns the Type field value

func (*NotificatorService) GetTypeOk

func (o *NotificatorService) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (NotificatorService) MarshalJSON

func (o NotificatorService) MarshalJSON() ([]byte, error)

func (*NotificatorService) SetAttributes

SetAttributes sets field value

func (*NotificatorService) SetType

func (o *NotificatorService) SetType(v string)

SetType sets field value

func (NotificatorService) ToMap

func (o NotificatorService) ToMap() (map[string]interface{}, error)

func (*NotificatorService) UnmarshalJSON

func (o *NotificatorService) UnmarshalJSON(data []byte) (err error)

type NotificatorServiceAllOfAttributes

type NotificatorServiceAllOfAttributes struct {
	Endpoint string   `json:"endpoint"`
	Channels []string `json:"channels"`
}

NotificatorServiceAllOfAttributes struct for NotificatorServiceAllOfAttributes

func NewNotificatorServiceAllOfAttributes

func NewNotificatorServiceAllOfAttributes(endpoint string, channels []string) *NotificatorServiceAllOfAttributes

NewNotificatorServiceAllOfAttributes instantiates a new NotificatorServiceAllOfAttributes 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 NewNotificatorServiceAllOfAttributesWithDefaults

func NewNotificatorServiceAllOfAttributesWithDefaults() *NotificatorServiceAllOfAttributes

NewNotificatorServiceAllOfAttributesWithDefaults instantiates a new NotificatorServiceAllOfAttributes 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 (*NotificatorServiceAllOfAttributes) GetChannels

func (o *NotificatorServiceAllOfAttributes) GetChannels() []string

GetChannels returns the Channels field value

func (*NotificatorServiceAllOfAttributes) GetChannelsOk

func (o *NotificatorServiceAllOfAttributes) GetChannelsOk() ([]string, bool)

GetChannelsOk returns a tuple with the Channels field value and a boolean to check if the value has been set.

func (*NotificatorServiceAllOfAttributes) GetEndpoint

func (o *NotificatorServiceAllOfAttributes) GetEndpoint() string

GetEndpoint returns the Endpoint field value

func (*NotificatorServiceAllOfAttributes) GetEndpointOk

func (o *NotificatorServiceAllOfAttributes) GetEndpointOk() (*string, bool)

GetEndpointOk returns a tuple with the Endpoint field value and a boolean to check if the value has been set.

func (NotificatorServiceAllOfAttributes) MarshalJSON

func (o NotificatorServiceAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NotificatorServiceAllOfAttributes) SetChannels

func (o *NotificatorServiceAllOfAttributes) SetChannels(v []string)

SetChannels sets field value

func (*NotificatorServiceAllOfAttributes) SetEndpoint

func (o *NotificatorServiceAllOfAttributes) SetEndpoint(v string)

SetEndpoint sets field value

func (NotificatorServiceAllOfAttributes) ToMap

func (o NotificatorServiceAllOfAttributes) ToMap() (map[string]interface{}, error)

func (*NotificatorServiceAllOfAttributes) UnmarshalJSON

func (o *NotificatorServiceAllOfAttributes) UnmarshalJSON(data []byte) (err error)

type NotificatorServiceKey

type NotificatorServiceKey struct {
	Type string `json:"type"`
}

NotificatorServiceKey struct for NotificatorServiceKey

func NewNotificatorServiceKey

func NewNotificatorServiceKey(type_ string) *NotificatorServiceKey

NewNotificatorServiceKey instantiates a new NotificatorServiceKey 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 NewNotificatorServiceKeyWithDefaults

func NewNotificatorServiceKeyWithDefaults() *NotificatorServiceKey

NewNotificatorServiceKeyWithDefaults instantiates a new NotificatorServiceKey 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 (*NotificatorServiceKey) GetType

func (o *NotificatorServiceKey) GetType() string

GetType returns the Type field value

func (*NotificatorServiceKey) GetTypeOk

func (o *NotificatorServiceKey) GetTypeOk() (*string, bool)

GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.

func (NotificatorServiceKey) MarshalJSON

func (o NotificatorServiceKey) MarshalJSON() ([]byte, error)

func (*NotificatorServiceKey) SetType

func (o *NotificatorServiceKey) SetType(v string)

SetType sets field value

func (NotificatorServiceKey) ToMap

func (o NotificatorServiceKey) ToMap() (map[string]interface{}, error)

func (*NotificatorServiceKey) UnmarshalJSON

func (o *NotificatorServiceKey) UnmarshalJSON(data []byte) (err error)

type NullableBool

type NullableBool struct {
	// contains filtered or unexported fields
}

func NewNullableBool

func NewNullableBool(val *bool) *NullableBool

func (NullableBool) Get

func (v NullableBool) Get() *bool

func (NullableBool) IsSet

func (v NullableBool) IsSet() bool

func (NullableBool) MarshalJSON

func (v NullableBool) MarshalJSON() ([]byte, error)

func (*NullableBool) Set

func (v *NullableBool) Set(val *bool)

func (*NullableBool) UnmarshalJSON

func (v *NullableBool) UnmarshalJSON(src []byte) error

func (*NullableBool) Unset

func (v *NullableBool) Unset()

type NullableCreateNotification

type NullableCreateNotification struct {
	// contains filtered or unexported fields
}

func NewNullableCreateNotification

func NewNullableCreateNotification(val *CreateNotification) *NullableCreateNotification

func (NullableCreateNotification) Get

func (NullableCreateNotification) IsSet

func (v NullableCreateNotification) IsSet() bool

func (NullableCreateNotification) MarshalJSON

func (v NullableCreateNotification) MarshalJSON() ([]byte, error)

func (*NullableCreateNotification) Set

func (*NullableCreateNotification) UnmarshalJSON

func (v *NullableCreateNotification) UnmarshalJSON(src []byte) error

func (*NullableCreateNotification) Unset

func (v *NullableCreateNotification) Unset()

type NullableCreateNotification200Response

type NullableCreateNotification200Response struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotification200Response) Get

func (NullableCreateNotification200Response) IsSet

func (NullableCreateNotification200Response) MarshalJSON

func (v NullableCreateNotification200Response) MarshalJSON() ([]byte, error)

func (*NullableCreateNotification200Response) Set

func (*NullableCreateNotification200Response) UnmarshalJSON

func (v *NullableCreateNotification200Response) UnmarshalJSON(src []byte) error

func (*NullableCreateNotification200Response) Unset

type NullableCreateNotificationAllOfAttributes

type NullableCreateNotificationAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotificationAllOfAttributes) Get

func (NullableCreateNotificationAllOfAttributes) IsSet

func (NullableCreateNotificationAllOfAttributes) MarshalJSON

func (*NullableCreateNotificationAllOfAttributes) Set

func (*NullableCreateNotificationAllOfAttributes) UnmarshalJSON

func (v *NullableCreateNotificationAllOfAttributes) UnmarshalJSON(src []byte) error

func (*NullableCreateNotificationAllOfAttributes) Unset

type NullableCreateNotificationAllOfRelationships

type NullableCreateNotificationAllOfRelationships struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotificationAllOfRelationships) Get

func (NullableCreateNotificationAllOfRelationships) IsSet

func (NullableCreateNotificationAllOfRelationships) MarshalJSON

func (*NullableCreateNotificationAllOfRelationships) Set

func (*NullableCreateNotificationAllOfRelationships) UnmarshalJSON

func (*NullableCreateNotificationAllOfRelationships) Unset

type NullableCreateNotificationAllOfRelationshipsDestinations

type NullableCreateNotificationAllOfRelationshipsDestinations struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotificationAllOfRelationshipsDestinations) Get

func (NullableCreateNotificationAllOfRelationshipsDestinations) IsSet

func (NullableCreateNotificationAllOfRelationshipsDestinations) MarshalJSON

func (*NullableCreateNotificationAllOfRelationshipsDestinations) Set

func (*NullableCreateNotificationAllOfRelationshipsDestinations) UnmarshalJSON

func (*NullableCreateNotificationAllOfRelationshipsDestinations) Unset

type NullableCreateNotificationKey

type NullableCreateNotificationKey struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotificationKey) Get

func (NullableCreateNotificationKey) IsSet

func (NullableCreateNotificationKey) MarshalJSON

func (v NullableCreateNotificationKey) MarshalJSON() ([]byte, error)

func (*NullableCreateNotificationKey) Set

func (*NullableCreateNotificationKey) UnmarshalJSON

func (v *NullableCreateNotificationKey) UnmarshalJSON(src []byte) error

func (*NullableCreateNotificationKey) Unset

func (v *NullableCreateNotificationKey) Unset()

type NullableCreateNotificationRequest

type NullableCreateNotificationRequest struct {
	// contains filtered or unexported fields
}

func (NullableCreateNotificationRequest) Get

func (NullableCreateNotificationRequest) IsSet

func (NullableCreateNotificationRequest) MarshalJSON

func (v NullableCreateNotificationRequest) MarshalJSON() ([]byte, error)

func (*NullableCreateNotificationRequest) Set

func (*NullableCreateNotificationRequest) UnmarshalJSON

func (v *NullableCreateNotificationRequest) UnmarshalJSON(src []byte) error

func (*NullableCreateNotificationRequest) Unset

type NullableDelivery

type NullableDelivery struct {
	// contains filtered or unexported fields
}

func NewNullableDelivery

func NewNullableDelivery(val *Delivery) *NullableDelivery

func (NullableDelivery) Get

func (v NullableDelivery) Get() *Delivery

func (NullableDelivery) IsSet

func (v NullableDelivery) IsSet() bool

func (NullableDelivery) MarshalJSON

func (v NullableDelivery) MarshalJSON() ([]byte, error)

func (*NullableDelivery) Set

func (v *NullableDelivery) Set(val *Delivery)

func (*NullableDelivery) UnmarshalJSON

func (v *NullableDelivery) UnmarshalJSON(src []byte) error

func (*NullableDelivery) Unset

func (v *NullableDelivery) Unset()

type NullableDeliveryAllOfAttributes

type NullableDeliveryAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableDeliveryAllOfAttributes) Get

func (NullableDeliveryAllOfAttributes) IsSet

func (NullableDeliveryAllOfAttributes) MarshalJSON

func (v NullableDeliveryAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableDeliveryAllOfAttributes) Set

func (*NullableDeliveryAllOfAttributes) UnmarshalJSON

func (v *NullableDeliveryAllOfAttributes) UnmarshalJSON(src []byte) error

func (*NullableDeliveryAllOfAttributes) Unset

type NullableDeliveryKey

type NullableDeliveryKey struct {
	// contains filtered or unexported fields
}

func NewNullableDeliveryKey

func NewNullableDeliveryKey(val *DeliveryKey) *NullableDeliveryKey

func (NullableDeliveryKey) Get

func (NullableDeliveryKey) IsSet

func (v NullableDeliveryKey) IsSet() bool

func (NullableDeliveryKey) MarshalJSON

func (v NullableDeliveryKey) MarshalJSON() ([]byte, error)

func (*NullableDeliveryKey) Set

func (v *NullableDeliveryKey) Set(val *DeliveryKey)

func (*NullableDeliveryKey) UnmarshalJSON

func (v *NullableDeliveryKey) UnmarshalJSON(src []byte) error

func (*NullableDeliveryKey) Unset

func (v *NullableDeliveryKey) Unset()

type NullableDestinationKey

type NullableDestinationKey struct {
	// contains filtered or unexported fields
}

func NewNullableDestinationKey

func NewNullableDestinationKey(val *DestinationKey) *NullableDestinationKey

func (NullableDestinationKey) Get

func (NullableDestinationKey) IsSet

func (v NullableDestinationKey) IsSet() bool

func (NullableDestinationKey) MarshalJSON

func (v NullableDestinationKey) MarshalJSON() ([]byte, error)

func (*NullableDestinationKey) Set

func (*NullableDestinationKey) UnmarshalJSON

func (v *NullableDestinationKey) UnmarshalJSON(src []byte) error

func (*NullableDestinationKey) Unset

func (v *NullableDestinationKey) Unset()

type NullableErrors

type NullableErrors struct {
	// contains filtered or unexported fields
}

func NewNullableErrors

func NewNullableErrors(val *Errors) *NullableErrors

func (NullableErrors) Get

func (v NullableErrors) Get() *Errors

func (NullableErrors) IsSet

func (v NullableErrors) IsSet() bool

func (NullableErrors) MarshalJSON

func (v NullableErrors) MarshalJSON() ([]byte, error)

func (*NullableErrors) Set

func (v *NullableErrors) Set(val *Errors)

func (*NullableErrors) UnmarshalJSON

func (v *NullableErrors) UnmarshalJSON(src []byte) error

func (*NullableErrors) Unset

func (v *NullableErrors) Unset()

type NullableErrorsErrorsInner

type NullableErrorsErrorsInner struct {
	// contains filtered or unexported fields
}

func NewNullableErrorsErrorsInner

func NewNullableErrorsErrorsInner(val *ErrorsErrorsInner) *NullableErrorsErrorsInner

func (NullableErrorsErrorsInner) Get

func (NullableErrorsErrorsInner) IsSet

func (v NullableErrorsErrorsInner) IsSet() bool

func (NullableErrorsErrorsInner) MarshalJSON

func (v NullableErrorsErrorsInner) MarshalJSON() ([]byte, error)

func (*NullableErrorsErrorsInner) Set

func (*NullableErrorsErrorsInner) UnmarshalJSON

func (v *NullableErrorsErrorsInner) UnmarshalJSON(src []byte) error

func (*NullableErrorsErrorsInner) Unset

func (v *NullableErrorsErrorsInner) Unset()

type NullableFloat32

type NullableFloat32 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat32

func NewNullableFloat32(val *float32) *NullableFloat32

func (NullableFloat32) Get

func (v NullableFloat32) Get() *float32

func (NullableFloat32) IsSet

func (v NullableFloat32) IsSet() bool

func (NullableFloat32) MarshalJSON

func (v NullableFloat32) MarshalJSON() ([]byte, error)

func (*NullableFloat32) Set

func (v *NullableFloat32) Set(val *float32)

func (*NullableFloat32) UnmarshalJSON

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

func (*NullableFloat32) Unset

func (v *NullableFloat32) Unset()

type NullableFloat64

type NullableFloat64 struct {
	// contains filtered or unexported fields
}

func NewNullableFloat64

func NewNullableFloat64(val *float64) *NullableFloat64

func (NullableFloat64) Get

func (v NullableFloat64) Get() *float64

func (NullableFloat64) IsSet

func (v NullableFloat64) IsSet() bool

func (NullableFloat64) MarshalJSON

func (v NullableFloat64) MarshalJSON() ([]byte, error)

func (*NullableFloat64) Set

func (v *NullableFloat64) Set(val *float64)

func (*NullableFloat64) UnmarshalJSON

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

func (*NullableFloat64) Unset

func (v *NullableFloat64) Unset()

type NullableInt

type NullableInt struct {
	// contains filtered or unexported fields
}

func NewNullableInt

func NewNullableInt(val *int) *NullableInt

func (NullableInt) Get

func (v NullableInt) Get() *int

func (NullableInt) IsSet

func (v NullableInt) IsSet() bool

func (NullableInt) MarshalJSON

func (v NullableInt) MarshalJSON() ([]byte, error)

func (*NullableInt) Set

func (v *NullableInt) Set(val *int)

func (*NullableInt) UnmarshalJSON

func (v *NullableInt) UnmarshalJSON(src []byte) error

func (*NullableInt) Unset

func (v *NullableInt) Unset()

type NullableInt32

type NullableInt32 struct {
	// contains filtered or unexported fields
}

func NewNullableInt32

func NewNullableInt32(val *int32) *NullableInt32

func (NullableInt32) Get

func (v NullableInt32) Get() *int32

func (NullableInt32) IsSet

func (v NullableInt32) IsSet() bool

func (NullableInt32) MarshalJSON

func (v NullableInt32) MarshalJSON() ([]byte, error)

func (*NullableInt32) Set

func (v *NullableInt32) Set(val *int32)

func (*NullableInt32) UnmarshalJSON

func (v *NullableInt32) UnmarshalJSON(src []byte) error

func (*NullableInt32) Unset

func (v *NullableInt32) Unset()

type NullableInt64

type NullableInt64 struct {
	// contains filtered or unexported fields
}

func NewNullableInt64

func NewNullableInt64(val *int64) *NullableInt64

func (NullableInt64) Get

func (v NullableInt64) Get() *int64

func (NullableInt64) IsSet

func (v NullableInt64) IsSet() bool

func (NullableInt64) MarshalJSON

func (v NullableInt64) MarshalJSON() ([]byte, error)

func (*NullableInt64) Set

func (v *NullableInt64) Set(val *int64)

func (*NullableInt64) UnmarshalJSON

func (v *NullableInt64) UnmarshalJSON(src []byte) error

func (*NullableInt64) Unset

func (v *NullableInt64) Unset()

type NullableMessage

type NullableMessage struct {
	// contains filtered or unexported fields
}

func NewNullableMessage

func NewNullableMessage(val *Message) *NullableMessage

func (NullableMessage) Get

func (v NullableMessage) Get() *Message

func (NullableMessage) IsSet

func (v NullableMessage) IsSet() bool

func (NullableMessage) MarshalJSON

func (v NullableMessage) MarshalJSON() ([]byte, error)

func (*NullableMessage) Set

func (v *NullableMessage) Set(val *Message)

func (*NullableMessage) UnmarshalJSON

func (v *NullableMessage) UnmarshalJSON(src []byte) error

func (*NullableMessage) Unset

func (v *NullableMessage) Unset()

type NullableNotification

type NullableNotification struct {
	// contains filtered or unexported fields
}

func NewNullableNotification

func NewNullableNotification(val *Notification) *NullableNotification

func (NullableNotification) Get

func (NullableNotification) IsSet

func (v NullableNotification) IsSet() bool

func (NullableNotification) MarshalJSON

func (v NullableNotification) MarshalJSON() ([]byte, error)

func (*NullableNotification) Set

func (v *NullableNotification) Set(val *Notification)

func (*NullableNotification) UnmarshalJSON

func (v *NullableNotification) UnmarshalJSON(src []byte) error

func (*NullableNotification) Unset

func (v *NullableNotification) Unset()

type NullableNotificationAllOfAttributes

type NullableNotificationAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableNotificationAllOfAttributes) Get

func (NullableNotificationAllOfAttributes) IsSet

func (NullableNotificationAllOfAttributes) MarshalJSON

func (v NullableNotificationAllOfAttributes) MarshalJSON() ([]byte, error)

func (*NullableNotificationAllOfAttributes) Set

func (*NullableNotificationAllOfAttributes) UnmarshalJSON

func (v *NullableNotificationAllOfAttributes) UnmarshalJSON(src []byte) error

func (*NullableNotificationAllOfAttributes) Unset

type NullableNotificationAllOfRelationships

type NullableNotificationAllOfRelationships struct {
	// contains filtered or unexported fields
}

func (NullableNotificationAllOfRelationships) Get

func (NullableNotificationAllOfRelationships) IsSet

func (NullableNotificationAllOfRelationships) MarshalJSON

func (v NullableNotificationAllOfRelationships) MarshalJSON() ([]byte, error)

func (*NullableNotificationAllOfRelationships) Set

func (*NullableNotificationAllOfRelationships) UnmarshalJSON

func (v *NullableNotificationAllOfRelationships) UnmarshalJSON(src []byte) error

func (*NullableNotificationAllOfRelationships) Unset

type NullableNotificationAllOfRelationshipsDeliveries

type NullableNotificationAllOfRelationshipsDeliveries struct {
	// contains filtered or unexported fields
}

func (NullableNotificationAllOfRelationshipsDeliveries) Get

func (NullableNotificationAllOfRelationshipsDeliveries) IsSet

func (NullableNotificationAllOfRelationshipsDeliveries) MarshalJSON

func (*NullableNotificationAllOfRelationshipsDeliveries) Set

func (*NullableNotificationAllOfRelationshipsDeliveries) UnmarshalJSON

func (*NullableNotificationAllOfRelationshipsDeliveries) Unset

type NullableNotificationKey

type NullableNotificationKey struct {
	// contains filtered or unexported fields
}

func NewNullableNotificationKey

func NewNullableNotificationKey(val *NotificationKey) *NullableNotificationKey

func (NullableNotificationKey) Get

func (NullableNotificationKey) IsSet

func (v NullableNotificationKey) IsSet() bool

func (NullableNotificationKey) MarshalJSON

func (v NullableNotificationKey) MarshalJSON() ([]byte, error)

func (*NullableNotificationKey) Set

func (*NullableNotificationKey) UnmarshalJSON

func (v *NullableNotificationKey) UnmarshalJSON(src []byte) error

func (*NullableNotificationKey) Unset

func (v *NullableNotificationKey) Unset()

type NullableNotificatorService

type NullableNotificatorService struct {
	// contains filtered or unexported fields
}

func NewNullableNotificatorService

func NewNullableNotificatorService(val *NotificatorService) *NullableNotificatorService

func (NullableNotificatorService) Get

func (NullableNotificatorService) IsSet

func (v NullableNotificatorService) IsSet() bool

func (NullableNotificatorService) MarshalJSON

func (v NullableNotificatorService) MarshalJSON() ([]byte, error)

func (*NullableNotificatorService) Set

func (*NullableNotificatorService) UnmarshalJSON

func (v *NullableNotificatorService) UnmarshalJSON(src []byte) error

func (*NullableNotificatorService) Unset

func (v *NullableNotificatorService) Unset()

type NullableNotificatorServiceAllOfAttributes

type NullableNotificatorServiceAllOfAttributes struct {
	// contains filtered or unexported fields
}

func (NullableNotificatorServiceAllOfAttributes) Get

func (NullableNotificatorServiceAllOfAttributes) IsSet

func (NullableNotificatorServiceAllOfAttributes) MarshalJSON

func (*NullableNotificatorServiceAllOfAttributes) Set

func (*NullableNotificatorServiceAllOfAttributes) UnmarshalJSON

func (v *NullableNotificatorServiceAllOfAttributes) UnmarshalJSON(src []byte) error

func (*NullableNotificatorServiceAllOfAttributes) Unset

type NullableNotificatorServiceKey

type NullableNotificatorServiceKey struct {
	// contains filtered or unexported fields
}

func (NullableNotificatorServiceKey) Get

func (NullableNotificatorServiceKey) IsSet

func (NullableNotificatorServiceKey) MarshalJSON

func (v NullableNotificatorServiceKey) MarshalJSON() ([]byte, error)

func (*NullableNotificatorServiceKey) Set

func (*NullableNotificatorServiceKey) UnmarshalJSON

func (v *NullableNotificatorServiceKey) UnmarshalJSON(src []byte) error

func (*NullableNotificatorServiceKey) Unset

func (v *NullableNotificatorServiceKey) Unset()

type NullableRegisterServiceRequest

type NullableRegisterServiceRequest struct {
	// contains filtered or unexported fields
}

func (NullableRegisterServiceRequest) Get

func (NullableRegisterServiceRequest) IsSet

func (NullableRegisterServiceRequest) MarshalJSON

func (v NullableRegisterServiceRequest) MarshalJSON() ([]byte, error)

func (*NullableRegisterServiceRequest) Set

func (*NullableRegisterServiceRequest) UnmarshalJSON

func (v *NullableRegisterServiceRequest) UnmarshalJSON(src []byte) error

func (*NullableRegisterServiceRequest) Unset

func (v *NullableRegisterServiceRequest) Unset()

type NullableString

type NullableString struct {
	// contains filtered or unexported fields
}

func NewNullableString

func NewNullableString(val *string) *NullableString

func (NullableString) Get

func (v NullableString) Get() *string

func (NullableString) IsSet

func (v NullableString) IsSet() bool

func (NullableString) MarshalJSON

func (v NullableString) MarshalJSON() ([]byte, error)

func (*NullableString) Set

func (v *NullableString) Set(val *string)

func (*NullableString) UnmarshalJSON

func (v *NullableString) UnmarshalJSON(src []byte) error

func (*NullableString) Unset

func (v *NullableString) Unset()

type NullableTime

type NullableTime struct {
	// contains filtered or unexported fields
}

func NewNullableTime

func NewNullableTime(val *time.Time) *NullableTime

func (NullableTime) Get

func (v NullableTime) Get() *time.Time

func (NullableTime) IsSet

func (v NullableTime) IsSet() bool

func (NullableTime) MarshalJSON

func (v NullableTime) MarshalJSON() ([]byte, error)

func (*NullableTime) Set

func (v *NullableTime) Set(val *time.Time)

func (*NullableTime) UnmarshalJSON

func (v *NullableTime) UnmarshalJSON(src []byte) error

func (*NullableTime) Unset

func (v *NullableTime) Unset()

type RegisterServiceRequest

type RegisterServiceRequest struct {
	Data NotificatorService `json:"data"`
}

RegisterServiceRequest struct for RegisterServiceRequest

func NewRegisterServiceRequest

func NewRegisterServiceRequest(data NotificatorService) *RegisterServiceRequest

NewRegisterServiceRequest instantiates a new RegisterServiceRequest 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 NewRegisterServiceRequestWithDefaults

func NewRegisterServiceRequestWithDefaults() *RegisterServiceRequest

NewRegisterServiceRequestWithDefaults instantiates a new RegisterServiceRequest 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 (*RegisterServiceRequest) GetData

GetData returns the Data field value

func (*RegisterServiceRequest) GetDataOk

func (o *RegisterServiceRequest) GetDataOk() (*NotificatorService, bool)

GetDataOk returns a tuple with the Data field value and a boolean to check if the value has been set.

func (RegisterServiceRequest) MarshalJSON

func (o RegisterServiceRequest) MarshalJSON() ([]byte, error)

func (*RegisterServiceRequest) SetData

SetData sets field value

func (RegisterServiceRequest) ToMap

func (o RegisterServiceRequest) ToMap() (map[string]interface{}, error)

func (*RegisterServiceRequest) UnmarshalJSON

func (o *RegisterServiceRequest) UnmarshalJSON(data []byte) (err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL