plainrouter

package module
v0.5.2 Latest Latest
Warning

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

Go to latest
Published: Aug 26, 2026 License: Apache-2.0 Imports: 20 Imported by: 0

README

PlainRouter Go SDK

The official Go SDK for the PlainRouter Signals Conversion API. It is generated from PlainRouter's signed OpenAPI contract and published as a standard Go module.

Install

go get github.com/plainrouter/sdk-go@latest

Authenticate

Pass your PlainRouter bearer token through the request context:

package main

import (
	"context"
	"log"

	plainrouter "github.com/plainrouter/sdk-go"
)

func main() {
	config := plainrouter.NewConfiguration()
	client := plainrouter.NewAPIClient(config)
	ctx := context.WithValue(context.Background(), plainrouter.ContextAccessToken, "YOUR_TOKEN")

	report, _, err := client.OperationsAPI.GetEmqReport(ctx).Execute()
	if err != nil {
		log.Fatal(err)
	}

	log.Printf("%+v", report)
}

Keep tokens out of source control; load them from your environment or secret manager.

Contract and generation

  • API contract: signed OpenAPI 0.5.0
  • Generator: OpenAPI Generator 7.25.0, checksum-pinned by scripts/generate.sh
  • Module path: github.com/plainrouter/sdk-go
  • Documentation: plainrouter.com/docs

Run scripts/generate.sh to regenerate the client and scripts/check-generated.sh to verify that committed output matches the signed contract.

License

Apache-2.0

Documentation

Overview

Package plainrouter provides the official Go client for the PlainRouter Signals Conversion API.

Getting started

Create one APIClient and reuse it. NewConfiguration targets the production PlainRouter API by default. Account-scoped operations require a bearer token in the request context:

config := plainrouter.NewConfiguration()
client := plainrouter.NewAPIClient(config)
ctx := context.WithValue(
	context.Background(),
	plainrouter.ContextAccessToken,
	os.Getenv("PLAINROUTER_TOKEN"),
)
report, response, err := client.OperationsAPI.GetEmqReport(ctx).Execute()

Keep tokens out of source code and load them from an environment variable or secret manager. Most methods return a decoded result, the underlying HTTP response, and an error. Inspect the response when handling API errors or reading response metadata.

API groups

The client exposes three service groups:

  • APIClient.EventAPI submits conversion events and reads event delivery state.
  • APIClient.OperationsAPI provides reporting, reconciliation, replay, deletion, and destination test operations.
  • APIClient.SandboxAPI discovers and validates isolated synthetic sandbox events without granting access to production data.

See the PlainRouter documentation for authentication, consent-aware event shapes, sandbox usage, and operational guidance.

Example
package main

import (
	"context"
	"fmt"
	"log"
	"os"

	plainrouter "github.com/plainrouter/sdk-go"
)

func main() {
	config := plainrouter.NewConfiguration()
	client := plainrouter.NewAPIClient(config)
	ctx := context.WithValue(
		context.Background(),
		plainrouter.ContextAccessToken,
		os.Getenv("PLAINROUTER_TOKEN"),
	)

	report, response, err := client.OperationsAPI.GetEmqReport(ctx).Execute()
	if response != nil {
		defer response.Body.Close()
	}
	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("%+v\n", report)
}

Index

Examples

Constants

This section is empty.

Variables

View Source
var (
	JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`)
	XmlCheck  = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`)
)
View Source
var (
	// ContextAccessToken takes a string oauth2 access token as authentication for the request.
	ContextAccessToken = contextKey("accesstoken")

	// ContextServerIndex uses a server configuration from the index.
	ContextServerIndex = contextKey("serverIndex")

	// ContextOperationServerIndices uses a server configuration from the index mapping.
	ContextOperationServerIndices = contextKey("serverOperationIndices")

	// ContextServerVariables overrides a server configuration variables.
	ContextServerVariables = contextKey("serverVariables")

	// ContextOperationServerVariables overrides a server configuration variables using operation specific values.
	ContextOperationServerVariables = contextKey("serverOperationVariables")
)
View Source
var AllowedDeliveryStatusEnumValues = []DeliveryStatus{
	"queued",
	"sent",
	"accepted",
	"retrying",
	"failed:auth",
	"failed:permanent",
	"failed:unknown",
	"expired",
	"skipped:consent",
	"skipped:no_destination",
	"skipped:duplicate",
	"unknown_default_open_api",
}

All allowed values of DeliveryStatus enum

View Source
var AllowedDestinationCredentialSourceEnumValues = []DestinationCredentialSource{
	"oauth_connection",
	"managed_token",
	"unknown_default_open_api",
}

All allowed values of DestinationCredentialSource enum

View Source
var AllowedDestinationStatusEnumValues = []DestinationStatus{
	"active",
	"inactive",
	"unknown_default_open_api",
}

All allowed values of DestinationStatus enum

View Source
var AllowedDestinationTypeEnumValues = []DestinationType{
	"meta",
	"unknown_default_open_api",
}

All allowed values of DestinationType enum

View Source
var AllowedJurisdictionPolicyClassEnumValues = []JurisdictionPolicyClass{
	"strict_eu",
	"global",
	"unknown_default_open_api",
}

All allowed values of JurisdictionPolicyClass enum

View Source
var AllowedTrafficClassEnumValues = []TrafficClass{
	"valid",
	"invalid",
	"unknown_default_open_api",
}

All allowed values of TrafficClass enum

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request.

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 APIClient

type APIClient struct {
	EventAPI *EventAPIService

	OperationsAPI *OperationsAPIService

	SandboxAPI *SandboxAPIService
	// contains filtered or unexported fields
}

APIClient manages communication with the PlainRouter Conversion API API v0.5.0 In most cases there should be only one, shared, APIClient.

func NewAPIClient

func NewAPIClient(cfg *Configuration) *APIClient

NewAPIClient creates a new API client. Requires a userAgent string describing your application. optionally a custom http.Client to allow for advanced features such as caching.

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior

type APIKey

type APIKey struct {
	Key    string
	Prefix string
}

APIKey provides API key based authentication to a request passed via context using ContextAPIKey

type APIResponse

type APIResponse struct {
	*http.Response `json:"-"`
	Message        string `json:"message,omitempty"`
	// Operation is the name of the OpenAPI operation.
	Operation string `json:"operation,omitempty"`
	// RequestURL is the request URL. This value is always available, even if the
	// embedded *http.Response is nil.
	RequestURL string `json:"url,omitempty"`
	// Method is the HTTP method used for the request.  This value is always
	// available, even if the embedded *http.Response is nil.
	Method string `json:"method,omitempty"`
	// Payload holds the contents of the response body (which may be nil or empty).
	// This is provided here as the raw response.Body() reader will have already
	// been drained.
	Payload []byte `json:"-"`
}

APIResponse stores the API response returned by the server.

func NewAPIResponse

func NewAPIResponse(r *http.Response) *APIResponse

NewAPIResponse returns a new APIResponse object.

func NewAPIResponseWithError

func NewAPIResponseWithError(errorMessage string) *APIResponse

NewAPIResponseWithError returns a new APIResponse object with the provided error message.

type ApiCreateEventRequest

type ApiCreateEventRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiCreateEventRequest) CreateEventRequest

func (r ApiCreateEventRequest) CreateEventRequest(createEventRequest CreateEventRequest) ApiCreateEventRequest

func (ApiCreateEventRequest) Execute

func (ApiCreateEventRequest) IdempotencyKey

func (r ApiCreateEventRequest) IdempotencyKey(idempotencyKey string) ApiCreateEventRequest

Optional idempotency key. When event_id is omitted, PlainRouter uses this value as event_id. If both are supplied, they must match.

type ApiCreateSandboxKeyRequest

type ApiCreateSandboxKeyRequest struct {
	ApiService *SandboxAPIService
	// contains filtered or unexported fields
}

func (ApiCreateSandboxKeyRequest) Execute

type ApiDeleteUserDataRequest

type ApiDeleteUserDataRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiDeleteUserDataRequest) DeleteUserDataRequest

func (r ApiDeleteUserDataRequest) DeleteUserDataRequest(deleteUserDataRequest DeleteUserDataRequest) ApiDeleteUserDataRequest

func (ApiDeleteUserDataRequest) Execute

type ApiGetEmqReportRequest

type ApiGetEmqReportRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiGetEmqReportRequest) Execute

type ApiGetEventRequest

type ApiGetEventRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiGetEventRequest) Execute

type ApiGetReconciliationReportRequest

type ApiGetReconciliationReportRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiGetReconciliationReportRequest) Date

func (ApiGetReconciliationReportRequest) Execute

type ApiGetSandboxRequest

type ApiGetSandboxRequest struct {
	ApiService *SandboxAPIService
	// contains filtered or unexported fields
}

func (ApiGetSandboxRequest) Execute

type ApiListEventsByCursorRequest

type ApiListEventsByCursorRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiListEventsByCursorRequest) Cursor

Opaque cursor returned by a previous response. Omit it on the first request.

func (ApiListEventsByCursorRequest) Execute

func (ApiListEventsByCursorRequest) PerPage

Events per cursor page, capped at 100.

type ApiListEventsRequest

type ApiListEventsRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiListEventsRequest) Execute

func (ApiListEventsRequest) PerPage

func (r ApiListEventsRequest) PerPage(perPage int32) ApiListEventsRequest

Events per page, capped at 100.

type ApiReplayDeliveriesRequest

type ApiReplayDeliveriesRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiReplayDeliveriesRequest) Execute

func (ApiReplayDeliveriesRequest) ReplayDeliveriesRequest

func (r ApiReplayDeliveriesRequest) ReplayDeliveriesRequest(replayDeliveriesRequest ReplayDeliveriesRequest) ApiReplayDeliveriesRequest

type ApiSendTestPurchaseRequest

type ApiSendTestPurchaseRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiSendTestPurchaseRequest) Execute

func (ApiSendTestPurchaseRequest) SendTestPurchaseRequest

func (r ApiSendTestPurchaseRequest) SendTestPurchaseRequest(sendTestPurchaseRequest SendTestPurchaseRequest) ApiSendTestPurchaseRequest

type ApiSetDestinationTestModeRequest

type ApiSetDestinationTestModeRequest struct {
	ApiService *OperationsAPIService
	// contains filtered or unexported fields
}

func (ApiSetDestinationTestModeRequest) Execute

func (ApiSetDestinationTestModeRequest) SetDestinationTestModeRequest

func (r ApiSetDestinationTestModeRequest) SetDestinationTestModeRequest(setDestinationTestModeRequest SetDestinationTestModeRequest) ApiSetDestinationTestModeRequest

type ApiValidateSandboxEventRequest

type ApiValidateSandboxEventRequest struct {
	ApiService *SandboxAPIService
	// contains filtered or unexported fields
}

func (ApiValidateSandboxEventRequest) Execute

func (ApiValidateSandboxEventRequest) ValidateSandboxEventRequest

func (r ApiValidateSandboxEventRequest) ValidateSandboxEventRequest(validateSandboxEventRequest ValidateSandboxEventRequest) ApiValidateSandboxEventRequest

type ApiValidateSandboxEventWithKeyRequest

type ApiValidateSandboxEventWithKeyRequest struct {
	ApiService *SandboxAPIService
	// contains filtered or unexported fields
}

func (ApiValidateSandboxEventWithKeyRequest) Execute

func (ApiValidateSandboxEventWithKeyRequest) ValidateSandboxEventRequest

func (r ApiValidateSandboxEventWithKeyRequest) ValidateSandboxEventRequest(validateSandboxEventRequest ValidateSandboxEventRequest) ApiValidateSandboxEventWithKeyRequest

type ApiVerifySignalIngestionRequest

type ApiVerifySignalIngestionRequest struct {
	ApiService *EventAPIService
	// contains filtered or unexported fields
}

func (ApiVerifySignalIngestionRequest) Execute

type BasicAuth

type BasicAuth struct {
	UserName string `json:"userName,omitempty"`
	Password string `json:"password,omitempty"`
}

BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth

type Configuration

type Configuration struct {
	Host             string            `json:"host,omitempty"`
	Scheme           string            `json:"scheme,omitempty"`
	DefaultHeader    map[string]string `json:"defaultHeader,omitempty"`
	UserAgent        string            `json:"userAgent,omitempty"`
	Debug            bool              `json:"debug,omitempty"`
	Servers          ServerConfigurations
	OperationServers map[string]ServerConfigurations
	HTTPClient       *http.Client
}

Configuration stores the configuration of the API client

func NewConfiguration

func NewConfiguration() *Configuration

NewConfiguration returns a new Configuration object

func (*Configuration) AddDefaultHeader

func (c *Configuration) AddDefaultHeader(key string, value string)

AddDefaultHeader adds a new HTTP header to the default header in the request

func (*Configuration) ServerURL

func (c *Configuration) ServerURL(index int, variables map[string]string) (string, error)

ServerURL returns URL based on server settings

func (*Configuration) ServerURLWithContext

func (c *Configuration) ServerURLWithContext(ctx context.Context, endpoint string) (string, error)

ServerURLWithContext returns a new server URL given an endpoint

type CreateEvent200Response

type CreateEvent200Response struct {
	EventId              string `json:"event_id"`
	Duplicate            bool   `json:"duplicate"`
	AdditionalProperties map[string]interface{}
}

CreateEvent200Response struct for CreateEvent200Response

func NewCreateEvent200Response

func NewCreateEvent200Response(eventId string, duplicate bool) *CreateEvent200Response

NewCreateEvent200Response instantiates a new CreateEvent200Response 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 NewCreateEvent200ResponseWithDefaults

func NewCreateEvent200ResponseWithDefaults() *CreateEvent200Response

NewCreateEvent200ResponseWithDefaults instantiates a new CreateEvent200Response 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 (*CreateEvent200Response) GetDuplicate

func (o *CreateEvent200Response) GetDuplicate() bool

GetDuplicate returns the Duplicate field value

func (*CreateEvent200Response) GetDuplicateOk

func (o *CreateEvent200Response) GetDuplicateOk() (*bool, bool)

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

func (*CreateEvent200Response) GetEventId

func (o *CreateEvent200Response) GetEventId() string

GetEventId returns the EventId field value

func (*CreateEvent200Response) GetEventIdOk

func (o *CreateEvent200Response) GetEventIdOk() (*string, bool)

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

func (CreateEvent200Response) MarshalJSON

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

func (*CreateEvent200Response) SetDuplicate

func (o *CreateEvent200Response) SetDuplicate(v bool)

SetDuplicate sets field value

func (*CreateEvent200Response) SetEventId

func (o *CreateEvent200Response) SetEventId(v string)

SetEventId sets field value

func (CreateEvent200Response) ToMap

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

func (*CreateEvent200Response) UnmarshalJSON

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

type CreateEventRequest

type CreateEventRequest struct {
	CreateEventRequestAnyOf  *CreateEventRequestAnyOf
	CreateEventRequestAnyOf1 *CreateEventRequestAnyOf1
}

CreateEventRequest struct for CreateEventRequest

func (CreateEventRequest) MarshalJSON

func (src CreateEventRequest) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CreateEventRequest) UnmarshalJSON

func (dst *CreateEventRequest) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CreateEventRequestAnyOf

type CreateEventRequestAnyOf struct {
	// Caller-supplied idempotency key; maximum 128 characters.
	EventId *string `json:"event_id,omitempty"`
	// Signal event name; maximum 100 characters.
	EventName string `json:"event_name"`
	// Optional parent event id; maximum 128 characters.
	ParentEventId *string                           `json:"parent_event_id,omitempty"`
	EventTime     *CreateEventRequestAnyOfEventTime `json:"event_time,omitempty"`
	// Optional absolute source URL.
	EventSource *string `json:"event_source,omitempty"`
	// Optional action source; defaults to website and is limited to 50 characters.
	ActionSource *string `json:"action_source,omitempty"`
	// Optional visitor identifier; maximum 255 characters.
	VisitorId *string `json:"visitor_id,omitempty"`
	// Legal basis for processing. Legitimate-interest revenue lifecycle events are rejected; use an authenticated server adapter.
	ConsentBasis string `json:"consent_basis"`
	// Consent state supplied with the event.
	Consent map[string]*interface{} `json:"consent,omitempty"`
	// Consent Mode v2 signal values supplied with the event.
	ConsentMode map[string]*interface{} `json:"consent_mode,omitempty"`
	// TCF v2 data containing string and optional captured_at.
	Tcf map[string]*interface{} `json:"tcf,omitempty"`
	// Identity fields accepted by the tracker.
	UserData map[string]*interface{} `json:"user_data,omitempty"`
	// Advertising click identifiers.
	ClickIds             map[string]*interface{}           `json:"click_ids,omitempty"`
	ValueData            *CreateEventRequestAnyOfValueData `json:"value_data,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateEventRequestAnyOf struct for CreateEventRequestAnyOf

func NewCreateEventRequestAnyOf

func NewCreateEventRequestAnyOf(eventName string, consentBasis string) *CreateEventRequestAnyOf

NewCreateEventRequestAnyOf instantiates a new CreateEventRequestAnyOf 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 NewCreateEventRequestAnyOfWithDefaults

func NewCreateEventRequestAnyOfWithDefaults() *CreateEventRequestAnyOf

NewCreateEventRequestAnyOfWithDefaults instantiates a new CreateEventRequestAnyOf 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 (*CreateEventRequestAnyOf) GetActionSource

func (o *CreateEventRequestAnyOf) GetActionSource() string

GetActionSource returns the ActionSource field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetActionSourceOk

func (o *CreateEventRequestAnyOf) GetActionSourceOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetClickIds

func (o *CreateEventRequestAnyOf) GetClickIds() map[string]*interface{}

GetClickIds returns the ClickIds field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetClickIdsOk

func (o *CreateEventRequestAnyOf) GetClickIdsOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf) GetConsent

func (o *CreateEventRequestAnyOf) GetConsent() map[string]*interface{}

GetConsent returns the Consent field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetConsentBasis

func (o *CreateEventRequestAnyOf) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*CreateEventRequestAnyOf) GetConsentBasisOk

func (o *CreateEventRequestAnyOf) GetConsentBasisOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetConsentMode

func (o *CreateEventRequestAnyOf) GetConsentMode() map[string]*interface{}

GetConsentMode returns the ConsentMode field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetConsentModeOk

func (o *CreateEventRequestAnyOf) GetConsentModeOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf) GetConsentOk

func (o *CreateEventRequestAnyOf) GetConsentOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf) GetEventId

func (o *CreateEventRequestAnyOf) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetEventIdOk

func (o *CreateEventRequestAnyOf) GetEventIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetEventName

func (o *CreateEventRequestAnyOf) GetEventName() string

GetEventName returns the EventName field value

func (*CreateEventRequestAnyOf) GetEventNameOk

func (o *CreateEventRequestAnyOf) GetEventNameOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetEventSource

func (o *CreateEventRequestAnyOf) GetEventSource() string

GetEventSource returns the EventSource field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetEventSourceOk

func (o *CreateEventRequestAnyOf) GetEventSourceOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetEventTime

GetEventTime returns the EventTime field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetEventTimeOk

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

func (*CreateEventRequestAnyOf) GetParentEventId

func (o *CreateEventRequestAnyOf) GetParentEventId() string

GetParentEventId returns the ParentEventId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetParentEventIdOk

func (o *CreateEventRequestAnyOf) GetParentEventIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) GetTcf

func (o *CreateEventRequestAnyOf) GetTcf() map[string]*interface{}

GetTcf returns the Tcf field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetTcfOk

func (o *CreateEventRequestAnyOf) GetTcfOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf) GetUserData

func (o *CreateEventRequestAnyOf) GetUserData() map[string]*interface{}

GetUserData returns the UserData field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetUserDataOk

func (o *CreateEventRequestAnyOf) GetUserDataOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf) GetValueData

GetValueData returns the ValueData field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetValueDataOk

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

func (*CreateEventRequestAnyOf) GetVisitorId

func (o *CreateEventRequestAnyOf) GetVisitorId() string

GetVisitorId returns the VisitorId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf) GetVisitorIdOk

func (o *CreateEventRequestAnyOf) GetVisitorIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf) HasActionSource

func (o *CreateEventRequestAnyOf) HasActionSource() bool

HasActionSource returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasClickIds

func (o *CreateEventRequestAnyOf) HasClickIds() bool

HasClickIds returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasConsent

func (o *CreateEventRequestAnyOf) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasConsentMode

func (o *CreateEventRequestAnyOf) HasConsentMode() bool

HasConsentMode returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasEventId

func (o *CreateEventRequestAnyOf) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasEventSource

func (o *CreateEventRequestAnyOf) HasEventSource() bool

HasEventSource returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasEventTime

func (o *CreateEventRequestAnyOf) HasEventTime() bool

HasEventTime returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasParentEventId

func (o *CreateEventRequestAnyOf) HasParentEventId() bool

HasParentEventId returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasTcf

func (o *CreateEventRequestAnyOf) HasTcf() bool

HasTcf returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasUserData

func (o *CreateEventRequestAnyOf) HasUserData() bool

HasUserData returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasValueData

func (o *CreateEventRequestAnyOf) HasValueData() bool

HasValueData returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf) HasVisitorId

func (o *CreateEventRequestAnyOf) HasVisitorId() bool

HasVisitorId returns a boolean if a field has been set.

func (CreateEventRequestAnyOf) MarshalJSON

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

func (*CreateEventRequestAnyOf) SetActionSource

func (o *CreateEventRequestAnyOf) SetActionSource(v string)

SetActionSource gets a reference to the given string and assigns it to the ActionSource field.

func (*CreateEventRequestAnyOf) SetClickIds

func (o *CreateEventRequestAnyOf) SetClickIds(v map[string]*interface{})

SetClickIds gets a reference to the given map[string]*interface{} and assigns it to the ClickIds field.

func (*CreateEventRequestAnyOf) SetConsent

func (o *CreateEventRequestAnyOf) SetConsent(v map[string]*interface{})

SetConsent gets a reference to the given map[string]*interface{} and assigns it to the Consent field.

func (*CreateEventRequestAnyOf) SetConsentBasis

func (o *CreateEventRequestAnyOf) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*CreateEventRequestAnyOf) SetConsentMode

func (o *CreateEventRequestAnyOf) SetConsentMode(v map[string]*interface{})

SetConsentMode gets a reference to the given map[string]*interface{} and assigns it to the ConsentMode field.

func (*CreateEventRequestAnyOf) SetEventId

func (o *CreateEventRequestAnyOf) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (*CreateEventRequestAnyOf) SetEventName

func (o *CreateEventRequestAnyOf) SetEventName(v string)

SetEventName sets field value

func (*CreateEventRequestAnyOf) SetEventSource

func (o *CreateEventRequestAnyOf) SetEventSource(v string)

SetEventSource gets a reference to the given string and assigns it to the EventSource field.

func (*CreateEventRequestAnyOf) SetEventTime

SetEventTime gets a reference to the given CreateEventRequestAnyOfEventTime and assigns it to the EventTime field.

func (*CreateEventRequestAnyOf) SetParentEventId

func (o *CreateEventRequestAnyOf) SetParentEventId(v string)

SetParentEventId gets a reference to the given string and assigns it to the ParentEventId field.

func (*CreateEventRequestAnyOf) SetTcf

func (o *CreateEventRequestAnyOf) SetTcf(v map[string]*interface{})

SetTcf gets a reference to the given map[string]*interface{} and assigns it to the Tcf field.

func (*CreateEventRequestAnyOf) SetUserData

func (o *CreateEventRequestAnyOf) SetUserData(v map[string]*interface{})

SetUserData gets a reference to the given map[string]*interface{} and assigns it to the UserData field.

func (*CreateEventRequestAnyOf) SetValueData

SetValueData gets a reference to the given CreateEventRequestAnyOfValueData and assigns it to the ValueData field.

func (*CreateEventRequestAnyOf) SetVisitorId

func (o *CreateEventRequestAnyOf) SetVisitorId(v string)

SetVisitorId gets a reference to the given string and assigns it to the VisitorId field.

func (CreateEventRequestAnyOf) ToMap

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

func (*CreateEventRequestAnyOf) UnmarshalJSON

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

type CreateEventRequestAnyOf1

type CreateEventRequestAnyOf1 struct {
	// Caller-supplied idempotency key; maximum 128 characters.
	EventId *string `json:"event_id,omitempty"`
	// Signal event name; maximum 100 characters.
	EventName string `json:"event_name"`
	// Optional parent event id; maximum 128 characters.
	ParentEventId *string                           `json:"parent_event_id,omitempty"`
	EventTime     *CreateEventRequestAnyOfEventTime `json:"event_time,omitempty"`
	// Optional absolute source URL.
	EventSource *string `json:"event_source,omitempty"`
	// Optional action source; defaults to website and is limited to 50 characters.
	ActionSource *string `json:"action_source,omitempty"`
	// Optional visitor identifier; maximum 255 characters.
	VisitorId *string `json:"visitor_id,omitempty"`
	// Legal basis for processing. Legitimate-interest revenue lifecycle events are rejected; use an authenticated server adapter.
	ConsentBasis string `json:"consent_basis"`
	// Consent state supplied with the event.
	Consent map[string]*interface{} `json:"consent,omitempty"`
	// Consent Mode v2 signal values supplied with the event.
	ConsentMode map[string]*interface{} `json:"consent_mode,omitempty"`
	// TCF v2 data containing string and optional captured_at.
	Tcf map[string]*interface{} `json:"tcf,omitempty"`
	// Identity fields accepted by the tracker.
	UserData map[string]*interface{} `json:"user_data,omitempty"`
	// Advertising click identifiers.
	ClickIds             map[string]*interface{}           `json:"click_ids,omitempty"`
	ValueData            *CreateEventRequestAnyOfValueData `json:"value_data,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateEventRequestAnyOf1 struct for CreateEventRequestAnyOf1

func NewCreateEventRequestAnyOf1

func NewCreateEventRequestAnyOf1(eventName string, consentBasis string) *CreateEventRequestAnyOf1

NewCreateEventRequestAnyOf1 instantiates a new CreateEventRequestAnyOf1 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 NewCreateEventRequestAnyOf1WithDefaults

func NewCreateEventRequestAnyOf1WithDefaults() *CreateEventRequestAnyOf1

NewCreateEventRequestAnyOf1WithDefaults instantiates a new CreateEventRequestAnyOf1 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 (*CreateEventRequestAnyOf1) GetActionSource

func (o *CreateEventRequestAnyOf1) GetActionSource() string

GetActionSource returns the ActionSource field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetActionSourceOk

func (o *CreateEventRequestAnyOf1) GetActionSourceOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetClickIds

func (o *CreateEventRequestAnyOf1) GetClickIds() map[string]*interface{}

GetClickIds returns the ClickIds field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetClickIdsOk

func (o *CreateEventRequestAnyOf1) GetClickIdsOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf1) GetConsent

func (o *CreateEventRequestAnyOf1) GetConsent() map[string]*interface{}

GetConsent returns the Consent field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetConsentBasis

func (o *CreateEventRequestAnyOf1) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*CreateEventRequestAnyOf1) GetConsentBasisOk

func (o *CreateEventRequestAnyOf1) GetConsentBasisOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetConsentMode

func (o *CreateEventRequestAnyOf1) GetConsentMode() map[string]*interface{}

GetConsentMode returns the ConsentMode field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetConsentModeOk

func (o *CreateEventRequestAnyOf1) GetConsentModeOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf1) GetConsentOk

func (o *CreateEventRequestAnyOf1) GetConsentOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf1) GetEventId

func (o *CreateEventRequestAnyOf1) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetEventIdOk

func (o *CreateEventRequestAnyOf1) GetEventIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetEventName

func (o *CreateEventRequestAnyOf1) GetEventName() string

GetEventName returns the EventName field value

func (*CreateEventRequestAnyOf1) GetEventNameOk

func (o *CreateEventRequestAnyOf1) GetEventNameOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetEventSource

func (o *CreateEventRequestAnyOf1) GetEventSource() string

GetEventSource returns the EventSource field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetEventSourceOk

func (o *CreateEventRequestAnyOf1) GetEventSourceOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetEventTime

GetEventTime returns the EventTime field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetEventTimeOk

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

func (*CreateEventRequestAnyOf1) GetParentEventId

func (o *CreateEventRequestAnyOf1) GetParentEventId() string

GetParentEventId returns the ParentEventId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetParentEventIdOk

func (o *CreateEventRequestAnyOf1) GetParentEventIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) GetTcf

func (o *CreateEventRequestAnyOf1) GetTcf() map[string]*interface{}

GetTcf returns the Tcf field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetTcfOk

func (o *CreateEventRequestAnyOf1) GetTcfOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf1) GetUserData

func (o *CreateEventRequestAnyOf1) GetUserData() map[string]*interface{}

GetUserData returns the UserData field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetUserDataOk

func (o *CreateEventRequestAnyOf1) GetUserDataOk() (map[string]*interface{}, bool)

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

func (*CreateEventRequestAnyOf1) GetValueData

GetValueData returns the ValueData field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetValueDataOk

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

func (*CreateEventRequestAnyOf1) GetVisitorId

func (o *CreateEventRequestAnyOf1) GetVisitorId() string

GetVisitorId returns the VisitorId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOf1) GetVisitorIdOk

func (o *CreateEventRequestAnyOf1) GetVisitorIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOf1) HasActionSource

func (o *CreateEventRequestAnyOf1) HasActionSource() bool

HasActionSource returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasClickIds

func (o *CreateEventRequestAnyOf1) HasClickIds() bool

HasClickIds returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasConsent

func (o *CreateEventRequestAnyOf1) HasConsent() bool

HasConsent returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasConsentMode

func (o *CreateEventRequestAnyOf1) HasConsentMode() bool

HasConsentMode returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasEventId

func (o *CreateEventRequestAnyOf1) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasEventSource

func (o *CreateEventRequestAnyOf1) HasEventSource() bool

HasEventSource returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasEventTime

func (o *CreateEventRequestAnyOf1) HasEventTime() bool

HasEventTime returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasParentEventId

func (o *CreateEventRequestAnyOf1) HasParentEventId() bool

HasParentEventId returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasTcf

func (o *CreateEventRequestAnyOf1) HasTcf() bool

HasTcf returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasUserData

func (o *CreateEventRequestAnyOf1) HasUserData() bool

HasUserData returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasValueData

func (o *CreateEventRequestAnyOf1) HasValueData() bool

HasValueData returns a boolean if a field has been set.

func (*CreateEventRequestAnyOf1) HasVisitorId

func (o *CreateEventRequestAnyOf1) HasVisitorId() bool

HasVisitorId returns a boolean if a field has been set.

func (CreateEventRequestAnyOf1) MarshalJSON

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

func (*CreateEventRequestAnyOf1) SetActionSource

func (o *CreateEventRequestAnyOf1) SetActionSource(v string)

SetActionSource gets a reference to the given string and assigns it to the ActionSource field.

func (*CreateEventRequestAnyOf1) SetClickIds

func (o *CreateEventRequestAnyOf1) SetClickIds(v map[string]*interface{})

SetClickIds gets a reference to the given map[string]*interface{} and assigns it to the ClickIds field.

func (*CreateEventRequestAnyOf1) SetConsent

func (o *CreateEventRequestAnyOf1) SetConsent(v map[string]*interface{})

SetConsent gets a reference to the given map[string]*interface{} and assigns it to the Consent field.

func (*CreateEventRequestAnyOf1) SetConsentBasis

func (o *CreateEventRequestAnyOf1) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*CreateEventRequestAnyOf1) SetConsentMode

func (o *CreateEventRequestAnyOf1) SetConsentMode(v map[string]*interface{})

SetConsentMode gets a reference to the given map[string]*interface{} and assigns it to the ConsentMode field.

func (*CreateEventRequestAnyOf1) SetEventId

func (o *CreateEventRequestAnyOf1) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (*CreateEventRequestAnyOf1) SetEventName

func (o *CreateEventRequestAnyOf1) SetEventName(v string)

SetEventName sets field value

func (*CreateEventRequestAnyOf1) SetEventSource

func (o *CreateEventRequestAnyOf1) SetEventSource(v string)

SetEventSource gets a reference to the given string and assigns it to the EventSource field.

func (*CreateEventRequestAnyOf1) SetEventTime

SetEventTime gets a reference to the given CreateEventRequestAnyOfEventTime and assigns it to the EventTime field.

func (*CreateEventRequestAnyOf1) SetParentEventId

func (o *CreateEventRequestAnyOf1) SetParentEventId(v string)

SetParentEventId gets a reference to the given string and assigns it to the ParentEventId field.

func (*CreateEventRequestAnyOf1) SetTcf

func (o *CreateEventRequestAnyOf1) SetTcf(v map[string]*interface{})

SetTcf gets a reference to the given map[string]*interface{} and assigns it to the Tcf field.

func (*CreateEventRequestAnyOf1) SetUserData

func (o *CreateEventRequestAnyOf1) SetUserData(v map[string]*interface{})

SetUserData gets a reference to the given map[string]*interface{} and assigns it to the UserData field.

func (*CreateEventRequestAnyOf1) SetValueData

SetValueData gets a reference to the given CreateEventRequestAnyOfValueData and assigns it to the ValueData field.

func (*CreateEventRequestAnyOf1) SetVisitorId

func (o *CreateEventRequestAnyOf1) SetVisitorId(v string)

SetVisitorId gets a reference to the given string and assigns it to the VisitorId field.

func (CreateEventRequestAnyOf1) ToMap

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

func (*CreateEventRequestAnyOf1) UnmarshalJSON

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

type CreateEventRequestAnyOfEventTime

type CreateEventRequestAnyOfEventTime struct {
	Int32  *int32
	String *string
}

CreateEventRequestAnyOfEventTime Unix timestamp or ISO-8601 date-time. Defaults to receipt time.

func (CreateEventRequestAnyOfEventTime) MarshalJSON

func (src CreateEventRequestAnyOfEventTime) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*CreateEventRequestAnyOfEventTime) UnmarshalJSON

func (dst *CreateEventRequestAnyOfEventTime) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type CreateEventRequestAnyOfValueData

type CreateEventRequestAnyOfValueData struct {
	Value                *string       `json:"value,omitempty"`
	Currency             *string       `json:"currency,omitempty"`
	OrderId              *string       `json:"order_id,omitempty"`
	Contents             []interface{} `json:"contents,omitempty"`
	NumItems             *int32        `json:"num_items,omitempty"`
	AdditionalProperties map[string]interface{}
}

CreateEventRequestAnyOfValueData Optional commerce data. Contents accepts at most 50 items and 16 KB serialized.

func NewCreateEventRequestAnyOfValueData

func NewCreateEventRequestAnyOfValueData() *CreateEventRequestAnyOfValueData

NewCreateEventRequestAnyOfValueData instantiates a new CreateEventRequestAnyOfValueData 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 NewCreateEventRequestAnyOfValueDataWithDefaults

func NewCreateEventRequestAnyOfValueDataWithDefaults() *CreateEventRequestAnyOfValueData

NewCreateEventRequestAnyOfValueDataWithDefaults instantiates a new CreateEventRequestAnyOfValueData 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 (*CreateEventRequestAnyOfValueData) GetContents

func (o *CreateEventRequestAnyOfValueData) GetContents() []interface{}

GetContents returns the Contents field value if set, zero value otherwise.

func (*CreateEventRequestAnyOfValueData) GetContentsOk

func (o *CreateEventRequestAnyOfValueData) GetContentsOk() ([]interface{}, bool)

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

func (*CreateEventRequestAnyOfValueData) GetCurrency

func (o *CreateEventRequestAnyOfValueData) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*CreateEventRequestAnyOfValueData) GetCurrencyOk

func (o *CreateEventRequestAnyOfValueData) GetCurrencyOk() (*string, bool)

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

func (*CreateEventRequestAnyOfValueData) GetNumItems

func (o *CreateEventRequestAnyOfValueData) GetNumItems() int32

GetNumItems returns the NumItems field value if set, zero value otherwise.

func (*CreateEventRequestAnyOfValueData) GetNumItemsOk

func (o *CreateEventRequestAnyOfValueData) GetNumItemsOk() (*int32, bool)

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

func (*CreateEventRequestAnyOfValueData) GetOrderId

func (o *CreateEventRequestAnyOfValueData) GetOrderId() string

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*CreateEventRequestAnyOfValueData) GetOrderIdOk

func (o *CreateEventRequestAnyOfValueData) GetOrderIdOk() (*string, bool)

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

func (*CreateEventRequestAnyOfValueData) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*CreateEventRequestAnyOfValueData) GetValueOk

func (o *CreateEventRequestAnyOfValueData) GetValueOk() (*string, bool)

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

func (*CreateEventRequestAnyOfValueData) HasContents

func (o *CreateEventRequestAnyOfValueData) HasContents() bool

HasContents returns a boolean if a field has been set.

func (*CreateEventRequestAnyOfValueData) HasCurrency

func (o *CreateEventRequestAnyOfValueData) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*CreateEventRequestAnyOfValueData) HasNumItems

func (o *CreateEventRequestAnyOfValueData) HasNumItems() bool

HasNumItems returns a boolean if a field has been set.

func (*CreateEventRequestAnyOfValueData) HasOrderId

func (o *CreateEventRequestAnyOfValueData) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*CreateEventRequestAnyOfValueData) HasValue

func (o *CreateEventRequestAnyOfValueData) HasValue() bool

HasValue returns a boolean if a field has been set.

func (CreateEventRequestAnyOfValueData) MarshalJSON

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

func (*CreateEventRequestAnyOfValueData) SetContents

func (o *CreateEventRequestAnyOfValueData) SetContents(v []interface{})

SetContents gets a reference to the given []interface{} and assigns it to the Contents field.

func (*CreateEventRequestAnyOfValueData) SetCurrency

func (o *CreateEventRequestAnyOfValueData) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*CreateEventRequestAnyOfValueData) SetNumItems

func (o *CreateEventRequestAnyOfValueData) SetNumItems(v int32)

SetNumItems gets a reference to the given int32 and assigns it to the NumItems field.

func (*CreateEventRequestAnyOfValueData) SetOrderId

func (o *CreateEventRequestAnyOfValueData) SetOrderId(v string)

SetOrderId gets a reference to the given string and assigns it to the OrderId field.

func (*CreateEventRequestAnyOfValueData) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (CreateEventRequestAnyOfValueData) ToMap

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

func (*CreateEventRequestAnyOfValueData) UnmarshalJSON

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

type CreateSandboxKey201Response

type CreateSandboxKey201Response struct {
	ApiKey               string                         `json:"api_key"`
	TokenType            string                         `json:"token_type"`
	ExpiresIn            int32                          `json:"expires_in"`
	ExpiresAt            string                         `json:"expires_at"`
	Scope                string                         `json:"scope"`
	ProductionAccess     bool                           `json:"production_access"`
	Use                  CreateSandboxKey201ResponseUse `json:"use"`
	AdditionalProperties map[string]interface{}
}

CreateSandboxKey201Response struct for CreateSandboxKey201Response

func NewCreateSandboxKey201Response

func NewCreateSandboxKey201Response(apiKey string, tokenType string, expiresIn int32, expiresAt string, scope string, productionAccess bool, use CreateSandboxKey201ResponseUse) *CreateSandboxKey201Response

NewCreateSandboxKey201Response instantiates a new CreateSandboxKey201Response 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 NewCreateSandboxKey201ResponseWithDefaults

func NewCreateSandboxKey201ResponseWithDefaults() *CreateSandboxKey201Response

NewCreateSandboxKey201ResponseWithDefaults instantiates a new CreateSandboxKey201Response 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 (*CreateSandboxKey201Response) GetApiKey

func (o *CreateSandboxKey201Response) GetApiKey() string

GetApiKey returns the ApiKey field value

func (*CreateSandboxKey201Response) GetApiKeyOk

func (o *CreateSandboxKey201Response) GetApiKeyOk() (*string, bool)

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

func (*CreateSandboxKey201Response) GetExpiresAt

func (o *CreateSandboxKey201Response) GetExpiresAt() string

GetExpiresAt returns the ExpiresAt field value

func (*CreateSandboxKey201Response) GetExpiresAtOk

func (o *CreateSandboxKey201Response) GetExpiresAtOk() (*string, bool)

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

func (*CreateSandboxKey201Response) GetExpiresIn

func (o *CreateSandboxKey201Response) GetExpiresIn() int32

GetExpiresIn returns the ExpiresIn field value

func (*CreateSandboxKey201Response) GetExpiresInOk

func (o *CreateSandboxKey201Response) GetExpiresInOk() (*int32, bool)

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

func (*CreateSandboxKey201Response) GetProductionAccess

func (o *CreateSandboxKey201Response) GetProductionAccess() bool

GetProductionAccess returns the ProductionAccess field value

func (*CreateSandboxKey201Response) GetProductionAccessOk

func (o *CreateSandboxKey201Response) GetProductionAccessOk() (*bool, bool)

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

func (*CreateSandboxKey201Response) GetScope

func (o *CreateSandboxKey201Response) GetScope() string

GetScope returns the Scope field value

func (*CreateSandboxKey201Response) GetScopeOk

func (o *CreateSandboxKey201Response) GetScopeOk() (*string, bool)

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

func (*CreateSandboxKey201Response) GetTokenType

func (o *CreateSandboxKey201Response) GetTokenType() string

GetTokenType returns the TokenType field value

func (*CreateSandboxKey201Response) GetTokenTypeOk

func (o *CreateSandboxKey201Response) GetTokenTypeOk() (*string, bool)

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

func (*CreateSandboxKey201Response) GetUse

GetUse returns the Use field value

func (*CreateSandboxKey201Response) GetUseOk

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

func (CreateSandboxKey201Response) MarshalJSON

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

func (*CreateSandboxKey201Response) SetApiKey

func (o *CreateSandboxKey201Response) SetApiKey(v string)

SetApiKey sets field value

func (*CreateSandboxKey201Response) SetExpiresAt

func (o *CreateSandboxKey201Response) SetExpiresAt(v string)

SetExpiresAt sets field value

func (*CreateSandboxKey201Response) SetExpiresIn

func (o *CreateSandboxKey201Response) SetExpiresIn(v int32)

SetExpiresIn sets field value

func (*CreateSandboxKey201Response) SetProductionAccess

func (o *CreateSandboxKey201Response) SetProductionAccess(v bool)

SetProductionAccess sets field value

func (*CreateSandboxKey201Response) SetScope

func (o *CreateSandboxKey201Response) SetScope(v string)

SetScope sets field value

func (*CreateSandboxKey201Response) SetTokenType

func (o *CreateSandboxKey201Response) SetTokenType(v string)

SetTokenType sets field value

func (*CreateSandboxKey201Response) SetUse

SetUse sets field value

func (CreateSandboxKey201Response) ToMap

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

func (*CreateSandboxKey201Response) UnmarshalJSON

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

type CreateSandboxKey201ResponseUse

type CreateSandboxKey201ResponseUse struct {
	Method               string `json:"method"`
	Url                  string `json:"url"`
	Authorization        string `json:"authorization"`
	AdditionalProperties map[string]interface{}
}

CreateSandboxKey201ResponseUse struct for CreateSandboxKey201ResponseUse

func NewCreateSandboxKey201ResponseUse

func NewCreateSandboxKey201ResponseUse(method string, url string, authorization string) *CreateSandboxKey201ResponseUse

NewCreateSandboxKey201ResponseUse instantiates a new CreateSandboxKey201ResponseUse 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 NewCreateSandboxKey201ResponseUseWithDefaults

func NewCreateSandboxKey201ResponseUseWithDefaults() *CreateSandboxKey201ResponseUse

NewCreateSandboxKey201ResponseUseWithDefaults instantiates a new CreateSandboxKey201ResponseUse 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 (*CreateSandboxKey201ResponseUse) GetAuthorization

func (o *CreateSandboxKey201ResponseUse) GetAuthorization() string

GetAuthorization returns the Authorization field value

func (*CreateSandboxKey201ResponseUse) GetAuthorizationOk

func (o *CreateSandboxKey201ResponseUse) GetAuthorizationOk() (*string, bool)

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

func (*CreateSandboxKey201ResponseUse) GetMethod

func (o *CreateSandboxKey201ResponseUse) GetMethod() string

GetMethod returns the Method field value

func (*CreateSandboxKey201ResponseUse) GetMethodOk

func (o *CreateSandboxKey201ResponseUse) GetMethodOk() (*string, bool)

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

func (*CreateSandboxKey201ResponseUse) GetUrl

GetUrl returns the Url field value

func (*CreateSandboxKey201ResponseUse) GetUrlOk

func (o *CreateSandboxKey201ResponseUse) GetUrlOk() (*string, bool)

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

func (CreateSandboxKey201ResponseUse) MarshalJSON

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

func (*CreateSandboxKey201ResponseUse) SetAuthorization

func (o *CreateSandboxKey201ResponseUse) SetAuthorization(v string)

SetAuthorization sets field value

func (*CreateSandboxKey201ResponseUse) SetMethod

func (o *CreateSandboxKey201ResponseUse) SetMethod(v string)

SetMethod sets field value

func (*CreateSandboxKey201ResponseUse) SetUrl

SetUrl sets field value

func (CreateSandboxKey201ResponseUse) ToMap

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

func (*CreateSandboxKey201ResponseUse) UnmarshalJSON

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

type DeleteUserData200Response

type DeleteUserData200Response struct {
	DeletionRequestId    string `json:"deletion_request_id"`
	Duplicate            bool   `json:"duplicate"`
	EventsUpdated        int32  `json:"events_updated"`
	SessionsUpdated      int32  `json:"sessions_updated"`
	CompletedAt          string `json:"completed_at"`
	AdditionalProperties map[string]interface{}
}

DeleteUserData200Response struct for DeleteUserData200Response

func NewDeleteUserData200Response

func NewDeleteUserData200Response(deletionRequestId string, duplicate bool, eventsUpdated int32, sessionsUpdated int32, completedAt string) *DeleteUserData200Response

NewDeleteUserData200Response instantiates a new DeleteUserData200Response 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 NewDeleteUserData200ResponseWithDefaults

func NewDeleteUserData200ResponseWithDefaults() *DeleteUserData200Response

NewDeleteUserData200ResponseWithDefaults instantiates a new DeleteUserData200Response 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 (*DeleteUserData200Response) GetCompletedAt

func (o *DeleteUserData200Response) GetCompletedAt() string

GetCompletedAt returns the CompletedAt field value

func (*DeleteUserData200Response) GetCompletedAtOk

func (o *DeleteUserData200Response) GetCompletedAtOk() (*string, bool)

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

func (*DeleteUserData200Response) GetDeletionRequestId

func (o *DeleteUserData200Response) GetDeletionRequestId() string

GetDeletionRequestId returns the DeletionRequestId field value

func (*DeleteUserData200Response) GetDeletionRequestIdOk

func (o *DeleteUserData200Response) GetDeletionRequestIdOk() (*string, bool)

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

func (*DeleteUserData200Response) GetDuplicate

func (o *DeleteUserData200Response) GetDuplicate() bool

GetDuplicate returns the Duplicate field value

func (*DeleteUserData200Response) GetDuplicateOk

func (o *DeleteUserData200Response) GetDuplicateOk() (*bool, bool)

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

func (*DeleteUserData200Response) GetEventsUpdated

func (o *DeleteUserData200Response) GetEventsUpdated() int32

GetEventsUpdated returns the EventsUpdated field value

func (*DeleteUserData200Response) GetEventsUpdatedOk

func (o *DeleteUserData200Response) GetEventsUpdatedOk() (*int32, bool)

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

func (*DeleteUserData200Response) GetSessionsUpdated

func (o *DeleteUserData200Response) GetSessionsUpdated() int32

GetSessionsUpdated returns the SessionsUpdated field value

func (*DeleteUserData200Response) GetSessionsUpdatedOk

func (o *DeleteUserData200Response) GetSessionsUpdatedOk() (*int32, bool)

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

func (DeleteUserData200Response) MarshalJSON

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

func (*DeleteUserData200Response) SetCompletedAt

func (o *DeleteUserData200Response) SetCompletedAt(v string)

SetCompletedAt sets field value

func (*DeleteUserData200Response) SetDeletionRequestId

func (o *DeleteUserData200Response) SetDeletionRequestId(v string)

SetDeletionRequestId sets field value

func (*DeleteUserData200Response) SetDuplicate

func (o *DeleteUserData200Response) SetDuplicate(v bool)

SetDuplicate sets field value

func (*DeleteUserData200Response) SetEventsUpdated

func (o *DeleteUserData200Response) SetEventsUpdated(v int32)

SetEventsUpdated sets field value

func (*DeleteUserData200Response) SetSessionsUpdated

func (o *DeleteUserData200Response) SetSessionsUpdated(v int32)

SetSessionsUpdated sets field value

func (DeleteUserData200Response) ToMap

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

func (*DeleteUserData200Response) UnmarshalJSON

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

type DeleteUserDataRequest

type DeleteUserDataRequest struct {
	IdentifierType       string `json:"identifier_type"`
	IdentifierHash       string `json:"identifier_hash" validate:"regexp=^[a-fA-F0-9]{64}$"`
	AdditionalProperties map[string]interface{}
}

DeleteUserDataRequest struct for DeleteUserDataRequest

func NewDeleteUserDataRequest

func NewDeleteUserDataRequest(identifierType string, identifierHash string) *DeleteUserDataRequest

NewDeleteUserDataRequest instantiates a new DeleteUserDataRequest 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 NewDeleteUserDataRequestWithDefaults

func NewDeleteUserDataRequestWithDefaults() *DeleteUserDataRequest

NewDeleteUserDataRequestWithDefaults instantiates a new DeleteUserDataRequest 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 (*DeleteUserDataRequest) GetIdentifierHash

func (o *DeleteUserDataRequest) GetIdentifierHash() string

GetIdentifierHash returns the IdentifierHash field value

func (*DeleteUserDataRequest) GetIdentifierHashOk

func (o *DeleteUserDataRequest) GetIdentifierHashOk() (*string, bool)

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

func (*DeleteUserDataRequest) GetIdentifierType

func (o *DeleteUserDataRequest) GetIdentifierType() string

GetIdentifierType returns the IdentifierType field value

func (*DeleteUserDataRequest) GetIdentifierTypeOk

func (o *DeleteUserDataRequest) GetIdentifierTypeOk() (*string, bool)

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

func (DeleteUserDataRequest) MarshalJSON

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

func (*DeleteUserDataRequest) SetIdentifierHash

func (o *DeleteUserDataRequest) SetIdentifierHash(v string)

SetIdentifierHash sets field value

func (*DeleteUserDataRequest) SetIdentifierType

func (o *DeleteUserDataRequest) SetIdentifierType(v string)

SetIdentifierType sets field value

func (DeleteUserDataRequest) ToMap

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

func (*DeleteUserDataRequest) UnmarshalJSON

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

type DeliveryStatus

type DeliveryStatus string

DeliveryStatus the model 'DeliveryStatus'

const (
	DELIVERYSTATUS_QUEUED                   DeliveryStatus = "queued"
	DELIVERYSTATUS_SENT                     DeliveryStatus = "sent"
	DELIVERYSTATUS_ACCEPTED                 DeliveryStatus = "accepted"
	DELIVERYSTATUS_RETRYING                 DeliveryStatus = "retrying"
	DELIVERYSTATUS_FAILED_AUTH              DeliveryStatus = "failed:auth"
	DELIVERYSTATUS_FAILED_PERMANENT         DeliveryStatus = "failed:permanent"
	DELIVERYSTATUS_FAILED_UNKNOWN           DeliveryStatus = "failed:unknown"
	DELIVERYSTATUS_EXPIRED                  DeliveryStatus = "expired"
	DELIVERYSTATUS_SKIPPED_CONSENT          DeliveryStatus = "skipped:consent"
	DELIVERYSTATUS_SKIPPED_NO_DESTINATION   DeliveryStatus = "skipped:no_destination"
	DELIVERYSTATUS_SKIPPED_DUPLICATE        DeliveryStatus = "skipped:duplicate"
	DELIVERYSTATUS_UNKNOWN_DEFAULT_OPEN_API DeliveryStatus = "unknown_default_open_api"
)

List of DeliveryStatus

func NewDeliveryStatusFromValue

func NewDeliveryStatusFromValue(v string) (*DeliveryStatus, error)

NewDeliveryStatusFromValue returns a pointer to a valid DeliveryStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DeliveryStatus) IsValid

func (v DeliveryStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DeliveryStatus) Ptr

func (v DeliveryStatus) Ptr() *DeliveryStatus

Ptr returns reference to DeliveryStatus value

func (*DeliveryStatus) UnmarshalJSON

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

type Destination

type Destination struct {
	Id                   string                      `json:"id"`
	SignalTrackerId      string                      `json:"signal_tracker_id"`
	PlatformAdAccountId  NullableInt32               `json:"platform_ad_account_id"`
	Type                 DestinationType             `json:"type"`
	CredentialSource     DestinationCredentialSource `json:"credential_source"`
	Config               []interface{}               `json:"config"`
	Status               DestinationStatus           `json:"status"`
	CreatedAt            NullableTime                `json:"created_at"`
	UpdatedAt            NullableTime                `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

Destination struct for Destination

func NewDestination

func NewDestination(id string, signalTrackerId string, platformAdAccountId NullableInt32, type_ DestinationType, credentialSource DestinationCredentialSource, config []interface{}, status DestinationStatus, createdAt NullableTime, updatedAt NullableTime) *Destination

NewDestination instantiates a new Destination 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 NewDestinationWithDefaults

func NewDestinationWithDefaults() *Destination

NewDestinationWithDefaults instantiates a new Destination 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 (*Destination) GetConfig

func (o *Destination) GetConfig() []interface{}

GetConfig returns the Config field value

func (*Destination) GetConfigOk

func (o *Destination) GetConfigOk() ([]interface{}, bool)

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

func (*Destination) GetCreatedAt

func (o *Destination) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*Destination) GetCreatedAtOk

func (o *Destination) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*Destination) GetCredentialSource

func (o *Destination) GetCredentialSource() DestinationCredentialSource

GetCredentialSource returns the CredentialSource field value

func (*Destination) GetCredentialSourceOk

func (o *Destination) GetCredentialSourceOk() (*DestinationCredentialSource, bool)

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

func (*Destination) GetId

func (o *Destination) GetId() string

GetId returns the Id field value

func (*Destination) GetIdOk

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

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

func (*Destination) GetPlatformAdAccountId

func (o *Destination) GetPlatformAdAccountId() int32

GetPlatformAdAccountId returns the PlatformAdAccountId field value If the value is explicit nil, the zero value for int32 will be returned

func (*Destination) GetPlatformAdAccountIdOk

func (o *Destination) GetPlatformAdAccountIdOk() (*int32, bool)

GetPlatformAdAccountIdOk returns a tuple with the PlatformAdAccountId 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 (*Destination) GetSignalTrackerId

func (o *Destination) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*Destination) GetSignalTrackerIdOk

func (o *Destination) GetSignalTrackerIdOk() (*string, bool)

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

func (*Destination) GetStatus

func (o *Destination) GetStatus() DestinationStatus

GetStatus returns the Status field value

func (*Destination) GetStatusOk

func (o *Destination) GetStatusOk() (*DestinationStatus, bool)

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

func (*Destination) GetType

func (o *Destination) GetType() DestinationType

GetType returns the Type field value

func (*Destination) GetTypeOk

func (o *Destination) GetTypeOk() (*DestinationType, bool)

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

func (*Destination) GetUpdatedAt

func (o *Destination) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*Destination) GetUpdatedAtOk

func (o *Destination) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (Destination) MarshalJSON

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

func (*Destination) SetConfig

func (o *Destination) SetConfig(v []interface{})

SetConfig sets field value

func (*Destination) SetCreatedAt

func (o *Destination) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Destination) SetCredentialSource

func (o *Destination) SetCredentialSource(v DestinationCredentialSource)

SetCredentialSource sets field value

func (*Destination) SetId

func (o *Destination) SetId(v string)

SetId sets field value

func (*Destination) SetPlatformAdAccountId

func (o *Destination) SetPlatformAdAccountId(v int32)

SetPlatformAdAccountId sets field value

func (*Destination) SetSignalTrackerId

func (o *Destination) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*Destination) SetStatus

func (o *Destination) SetStatus(v DestinationStatus)

SetStatus sets field value

func (*Destination) SetType

func (o *Destination) SetType(v DestinationType)

SetType sets field value

func (*Destination) SetUpdatedAt

func (o *Destination) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (Destination) ToMap

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

func (*Destination) UnmarshalJSON

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

type DestinationCredentialSource

type DestinationCredentialSource string

DestinationCredentialSource the model 'DestinationCredentialSource'

const (
	DESTINATIONCREDENTIALSOURCE_OAUTH_CONNECTION         DestinationCredentialSource = "oauth_connection"
	DESTINATIONCREDENTIALSOURCE_MANAGED_TOKEN            DestinationCredentialSource = "managed_token"
	DESTINATIONCREDENTIALSOURCE_UNKNOWN_DEFAULT_OPEN_API DestinationCredentialSource = "unknown_default_open_api"
)

List of DestinationCredentialSource

func NewDestinationCredentialSourceFromValue

func NewDestinationCredentialSourceFromValue(v string) (*DestinationCredentialSource, error)

NewDestinationCredentialSourceFromValue returns a pointer to a valid DestinationCredentialSource for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DestinationCredentialSource) IsValid

func (v DestinationCredentialSource) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DestinationCredentialSource) Ptr

Ptr returns reference to DestinationCredentialSource value

func (*DestinationCredentialSource) UnmarshalJSON

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

type DestinationStatus

type DestinationStatus string

DestinationStatus the model 'DestinationStatus'

const (
	DESTINATIONSTATUS_ACTIVE                   DestinationStatus = "active"
	DESTINATIONSTATUS_INACTIVE                 DestinationStatus = "inactive"
	DESTINATIONSTATUS_UNKNOWN_DEFAULT_OPEN_API DestinationStatus = "unknown_default_open_api"
)

List of DestinationStatus

func NewDestinationStatusFromValue

func NewDestinationStatusFromValue(v string) (*DestinationStatus, error)

NewDestinationStatusFromValue returns a pointer to a valid DestinationStatus for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DestinationStatus) IsValid

func (v DestinationStatus) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DestinationStatus) Ptr

Ptr returns reference to DestinationStatus value

func (*DestinationStatus) UnmarshalJSON

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

type DestinationType

type DestinationType string

DestinationType the model 'DestinationType'

const (
	DESTINATIONTYPE_META                     DestinationType = "meta"
	DESTINATIONTYPE_UNKNOWN_DEFAULT_OPEN_API DestinationType = "unknown_default_open_api"
)

List of DestinationType

func NewDestinationTypeFromValue

func NewDestinationTypeFromValue(v string) (*DestinationType, error)

NewDestinationTypeFromValue returns a pointer to a valid DestinationType for the value passed as argument, or an error if the value passed is not allowed by the enum

func (DestinationType) IsValid

func (v DestinationType) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (DestinationType) Ptr

Ptr returns reference to DestinationType value

func (*DestinationType) UnmarshalJSON

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

type EmqSnapshot

type EmqSnapshot struct {
	Id                   int32           `json:"id"`
	SignalTrackerId      string          `json:"signal_tracker_id"`
	DestinationId        string          `json:"destination_id"`
	Score                float32         `json:"score"`
	WeekOverWeekChange   NullableFloat32 `json:"week_over_week_change"`
	Alerted              bool            `json:"alerted"`
	PlatformResponse     []interface{}   `json:"platform_response"`
	MeasuredAt           time.Time       `json:"measured_at"`
	CreatedAt            NullableTime    `json:"created_at"`
	UpdatedAt            NullableTime    `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

EmqSnapshot struct for EmqSnapshot

func NewEmqSnapshot

func NewEmqSnapshot(id int32, signalTrackerId string, destinationId string, score float32, weekOverWeekChange NullableFloat32, alerted bool, platformResponse []interface{}, measuredAt time.Time, createdAt NullableTime, updatedAt NullableTime) *EmqSnapshot

NewEmqSnapshot instantiates a new EmqSnapshot 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 NewEmqSnapshotWithDefaults

func NewEmqSnapshotWithDefaults() *EmqSnapshot

NewEmqSnapshotWithDefaults instantiates a new EmqSnapshot 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 (*EmqSnapshot) GetAlerted

func (o *EmqSnapshot) GetAlerted() bool

GetAlerted returns the Alerted field value

func (*EmqSnapshot) GetAlertedOk

func (o *EmqSnapshot) GetAlertedOk() (*bool, bool)

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

func (*EmqSnapshot) GetCreatedAt

func (o *EmqSnapshot) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*EmqSnapshot) GetCreatedAtOk

func (o *EmqSnapshot) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*EmqSnapshot) GetDestinationId

func (o *EmqSnapshot) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*EmqSnapshot) GetDestinationIdOk

func (o *EmqSnapshot) GetDestinationIdOk() (*string, bool)

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

func (*EmqSnapshot) GetId

func (o *EmqSnapshot) GetId() int32

GetId returns the Id field value

func (*EmqSnapshot) GetIdOk

func (o *EmqSnapshot) GetIdOk() (*int32, bool)

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

func (*EmqSnapshot) GetMeasuredAt

func (o *EmqSnapshot) GetMeasuredAt() time.Time

GetMeasuredAt returns the MeasuredAt field value

func (*EmqSnapshot) GetMeasuredAtOk

func (o *EmqSnapshot) GetMeasuredAtOk() (*time.Time, bool)

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

func (*EmqSnapshot) GetPlatformResponse

func (o *EmqSnapshot) GetPlatformResponse() []interface{}

GetPlatformResponse returns the PlatformResponse field value If the value is explicit nil, the zero value for []interface{} will be returned

func (*EmqSnapshot) GetPlatformResponseOk

func (o *EmqSnapshot) GetPlatformResponseOk() ([]interface{}, bool)

GetPlatformResponseOk returns a tuple with the PlatformResponse 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 (*EmqSnapshot) GetScore

func (o *EmqSnapshot) GetScore() float32

GetScore returns the Score field value

func (*EmqSnapshot) GetScoreOk

func (o *EmqSnapshot) GetScoreOk() (*float32, bool)

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

func (*EmqSnapshot) GetSignalTrackerId

func (o *EmqSnapshot) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*EmqSnapshot) GetSignalTrackerIdOk

func (o *EmqSnapshot) GetSignalTrackerIdOk() (*string, bool)

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

func (*EmqSnapshot) GetUpdatedAt

func (o *EmqSnapshot) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*EmqSnapshot) GetUpdatedAtOk

func (o *EmqSnapshot) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (*EmqSnapshot) GetWeekOverWeekChange

func (o *EmqSnapshot) GetWeekOverWeekChange() float32

GetWeekOverWeekChange returns the WeekOverWeekChange field value If the value is explicit nil, the zero value for float32 will be returned

func (*EmqSnapshot) GetWeekOverWeekChangeOk

func (o *EmqSnapshot) GetWeekOverWeekChangeOk() (*float32, bool)

GetWeekOverWeekChangeOk returns a tuple with the WeekOverWeekChange 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 (EmqSnapshot) MarshalJSON

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

func (*EmqSnapshot) SetAlerted

func (o *EmqSnapshot) SetAlerted(v bool)

SetAlerted sets field value

func (*EmqSnapshot) SetCreatedAt

func (o *EmqSnapshot) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*EmqSnapshot) SetDestinationId

func (o *EmqSnapshot) SetDestinationId(v string)

SetDestinationId sets field value

func (*EmqSnapshot) SetId

func (o *EmqSnapshot) SetId(v int32)

SetId sets field value

func (*EmqSnapshot) SetMeasuredAt

func (o *EmqSnapshot) SetMeasuredAt(v time.Time)

SetMeasuredAt sets field value

func (*EmqSnapshot) SetPlatformResponse

func (o *EmqSnapshot) SetPlatformResponse(v []interface{})

SetPlatformResponse sets field value

func (*EmqSnapshot) SetScore

func (o *EmqSnapshot) SetScore(v float32)

SetScore sets field value

func (*EmqSnapshot) SetSignalTrackerId

func (o *EmqSnapshot) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*EmqSnapshot) SetUpdatedAt

func (o *EmqSnapshot) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (*EmqSnapshot) SetWeekOverWeekChange

func (o *EmqSnapshot) SetWeekOverWeekChange(v float32)

SetWeekOverWeekChange sets field value

func (EmqSnapshot) ToMap

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

func (*EmqSnapshot) UnmarshalJSON

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

type ErrorMessage

type ErrorMessage struct {
	Message              string `json:"message"`
	AdditionalProperties map[string]interface{}
}

ErrorMessage struct for ErrorMessage

func NewErrorMessage

func NewErrorMessage(message string) *ErrorMessage

NewErrorMessage instantiates a new ErrorMessage 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 NewErrorMessageWithDefaults

func NewErrorMessageWithDefaults() *ErrorMessage

NewErrorMessageWithDefaults instantiates a new ErrorMessage 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 (*ErrorMessage) GetMessage

func (o *ErrorMessage) GetMessage() string

GetMessage returns the Message field value

func (*ErrorMessage) GetMessageOk

func (o *ErrorMessage) GetMessageOk() (*string, bool)

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

func (ErrorMessage) MarshalJSON

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

func (*ErrorMessage) SetMessage

func (o *ErrorMessage) SetMessage(v string)

SetMessage sets field value

func (ErrorMessage) ToMap

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

func (*ErrorMessage) UnmarshalJSON

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

type Event

type Event struct {
	Id                          string                  `json:"id"`
	SignalTrackerId             string                  `json:"signal_tracker_id"`
	ParentEventId               NullableString          `json:"parent_event_id"`
	EventName                   string                  `json:"event_name"`
	EventTime                   time.Time               `json:"event_time"`
	ActionSource                string                  `json:"action_source"`
	EventClass                  string                  `json:"event_class"`
	OrderId                     NullableString          `json:"order_id"`
	ValueAmount                 NullableInt32           `json:"value_amount"`
	ValueCurrency               NullableString          `json:"value_currency"`
	CreatedAt                   time.Time               `json:"created_at"`
	ConsentBasis                string                  `json:"consent_basis"`
	MeasurementClass            string                  `json:"measurement_class"`
	AttributionJoin             string                  `json:"attribution_join"`
	EnforcementScope            string                  `json:"enforcement_scope"`
	ConsentNormalizationVersion string                  `json:"consent_normalization_version"`
	PolicyClass                 JurisdictionPolicyClass `json:"policy_class"`
	TrafficClass                TrafficClass            `json:"traffic_class"`
	Consent                     string                  `json:"consent"`
	UserDataHashed              string                  `json:"user_data_hashed"`
	ClickIds                    string                  `json:"click_ids"`
	Session                     string                  `json:"session"`
	ValueData                   string                  `json:"value_data"`
	EventSource                 string                  `json:"event_source"`
	PayloadExpired              bool                    `json:"payload_expired"`
	Deliveries                  []interface{}           `json:"deliveries"`
	AdditionalProperties        map[string]interface{}
}

Event struct for Event

func NewEvent

func NewEvent(id string, signalTrackerId string, parentEventId NullableString, eventName string, eventTime time.Time, actionSource string, eventClass string, orderId NullableString, valueAmount NullableInt32, valueCurrency NullableString, createdAt time.Time, consentBasis string, measurementClass string, attributionJoin string, enforcementScope string, consentNormalizationVersion string, policyClass JurisdictionPolicyClass, trafficClass TrafficClass, consent string, userDataHashed string, clickIds string, session string, valueData string, eventSource string, payloadExpired bool, deliveries []interface{}) *Event

NewEvent instantiates a new Event 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 NewEventWithDefaults

func NewEventWithDefaults() *Event

NewEventWithDefaults instantiates a new Event 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 (*Event) GetActionSource

func (o *Event) GetActionSource() string

GetActionSource returns the ActionSource field value

func (*Event) GetActionSourceOk

func (o *Event) GetActionSourceOk() (*string, bool)

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

func (*Event) GetAttributionJoin

func (o *Event) GetAttributionJoin() string

GetAttributionJoin returns the AttributionJoin field value

func (*Event) GetAttributionJoinOk

func (o *Event) GetAttributionJoinOk() (*string, bool)

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

func (*Event) GetClickIds

func (o *Event) GetClickIds() string

GetClickIds returns the ClickIds field value

func (*Event) GetClickIdsOk

func (o *Event) GetClickIdsOk() (*string, bool)

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

func (*Event) GetConsent

func (o *Event) GetConsent() string

GetConsent returns the Consent field value

func (*Event) GetConsentBasis

func (o *Event) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*Event) GetConsentBasisOk

func (o *Event) GetConsentBasisOk() (*string, bool)

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

func (*Event) GetConsentNormalizationVersion

func (o *Event) GetConsentNormalizationVersion() string

GetConsentNormalizationVersion returns the ConsentNormalizationVersion field value

func (*Event) GetConsentNormalizationVersionOk

func (o *Event) GetConsentNormalizationVersionOk() (*string, bool)

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

func (*Event) GetConsentOk

func (o *Event) GetConsentOk() (*string, bool)

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

func (*Event) GetCreatedAt

func (o *Event) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value

func (*Event) GetCreatedAtOk

func (o *Event) GetCreatedAtOk() (*time.Time, bool)

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

func (*Event) GetDeliveries

func (o *Event) GetDeliveries() []interface{}

GetDeliveries returns the Deliveries field value

func (*Event) GetDeliveriesOk

func (o *Event) GetDeliveriesOk() ([]interface{}, bool)

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

func (*Event) GetEnforcementScope

func (o *Event) GetEnforcementScope() string

GetEnforcementScope returns the EnforcementScope field value

func (*Event) GetEnforcementScopeOk

func (o *Event) GetEnforcementScopeOk() (*string, bool)

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

func (*Event) GetEventClass

func (o *Event) GetEventClass() string

GetEventClass returns the EventClass field value

func (*Event) GetEventClassOk

func (o *Event) GetEventClassOk() (*string, bool)

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

func (*Event) GetEventName

func (o *Event) GetEventName() string

GetEventName returns the EventName field value

func (*Event) GetEventNameOk

func (o *Event) GetEventNameOk() (*string, bool)

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

func (*Event) GetEventSource

func (o *Event) GetEventSource() string

GetEventSource returns the EventSource field value

func (*Event) GetEventSourceOk

func (o *Event) GetEventSourceOk() (*string, bool)

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

func (*Event) GetEventTime

func (o *Event) GetEventTime() time.Time

GetEventTime returns the EventTime field value

func (*Event) GetEventTimeOk

func (o *Event) GetEventTimeOk() (*time.Time, bool)

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

func (*Event) GetId

func (o *Event) GetId() string

GetId returns the Id field value

func (*Event) GetIdOk

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

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

func (*Event) GetMeasurementClass

func (o *Event) GetMeasurementClass() string

GetMeasurementClass returns the MeasurementClass field value

func (*Event) GetMeasurementClassOk

func (o *Event) GetMeasurementClassOk() (*string, bool)

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

func (*Event) GetOrderId

func (o *Event) GetOrderId() string

GetOrderId returns the OrderId field value If the value is explicit nil, the zero value for string will be returned

func (*Event) GetOrderIdOk

func (o *Event) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId 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 (*Event) GetParentEventId

func (o *Event) GetParentEventId() string

GetParentEventId returns the ParentEventId field value If the value is explicit nil, the zero value for string will be returned

func (*Event) GetParentEventIdOk

func (o *Event) GetParentEventIdOk() (*string, bool)

GetParentEventIdOk returns a tuple with the ParentEventId 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 (*Event) GetPayloadExpired

func (o *Event) GetPayloadExpired() bool

GetPayloadExpired returns the PayloadExpired field value

func (*Event) GetPayloadExpiredOk

func (o *Event) GetPayloadExpiredOk() (*bool, bool)

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

func (*Event) GetPolicyClass

func (o *Event) GetPolicyClass() JurisdictionPolicyClass

GetPolicyClass returns the PolicyClass field value

func (*Event) GetPolicyClassOk

func (o *Event) GetPolicyClassOk() (*JurisdictionPolicyClass, bool)

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

func (*Event) GetSession

func (o *Event) GetSession() string

GetSession returns the Session field value

func (*Event) GetSessionOk

func (o *Event) GetSessionOk() (*string, bool)

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

func (*Event) GetSignalTrackerId

func (o *Event) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*Event) GetSignalTrackerIdOk

func (o *Event) GetSignalTrackerIdOk() (*string, bool)

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

func (*Event) GetTrafficClass

func (o *Event) GetTrafficClass() TrafficClass

GetTrafficClass returns the TrafficClass field value

func (*Event) GetTrafficClassOk

func (o *Event) GetTrafficClassOk() (*TrafficClass, bool)

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

func (*Event) GetUserDataHashed

func (o *Event) GetUserDataHashed() string

GetUserDataHashed returns the UserDataHashed field value

func (*Event) GetUserDataHashedOk

func (o *Event) GetUserDataHashedOk() (*string, bool)

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

func (*Event) GetValueAmount

func (o *Event) GetValueAmount() int32

GetValueAmount returns the ValueAmount field value If the value is explicit nil, the zero value for int32 will be returned

func (*Event) GetValueAmountOk

func (o *Event) GetValueAmountOk() (*int32, bool)

GetValueAmountOk returns a tuple with the ValueAmount 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 (*Event) GetValueCurrency

func (o *Event) GetValueCurrency() string

GetValueCurrency returns the ValueCurrency field value If the value is explicit nil, the zero value for string will be returned

func (*Event) GetValueCurrencyOk

func (o *Event) GetValueCurrencyOk() (*string, bool)

GetValueCurrencyOk returns a tuple with the ValueCurrency 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 (*Event) GetValueData

func (o *Event) GetValueData() string

GetValueData returns the ValueData field value

func (*Event) GetValueDataOk

func (o *Event) GetValueDataOk() (*string, bool)

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

func (Event) MarshalJSON

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

func (*Event) SetActionSource

func (o *Event) SetActionSource(v string)

SetActionSource sets field value

func (*Event) SetAttributionJoin

func (o *Event) SetAttributionJoin(v string)

SetAttributionJoin sets field value

func (*Event) SetClickIds

func (o *Event) SetClickIds(v string)

SetClickIds sets field value

func (*Event) SetConsent

func (o *Event) SetConsent(v string)

SetConsent sets field value

func (*Event) SetConsentBasis

func (o *Event) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*Event) SetConsentNormalizationVersion

func (o *Event) SetConsentNormalizationVersion(v string)

SetConsentNormalizationVersion sets field value

func (*Event) SetCreatedAt

func (o *Event) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*Event) SetDeliveries

func (o *Event) SetDeliveries(v []interface{})

SetDeliveries sets field value

func (*Event) SetEnforcementScope

func (o *Event) SetEnforcementScope(v string)

SetEnforcementScope sets field value

func (*Event) SetEventClass

func (o *Event) SetEventClass(v string)

SetEventClass sets field value

func (*Event) SetEventName

func (o *Event) SetEventName(v string)

SetEventName sets field value

func (*Event) SetEventSource

func (o *Event) SetEventSource(v string)

SetEventSource sets field value

func (*Event) SetEventTime

func (o *Event) SetEventTime(v time.Time)

SetEventTime sets field value

func (*Event) SetId

func (o *Event) SetId(v string)

SetId sets field value

func (*Event) SetMeasurementClass

func (o *Event) SetMeasurementClass(v string)

SetMeasurementClass sets field value

func (*Event) SetOrderId

func (o *Event) SetOrderId(v string)

SetOrderId sets field value

func (*Event) SetParentEventId

func (o *Event) SetParentEventId(v string)

SetParentEventId sets field value

func (*Event) SetPayloadExpired

func (o *Event) SetPayloadExpired(v bool)

SetPayloadExpired sets field value

func (*Event) SetPolicyClass

func (o *Event) SetPolicyClass(v JurisdictionPolicyClass)

SetPolicyClass sets field value

func (*Event) SetSession

func (o *Event) SetSession(v string)

SetSession sets field value

func (*Event) SetSignalTrackerId

func (o *Event) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*Event) SetTrafficClass

func (o *Event) SetTrafficClass(v TrafficClass)

SetTrafficClass sets field value

func (*Event) SetUserDataHashed

func (o *Event) SetUserDataHashed(v string)

SetUserDataHashed sets field value

func (*Event) SetValueAmount

func (o *Event) SetValueAmount(v int32)

SetValueAmount sets field value

func (*Event) SetValueCurrency

func (o *Event) SetValueCurrency(v string)

SetValueCurrency sets field value

func (*Event) SetValueData

func (o *Event) SetValueData(v string)

SetValueData sets field value

func (Event) ToMap

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

func (*Event) UnmarshalJSON

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

type EventAPIService

type EventAPIService service

EventAPIService EventAPI service

func (*EventAPIService) CreateEvent

CreateEvent Submit a conversion event

Accepts a consent-aware server-side conversion event. Supply either event_id in the JSON body or Idempotency-Key in the request headers to make retries idempotent.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateEventRequest

func (*EventAPIService) CreateEventExecute

Execute executes the request

@return CreateEvent200Response

func (*EventAPIService) GetEvent

func (a *EventAPIService) GetEvent(ctx context.Context, event string) ApiGetEventRequest

GetEvent Get an event and delivery trace

Returns one retained customer-readable event with lineage and destination delivery state.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param event
@return ApiGetEventRequest

func (*EventAPIService) GetEventExecute

Execute executes the request

@return GetEvent200Response

func (*EventAPIService) VerifySignalIngestion

func (a *EventAPIService) VerifySignalIngestion(ctx context.Context) ApiVerifySignalIngestionRequest

VerifySignalIngestion Verify server-side Signal ingestion

Writes one identity-free verification event for onboarding and returns the existing event on retry.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiVerifySignalIngestionRequest

func (*EventAPIService) VerifySignalIngestionExecute

Execute executes the request

@return CreateEvent200Response

type GenericOpenAPIError

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

GenericOpenAPIError Provides access to the body, error and model on returned errors.

func (GenericOpenAPIError) Body

func (e GenericOpenAPIError) Body() []byte

Body returns the raw bytes of the response

func (GenericOpenAPIError) Error

func (e GenericOpenAPIError) Error() string

Error returns non-empty string if there was an error.

func (GenericOpenAPIError) Model

func (e GenericOpenAPIError) Model() interface{}

Model returns the unpacked model of the error

type GetEmqReport200Response

type GetEmqReport200Response struct {
	Snapshots            []GetEmqReport200ResponseSnapshotsInner `json:"snapshots"`
	AdditionalProperties map[string]interface{}
}

GetEmqReport200Response struct for GetEmqReport200Response

func NewGetEmqReport200Response

func NewGetEmqReport200Response(snapshots []GetEmqReport200ResponseSnapshotsInner) *GetEmqReport200Response

NewGetEmqReport200Response instantiates a new GetEmqReport200Response 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 NewGetEmqReport200ResponseWithDefaults

func NewGetEmqReport200ResponseWithDefaults() *GetEmqReport200Response

NewGetEmqReport200ResponseWithDefaults instantiates a new GetEmqReport200Response 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 (*GetEmqReport200Response) GetSnapshots

GetSnapshots returns the Snapshots field value

func (*GetEmqReport200Response) GetSnapshotsOk

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

func (GetEmqReport200Response) MarshalJSON

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

func (*GetEmqReport200Response) SetSnapshots

SetSnapshots sets field value

func (GetEmqReport200Response) ToMap

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

func (*GetEmqReport200Response) UnmarshalJSON

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

type GetEmqReport200ResponseSnapshotsInner

type GetEmqReport200ResponseSnapshotsInner struct {
	Id                   int32           `json:"id"`
	SignalTrackerId      string          `json:"signal_tracker_id"`
	DestinationId        string          `json:"destination_id"`
	Score                float32         `json:"score"`
	WeekOverWeekChange   NullableFloat32 `json:"week_over_week_change"`
	Alerted              bool            `json:"alerted"`
	PlatformResponse     interface{}     `json:"platform_response"`
	MeasuredAt           string          `json:"measured_at"`
	CreatedAt            NullableString  `json:"created_at"`
	UpdatedAt            NullableString  `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

GetEmqReport200ResponseSnapshotsInner struct for GetEmqReport200ResponseSnapshotsInner

func NewGetEmqReport200ResponseSnapshotsInner

func NewGetEmqReport200ResponseSnapshotsInner(id int32, signalTrackerId string, destinationId string, score float32, weekOverWeekChange NullableFloat32, alerted bool, platformResponse interface{}, measuredAt string, createdAt NullableString, updatedAt NullableString) *GetEmqReport200ResponseSnapshotsInner

NewGetEmqReport200ResponseSnapshotsInner instantiates a new GetEmqReport200ResponseSnapshotsInner 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 NewGetEmqReport200ResponseSnapshotsInnerWithDefaults

func NewGetEmqReport200ResponseSnapshotsInnerWithDefaults() *GetEmqReport200ResponseSnapshotsInner

NewGetEmqReport200ResponseSnapshotsInnerWithDefaults instantiates a new GetEmqReport200ResponseSnapshotsInner 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 (*GetEmqReport200ResponseSnapshotsInner) GetAlerted

GetAlerted returns the Alerted field value

func (*GetEmqReport200ResponseSnapshotsInner) GetAlertedOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetAlertedOk() (*bool, bool)

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

func (*GetEmqReport200ResponseSnapshotsInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEmqReport200ResponseSnapshotsInner) GetCreatedAtOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetCreatedAtOk() (*string, bool)

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*GetEmqReport200ResponseSnapshotsInner) GetDestinationId

func (o *GetEmqReport200ResponseSnapshotsInner) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*GetEmqReport200ResponseSnapshotsInner) GetDestinationIdOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetDestinationIdOk() (*string, bool)

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

func (*GetEmqReport200ResponseSnapshotsInner) GetId

GetId returns the Id field value

func (*GetEmqReport200ResponseSnapshotsInner) GetIdOk

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

func (*GetEmqReport200ResponseSnapshotsInner) GetMeasuredAt

func (o *GetEmqReport200ResponseSnapshotsInner) GetMeasuredAt() string

GetMeasuredAt returns the MeasuredAt field value

func (*GetEmqReport200ResponseSnapshotsInner) GetMeasuredAtOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetMeasuredAtOk() (*string, bool)

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

func (*GetEmqReport200ResponseSnapshotsInner) GetPlatformResponse

func (o *GetEmqReport200ResponseSnapshotsInner) GetPlatformResponse() interface{}

GetPlatformResponse returns the PlatformResponse field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEmqReport200ResponseSnapshotsInner) GetPlatformResponseOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetPlatformResponseOk() (*interface{}, bool)

GetPlatformResponseOk returns a tuple with the PlatformResponse 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 (*GetEmqReport200ResponseSnapshotsInner) GetScore

GetScore returns the Score field value

func (*GetEmqReport200ResponseSnapshotsInner) GetScoreOk

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

func (*GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerId

func (o *GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerIdOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEmqReport200ResponseSnapshotsInner) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEmqReport200ResponseSnapshotsInner) GetUpdatedAtOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (*GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChange

func (o *GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChange() float32

GetWeekOverWeekChange returns the WeekOverWeekChange field value If the value is explicit nil, the zero value for float32 will be returned

func (*GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChangeOk

func (o *GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChangeOk() (*float32, bool)

GetWeekOverWeekChangeOk returns a tuple with the WeekOverWeekChange 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 (GetEmqReport200ResponseSnapshotsInner) MarshalJSON

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

func (*GetEmqReport200ResponseSnapshotsInner) SetAlerted

SetAlerted sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetCreatedAt

func (o *GetEmqReport200ResponseSnapshotsInner) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetDestinationId

func (o *GetEmqReport200ResponseSnapshotsInner) SetDestinationId(v string)

SetDestinationId sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetId

SetId sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetMeasuredAt

func (o *GetEmqReport200ResponseSnapshotsInner) SetMeasuredAt(v string)

SetMeasuredAt sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetPlatformResponse

func (o *GetEmqReport200ResponseSnapshotsInner) SetPlatformResponse(v interface{})

SetPlatformResponse sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetScore

SetScore sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetSignalTrackerId

func (o *GetEmqReport200ResponseSnapshotsInner) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetUpdatedAt

func (o *GetEmqReport200ResponseSnapshotsInner) SetUpdatedAt(v string)

SetUpdatedAt sets field value

func (*GetEmqReport200ResponseSnapshotsInner) SetWeekOverWeekChange

func (o *GetEmqReport200ResponseSnapshotsInner) SetWeekOverWeekChange(v float32)

SetWeekOverWeekChange sets field value

func (GetEmqReport200ResponseSnapshotsInner) ToMap

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

func (*GetEmqReport200ResponseSnapshotsInner) UnmarshalJSON

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

type GetEvent200Response

type GetEvent200Response struct {
	Event                GetEvent200ResponseEvent             `json:"event"`
	Lineage              GetEvent200ResponseLineage           `json:"lineage"`
	Deliveries           []GetEvent200ResponseDeliveriesInner `json:"deliveries"`
	AdditionalProperties map[string]interface{}
}

GetEvent200Response struct for GetEvent200Response

func NewGetEvent200Response

NewGetEvent200Response instantiates a new GetEvent200Response 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 NewGetEvent200ResponseWithDefaults

func NewGetEvent200ResponseWithDefaults() *GetEvent200Response

NewGetEvent200ResponseWithDefaults instantiates a new GetEvent200Response 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 (*GetEvent200Response) GetDeliveries

GetDeliveries returns the Deliveries field value

func (*GetEvent200Response) GetDeliveriesOk

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

func (*GetEvent200Response) GetEvent

GetEvent returns the Event field value

func (*GetEvent200Response) GetEventOk

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

func (*GetEvent200Response) GetLineage

GetLineage returns the Lineage field value

func (*GetEvent200Response) GetLineageOk

func (o *GetEvent200Response) GetLineageOk() (*GetEvent200ResponseLineage, bool)

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

func (GetEvent200Response) MarshalJSON

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

func (*GetEvent200Response) SetDeliveries

SetDeliveries sets field value

func (*GetEvent200Response) SetEvent

SetEvent sets field value

func (*GetEvent200Response) SetLineage

SetLineage sets field value

func (GetEvent200Response) ToMap

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

func (*GetEvent200Response) UnmarshalJSON

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

type GetEvent200ResponseDeliveriesInner

type GetEvent200ResponseDeliveriesInner struct {
	Id                   int32          `json:"id"`
	SignalTrackerId      string         `json:"signal_tracker_id"`
	EventId              string         `json:"event_id"`
	DestinationId        NullableString `json:"destination_id"`
	Status               DeliveryStatus `json:"status"`
	IsTest               bool           `json:"is_test"`
	AttemptCount         int32          `json:"attempt_count"`
	LastError            interface{}    `json:"last_error"`
	PlatformResponse     interface{}    `json:"platform_response"`
	PlatformTraceId      NullableString `json:"platform_trace_id"`
	NextAttemptAt        NullableString `json:"next_attempt_at"`
	CreatedAt            string         `json:"created_at"`
	UpdatedAt            NullableString `json:"updated_at"`
	Explanation          string         `json:"explanation"`
	AdditionalProperties map[string]interface{}
}

GetEvent200ResponseDeliveriesInner struct for GetEvent200ResponseDeliveriesInner

func NewGetEvent200ResponseDeliveriesInner

func NewGetEvent200ResponseDeliveriesInner(id int32, signalTrackerId string, eventId string, destinationId NullableString, status DeliveryStatus, isTest bool, attemptCount int32, lastError interface{}, platformResponse interface{}, platformTraceId NullableString, nextAttemptAt NullableString, createdAt string, updatedAt NullableString, explanation string) *GetEvent200ResponseDeliveriesInner

NewGetEvent200ResponseDeliveriesInner instantiates a new GetEvent200ResponseDeliveriesInner 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 NewGetEvent200ResponseDeliveriesInnerWithDefaults

func NewGetEvent200ResponseDeliveriesInnerWithDefaults() *GetEvent200ResponseDeliveriesInner

NewGetEvent200ResponseDeliveriesInnerWithDefaults instantiates a new GetEvent200ResponseDeliveriesInner 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 (*GetEvent200ResponseDeliveriesInner) GetAttemptCount

func (o *GetEvent200ResponseDeliveriesInner) GetAttemptCount() int32

GetAttemptCount returns the AttemptCount field value

func (*GetEvent200ResponseDeliveriesInner) GetAttemptCountOk

func (o *GetEvent200ResponseDeliveriesInner) GetAttemptCountOk() (*int32, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetCreatedAt

func (o *GetEvent200ResponseDeliveriesInner) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*GetEvent200ResponseDeliveriesInner) GetCreatedAtOk

func (o *GetEvent200ResponseDeliveriesInner) GetCreatedAtOk() (*string, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetDestinationId

func (o *GetEvent200ResponseDeliveriesInner) GetDestinationId() string

GetDestinationId returns the DestinationId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseDeliveriesInner) GetDestinationIdOk

func (o *GetEvent200ResponseDeliveriesInner) GetDestinationIdOk() (*string, bool)

GetDestinationIdOk returns a tuple with the DestinationId 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 (*GetEvent200ResponseDeliveriesInner) GetEventId

GetEventId returns the EventId field value

func (*GetEvent200ResponseDeliveriesInner) GetEventIdOk

func (o *GetEvent200ResponseDeliveriesInner) GetEventIdOk() (*string, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetExplanation

func (o *GetEvent200ResponseDeliveriesInner) GetExplanation() string

GetExplanation returns the Explanation field value

func (*GetEvent200ResponseDeliveriesInner) GetExplanationOk

func (o *GetEvent200ResponseDeliveriesInner) GetExplanationOk() (*string, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetId

GetId returns the Id field value

func (*GetEvent200ResponseDeliveriesInner) GetIdOk

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

func (*GetEvent200ResponseDeliveriesInner) GetIsTest

GetIsTest returns the IsTest field value

func (*GetEvent200ResponseDeliveriesInner) GetIsTestOk

func (o *GetEvent200ResponseDeliveriesInner) GetIsTestOk() (*bool, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetLastError

func (o *GetEvent200ResponseDeliveriesInner) GetLastError() interface{}

GetLastError returns the LastError field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseDeliveriesInner) GetLastErrorOk

func (o *GetEvent200ResponseDeliveriesInner) GetLastErrorOk() (*interface{}, bool)

GetLastErrorOk returns a tuple with the LastError 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 (*GetEvent200ResponseDeliveriesInner) GetNextAttemptAt

func (o *GetEvent200ResponseDeliveriesInner) GetNextAttemptAt() string

GetNextAttemptAt returns the NextAttemptAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseDeliveriesInner) GetNextAttemptAtOk

func (o *GetEvent200ResponseDeliveriesInner) GetNextAttemptAtOk() (*string, bool)

GetNextAttemptAtOk returns a tuple with the NextAttemptAt 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 (*GetEvent200ResponseDeliveriesInner) GetPlatformResponse

func (o *GetEvent200ResponseDeliveriesInner) GetPlatformResponse() interface{}

GetPlatformResponse returns the PlatformResponse field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseDeliveriesInner) GetPlatformResponseOk

func (o *GetEvent200ResponseDeliveriesInner) GetPlatformResponseOk() (*interface{}, bool)

GetPlatformResponseOk returns a tuple with the PlatformResponse 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 (*GetEvent200ResponseDeliveriesInner) GetPlatformTraceId

func (o *GetEvent200ResponseDeliveriesInner) GetPlatformTraceId() string

GetPlatformTraceId returns the PlatformTraceId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseDeliveriesInner) GetPlatformTraceIdOk

func (o *GetEvent200ResponseDeliveriesInner) GetPlatformTraceIdOk() (*string, bool)

GetPlatformTraceIdOk returns a tuple with the PlatformTraceId 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 (*GetEvent200ResponseDeliveriesInner) GetSignalTrackerId

func (o *GetEvent200ResponseDeliveriesInner) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEvent200ResponseDeliveriesInner) GetSignalTrackerIdOk

func (o *GetEvent200ResponseDeliveriesInner) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEvent200ResponseDeliveriesInner) GetStatus

GetStatus returns the Status field value

func (*GetEvent200ResponseDeliveriesInner) GetStatusOk

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

func (*GetEvent200ResponseDeliveriesInner) GetUpdatedAt

func (o *GetEvent200ResponseDeliveriesInner) GetUpdatedAt() string

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseDeliveriesInner) GetUpdatedAtOk

func (o *GetEvent200ResponseDeliveriesInner) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (GetEvent200ResponseDeliveriesInner) MarshalJSON

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

func (*GetEvent200ResponseDeliveriesInner) SetAttemptCount

func (o *GetEvent200ResponseDeliveriesInner) SetAttemptCount(v int32)

SetAttemptCount sets field value

func (*GetEvent200ResponseDeliveriesInner) SetCreatedAt

func (o *GetEvent200ResponseDeliveriesInner) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*GetEvent200ResponseDeliveriesInner) SetDestinationId

func (o *GetEvent200ResponseDeliveriesInner) SetDestinationId(v string)

SetDestinationId sets field value

func (*GetEvent200ResponseDeliveriesInner) SetEventId

func (o *GetEvent200ResponseDeliveriesInner) SetEventId(v string)

SetEventId sets field value

func (*GetEvent200ResponseDeliveriesInner) SetExplanation

func (o *GetEvent200ResponseDeliveriesInner) SetExplanation(v string)

SetExplanation sets field value

func (*GetEvent200ResponseDeliveriesInner) SetId

SetId sets field value

func (*GetEvent200ResponseDeliveriesInner) SetIsTest

func (o *GetEvent200ResponseDeliveriesInner) SetIsTest(v bool)

SetIsTest sets field value

func (*GetEvent200ResponseDeliveriesInner) SetLastError

func (o *GetEvent200ResponseDeliveriesInner) SetLastError(v interface{})

SetLastError sets field value

func (*GetEvent200ResponseDeliveriesInner) SetNextAttemptAt

func (o *GetEvent200ResponseDeliveriesInner) SetNextAttemptAt(v string)

SetNextAttemptAt sets field value

func (*GetEvent200ResponseDeliveriesInner) SetPlatformResponse

func (o *GetEvent200ResponseDeliveriesInner) SetPlatformResponse(v interface{})

SetPlatformResponse sets field value

func (*GetEvent200ResponseDeliveriesInner) SetPlatformTraceId

func (o *GetEvent200ResponseDeliveriesInner) SetPlatformTraceId(v string)

SetPlatformTraceId sets field value

func (*GetEvent200ResponseDeliveriesInner) SetSignalTrackerId

func (o *GetEvent200ResponseDeliveriesInner) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEvent200ResponseDeliveriesInner) SetStatus

SetStatus sets field value

func (*GetEvent200ResponseDeliveriesInner) SetUpdatedAt

func (o *GetEvent200ResponseDeliveriesInner) SetUpdatedAt(v string)

SetUpdatedAt sets field value

func (GetEvent200ResponseDeliveriesInner) ToMap

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

func (*GetEvent200ResponseDeliveriesInner) UnmarshalJSON

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

type GetEvent200ResponseEvent

type GetEvent200ResponseEvent struct {
	Id                          string                                    `json:"id"`
	SignalTrackerId             string                                    `json:"signal_tracker_id"`
	ParentEventId               NullableString                            `json:"parent_event_id"`
	EventName                   string                                    `json:"event_name"`
	EventTime                   string                                    `json:"event_time"`
	ActionSource                string                                    `json:"action_source"`
	EventClass                  string                                    `json:"event_class"`
	OrderId                     NullableString                            `json:"order_id"`
	ValueAmount                 NullableInt32                             `json:"value_amount"`
	ValueCurrency               NullableString                            `json:"value_currency"`
	CreatedAt                   string                                    `json:"created_at"`
	ConsentBasis                string                                    `json:"consent_basis"`
	MeasurementClass            string                                    `json:"measurement_class"`
	AttributionJoin             string                                    `json:"attribution_join"`
	EnforcementScope            string                                    `json:"enforcement_scope"`
	ConsentNormalizationVersion string                                    `json:"consent_normalization_version"`
	Consent                     interface{}                               `json:"consent"`
	UserDataHashed              interface{}                               `json:"user_data_hashed"`
	ClickIds                    interface{}                               `json:"click_ids"`
	Session                     interface{}                               `json:"session"`
	ValueData                   interface{}                               `json:"value_data"`
	EventSource                 NullableString                            `json:"event_source"`
	PayloadExpired              bool                                      `json:"payload_expired"`
	Deliveries                  []GetEvent200ResponseEventDeliveriesInner `json:"deliveries"`
	AdditionalProperties        map[string]interface{}
}

GetEvent200ResponseEvent struct for GetEvent200ResponseEvent

func NewGetEvent200ResponseEvent

func NewGetEvent200ResponseEvent(id string, signalTrackerId string, parentEventId NullableString, eventName string, eventTime string, actionSource string, eventClass string, orderId NullableString, valueAmount NullableInt32, valueCurrency NullableString, createdAt string, consentBasis string, measurementClass string, attributionJoin string, enforcementScope string, consentNormalizationVersion string, consent interface{}, userDataHashed interface{}, clickIds interface{}, session interface{}, valueData interface{}, eventSource NullableString, payloadExpired bool, deliveries []GetEvent200ResponseEventDeliveriesInner) *GetEvent200ResponseEvent

NewGetEvent200ResponseEvent instantiates a new GetEvent200ResponseEvent 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 NewGetEvent200ResponseEventWithDefaults

func NewGetEvent200ResponseEventWithDefaults() *GetEvent200ResponseEvent

NewGetEvent200ResponseEventWithDefaults instantiates a new GetEvent200ResponseEvent 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 (*GetEvent200ResponseEvent) GetActionSource

func (o *GetEvent200ResponseEvent) GetActionSource() string

GetActionSource returns the ActionSource field value

func (*GetEvent200ResponseEvent) GetActionSourceOk

func (o *GetEvent200ResponseEvent) GetActionSourceOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetAttributionJoin

func (o *GetEvent200ResponseEvent) GetAttributionJoin() string

GetAttributionJoin returns the AttributionJoin field value

func (*GetEvent200ResponseEvent) GetAttributionJoinOk

func (o *GetEvent200ResponseEvent) GetAttributionJoinOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetClickIds

func (o *GetEvent200ResponseEvent) GetClickIds() interface{}

GetClickIds returns the ClickIds field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEvent) GetClickIdsOk

func (o *GetEvent200ResponseEvent) GetClickIdsOk() (*interface{}, bool)

GetClickIdsOk returns a tuple with the ClickIds 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 (*GetEvent200ResponseEvent) GetConsent

func (o *GetEvent200ResponseEvent) GetConsent() interface{}

GetConsent returns the Consent field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEvent) GetConsentBasis

func (o *GetEvent200ResponseEvent) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*GetEvent200ResponseEvent) GetConsentBasisOk

func (o *GetEvent200ResponseEvent) GetConsentBasisOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetConsentNormalizationVersion

func (o *GetEvent200ResponseEvent) GetConsentNormalizationVersion() string

GetConsentNormalizationVersion returns the ConsentNormalizationVersion field value

func (*GetEvent200ResponseEvent) GetConsentNormalizationVersionOk

func (o *GetEvent200ResponseEvent) GetConsentNormalizationVersionOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetConsentOk

func (o *GetEvent200ResponseEvent) GetConsentOk() (*interface{}, bool)

GetConsentOk returns a tuple with the Consent 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 (*GetEvent200ResponseEvent) GetCreatedAt

func (o *GetEvent200ResponseEvent) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*GetEvent200ResponseEvent) GetCreatedAtOk

func (o *GetEvent200ResponseEvent) GetCreatedAtOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetDeliveries

GetDeliveries returns the Deliveries field value

func (*GetEvent200ResponseEvent) GetDeliveriesOk

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

func (*GetEvent200ResponseEvent) GetEnforcementScope

func (o *GetEvent200ResponseEvent) GetEnforcementScope() string

GetEnforcementScope returns the EnforcementScope field value

func (*GetEvent200ResponseEvent) GetEnforcementScopeOk

func (o *GetEvent200ResponseEvent) GetEnforcementScopeOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetEventClass

func (o *GetEvent200ResponseEvent) GetEventClass() string

GetEventClass returns the EventClass field value

func (*GetEvent200ResponseEvent) GetEventClassOk

func (o *GetEvent200ResponseEvent) GetEventClassOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetEventName

func (o *GetEvent200ResponseEvent) GetEventName() string

GetEventName returns the EventName field value

func (*GetEvent200ResponseEvent) GetEventNameOk

func (o *GetEvent200ResponseEvent) GetEventNameOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetEventSource

func (o *GetEvent200ResponseEvent) GetEventSource() string

GetEventSource returns the EventSource field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEvent) GetEventSourceOk

func (o *GetEvent200ResponseEvent) GetEventSourceOk() (*string, bool)

GetEventSourceOk returns a tuple with the EventSource 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 (*GetEvent200ResponseEvent) GetEventTime

func (o *GetEvent200ResponseEvent) GetEventTime() string

GetEventTime returns the EventTime field value

func (*GetEvent200ResponseEvent) GetEventTimeOk

func (o *GetEvent200ResponseEvent) GetEventTimeOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetId

func (o *GetEvent200ResponseEvent) GetId() string

GetId returns the Id field value

func (*GetEvent200ResponseEvent) GetIdOk

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

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

func (*GetEvent200ResponseEvent) GetMeasurementClass

func (o *GetEvent200ResponseEvent) GetMeasurementClass() string

GetMeasurementClass returns the MeasurementClass field value

func (*GetEvent200ResponseEvent) GetMeasurementClassOk

func (o *GetEvent200ResponseEvent) GetMeasurementClassOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetOrderId

func (o *GetEvent200ResponseEvent) GetOrderId() string

GetOrderId returns the OrderId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEvent) GetOrderIdOk

func (o *GetEvent200ResponseEvent) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId 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 (*GetEvent200ResponseEvent) GetParentEventId

func (o *GetEvent200ResponseEvent) GetParentEventId() string

GetParentEventId returns the ParentEventId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEvent) GetParentEventIdOk

func (o *GetEvent200ResponseEvent) GetParentEventIdOk() (*string, bool)

GetParentEventIdOk returns a tuple with the ParentEventId 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 (*GetEvent200ResponseEvent) GetPayloadExpired

func (o *GetEvent200ResponseEvent) GetPayloadExpired() bool

GetPayloadExpired returns the PayloadExpired field value

func (*GetEvent200ResponseEvent) GetPayloadExpiredOk

func (o *GetEvent200ResponseEvent) GetPayloadExpiredOk() (*bool, bool)

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

func (*GetEvent200ResponseEvent) GetSession

func (o *GetEvent200ResponseEvent) GetSession() interface{}

GetSession returns the Session field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEvent) GetSessionOk

func (o *GetEvent200ResponseEvent) GetSessionOk() (*interface{}, bool)

GetSessionOk returns a tuple with the Session 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 (*GetEvent200ResponseEvent) GetSignalTrackerId

func (o *GetEvent200ResponseEvent) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEvent200ResponseEvent) GetSignalTrackerIdOk

func (o *GetEvent200ResponseEvent) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEvent200ResponseEvent) GetUserDataHashed

func (o *GetEvent200ResponseEvent) GetUserDataHashed() interface{}

GetUserDataHashed returns the UserDataHashed field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEvent) GetUserDataHashedOk

func (o *GetEvent200ResponseEvent) GetUserDataHashedOk() (*interface{}, bool)

GetUserDataHashedOk returns a tuple with the UserDataHashed 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 (*GetEvent200ResponseEvent) GetValueAmount

func (o *GetEvent200ResponseEvent) GetValueAmount() int32

GetValueAmount returns the ValueAmount field value If the value is explicit nil, the zero value for int32 will be returned

func (*GetEvent200ResponseEvent) GetValueAmountOk

func (o *GetEvent200ResponseEvent) GetValueAmountOk() (*int32, bool)

GetValueAmountOk returns a tuple with the ValueAmount 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 (*GetEvent200ResponseEvent) GetValueCurrency

func (o *GetEvent200ResponseEvent) GetValueCurrency() string

GetValueCurrency returns the ValueCurrency field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEvent) GetValueCurrencyOk

func (o *GetEvent200ResponseEvent) GetValueCurrencyOk() (*string, bool)

GetValueCurrencyOk returns a tuple with the ValueCurrency 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 (*GetEvent200ResponseEvent) GetValueData

func (o *GetEvent200ResponseEvent) GetValueData() interface{}

GetValueData returns the ValueData field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEvent) GetValueDataOk

func (o *GetEvent200ResponseEvent) GetValueDataOk() (*interface{}, bool)

GetValueDataOk returns a tuple with the ValueData 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 (GetEvent200ResponseEvent) MarshalJSON

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

func (*GetEvent200ResponseEvent) SetActionSource

func (o *GetEvent200ResponseEvent) SetActionSource(v string)

SetActionSource sets field value

func (*GetEvent200ResponseEvent) SetAttributionJoin

func (o *GetEvent200ResponseEvent) SetAttributionJoin(v string)

SetAttributionJoin sets field value

func (*GetEvent200ResponseEvent) SetClickIds

func (o *GetEvent200ResponseEvent) SetClickIds(v interface{})

SetClickIds sets field value

func (*GetEvent200ResponseEvent) SetConsent

func (o *GetEvent200ResponseEvent) SetConsent(v interface{})

SetConsent sets field value

func (*GetEvent200ResponseEvent) SetConsentBasis

func (o *GetEvent200ResponseEvent) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*GetEvent200ResponseEvent) SetConsentNormalizationVersion

func (o *GetEvent200ResponseEvent) SetConsentNormalizationVersion(v string)

SetConsentNormalizationVersion sets field value

func (*GetEvent200ResponseEvent) SetCreatedAt

func (o *GetEvent200ResponseEvent) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*GetEvent200ResponseEvent) SetDeliveries

SetDeliveries sets field value

func (*GetEvent200ResponseEvent) SetEnforcementScope

func (o *GetEvent200ResponseEvent) SetEnforcementScope(v string)

SetEnforcementScope sets field value

func (*GetEvent200ResponseEvent) SetEventClass

func (o *GetEvent200ResponseEvent) SetEventClass(v string)

SetEventClass sets field value

func (*GetEvent200ResponseEvent) SetEventName

func (o *GetEvent200ResponseEvent) SetEventName(v string)

SetEventName sets field value

func (*GetEvent200ResponseEvent) SetEventSource

func (o *GetEvent200ResponseEvent) SetEventSource(v string)

SetEventSource sets field value

func (*GetEvent200ResponseEvent) SetEventTime

func (o *GetEvent200ResponseEvent) SetEventTime(v string)

SetEventTime sets field value

func (*GetEvent200ResponseEvent) SetId

func (o *GetEvent200ResponseEvent) SetId(v string)

SetId sets field value

func (*GetEvent200ResponseEvent) SetMeasurementClass

func (o *GetEvent200ResponseEvent) SetMeasurementClass(v string)

SetMeasurementClass sets field value

func (*GetEvent200ResponseEvent) SetOrderId

func (o *GetEvent200ResponseEvent) SetOrderId(v string)

SetOrderId sets field value

func (*GetEvent200ResponseEvent) SetParentEventId

func (o *GetEvent200ResponseEvent) SetParentEventId(v string)

SetParentEventId sets field value

func (*GetEvent200ResponseEvent) SetPayloadExpired

func (o *GetEvent200ResponseEvent) SetPayloadExpired(v bool)

SetPayloadExpired sets field value

func (*GetEvent200ResponseEvent) SetSession

func (o *GetEvent200ResponseEvent) SetSession(v interface{})

SetSession sets field value

func (*GetEvent200ResponseEvent) SetSignalTrackerId

func (o *GetEvent200ResponseEvent) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEvent200ResponseEvent) SetUserDataHashed

func (o *GetEvent200ResponseEvent) SetUserDataHashed(v interface{})

SetUserDataHashed sets field value

func (*GetEvent200ResponseEvent) SetValueAmount

func (o *GetEvent200ResponseEvent) SetValueAmount(v int32)

SetValueAmount sets field value

func (*GetEvent200ResponseEvent) SetValueCurrency

func (o *GetEvent200ResponseEvent) SetValueCurrency(v string)

SetValueCurrency sets field value

func (*GetEvent200ResponseEvent) SetValueData

func (o *GetEvent200ResponseEvent) SetValueData(v interface{})

SetValueData sets field value

func (GetEvent200ResponseEvent) ToMap

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

func (*GetEvent200ResponseEvent) UnmarshalJSON

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

type GetEvent200ResponseEventDeliveriesInner

type GetEvent200ResponseEventDeliveriesInner struct {
	Id                   int32          `json:"id"`
	SignalTrackerId      string         `json:"signal_tracker_id"`
	EventId              string         `json:"event_id"`
	DestinationId        NullableString `json:"destination_id"`
	Status               DeliveryStatus `json:"status"`
	IsTest               bool           `json:"is_test"`
	AttemptCount         int32          `json:"attempt_count"`
	LastError            interface{}    `json:"last_error"`
	PlatformResponse     interface{}    `json:"platform_response"`
	PlatformTraceId      NullableString `json:"platform_trace_id"`
	NextAttemptAt        NullableString `json:"next_attempt_at"`
	CreatedAt            string         `json:"created_at"`
	UpdatedAt            NullableString `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

GetEvent200ResponseEventDeliveriesInner struct for GetEvent200ResponseEventDeliveriesInner

func NewGetEvent200ResponseEventDeliveriesInner

func NewGetEvent200ResponseEventDeliveriesInner(id int32, signalTrackerId string, eventId string, destinationId NullableString, status DeliveryStatus, isTest bool, attemptCount int32, lastError interface{}, platformResponse interface{}, platformTraceId NullableString, nextAttemptAt NullableString, createdAt string, updatedAt NullableString) *GetEvent200ResponseEventDeliveriesInner

NewGetEvent200ResponseEventDeliveriesInner instantiates a new GetEvent200ResponseEventDeliveriesInner 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 NewGetEvent200ResponseEventDeliveriesInnerWithDefaults

func NewGetEvent200ResponseEventDeliveriesInnerWithDefaults() *GetEvent200ResponseEventDeliveriesInner

NewGetEvent200ResponseEventDeliveriesInnerWithDefaults instantiates a new GetEvent200ResponseEventDeliveriesInner 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 (*GetEvent200ResponseEventDeliveriesInner) GetAttemptCount

func (o *GetEvent200ResponseEventDeliveriesInner) GetAttemptCount() int32

GetAttemptCount returns the AttemptCount field value

func (*GetEvent200ResponseEventDeliveriesInner) GetAttemptCountOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetAttemptCountOk() (*int32, bool)

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

func (*GetEvent200ResponseEventDeliveriesInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*GetEvent200ResponseEventDeliveriesInner) GetCreatedAtOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetCreatedAtOk() (*string, bool)

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

func (*GetEvent200ResponseEventDeliveriesInner) GetDestinationId

func (o *GetEvent200ResponseEventDeliveriesInner) GetDestinationId() string

GetDestinationId returns the DestinationId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetDestinationIdOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetDestinationIdOk() (*string, bool)

GetDestinationIdOk returns a tuple with the DestinationId 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 (*GetEvent200ResponseEventDeliveriesInner) GetEventId

GetEventId returns the EventId field value

func (*GetEvent200ResponseEventDeliveriesInner) GetEventIdOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetEventIdOk() (*string, bool)

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

func (*GetEvent200ResponseEventDeliveriesInner) GetId

GetId returns the Id field value

func (*GetEvent200ResponseEventDeliveriesInner) GetIdOk

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

func (*GetEvent200ResponseEventDeliveriesInner) GetIsTest

GetIsTest returns the IsTest field value

func (*GetEvent200ResponseEventDeliveriesInner) GetIsTestOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetIsTestOk() (*bool, bool)

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

func (*GetEvent200ResponseEventDeliveriesInner) GetLastError

func (o *GetEvent200ResponseEventDeliveriesInner) GetLastError() interface{}

GetLastError returns the LastError field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetLastErrorOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetLastErrorOk() (*interface{}, bool)

GetLastErrorOk returns a tuple with the LastError 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 (*GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAt

func (o *GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAt() string

GetNextAttemptAt returns the NextAttemptAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAtOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAtOk() (*string, bool)

GetNextAttemptAtOk returns a tuple with the NextAttemptAt 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 (*GetEvent200ResponseEventDeliveriesInner) GetPlatformResponse

func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformResponse() interface{}

GetPlatformResponse returns the PlatformResponse field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetPlatformResponseOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformResponseOk() (*interface{}, bool)

GetPlatformResponseOk returns a tuple with the PlatformResponse 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 (*GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceId

func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceId() string

GetPlatformTraceId returns the PlatformTraceId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceIdOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceIdOk() (*string, bool)

GetPlatformTraceIdOk returns a tuple with the PlatformTraceId 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 (*GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerId

func (o *GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerIdOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEvent200ResponseEventDeliveriesInner) GetStatus

GetStatus returns the Status field value

func (*GetEvent200ResponseEventDeliveriesInner) GetStatusOk

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

func (*GetEvent200ResponseEventDeliveriesInner) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseEventDeliveriesInner) GetUpdatedAtOk

func (o *GetEvent200ResponseEventDeliveriesInner) GetUpdatedAtOk() (*string, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (GetEvent200ResponseEventDeliveriesInner) MarshalJSON

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

func (*GetEvent200ResponseEventDeliveriesInner) SetAttemptCount

func (o *GetEvent200ResponseEventDeliveriesInner) SetAttemptCount(v int32)

SetAttemptCount sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetCreatedAt

SetCreatedAt sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetDestinationId

func (o *GetEvent200ResponseEventDeliveriesInner) SetDestinationId(v string)

SetDestinationId sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetEventId

SetEventId sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetId

SetId sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetIsTest

SetIsTest sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetLastError

func (o *GetEvent200ResponseEventDeliveriesInner) SetLastError(v interface{})

SetLastError sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetNextAttemptAt

func (o *GetEvent200ResponseEventDeliveriesInner) SetNextAttemptAt(v string)

SetNextAttemptAt sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetPlatformResponse

func (o *GetEvent200ResponseEventDeliveriesInner) SetPlatformResponse(v interface{})

SetPlatformResponse sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetPlatformTraceId

func (o *GetEvent200ResponseEventDeliveriesInner) SetPlatformTraceId(v string)

SetPlatformTraceId sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetSignalTrackerId

func (o *GetEvent200ResponseEventDeliveriesInner) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetStatus

SetStatus sets field value

func (*GetEvent200ResponseEventDeliveriesInner) SetUpdatedAt

SetUpdatedAt sets field value

func (GetEvent200ResponseEventDeliveriesInner) ToMap

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

func (*GetEvent200ResponseEventDeliveriesInner) UnmarshalJSON

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

type GetEvent200ResponseLineage

type GetEvent200ResponseLineage struct {
	Parent               NullableGetEvent200ResponseLineageParent  `json:"parent"`
	Children             []GetEvent200ResponseLineageChildrenInner `json:"children"`
	AdditionalProperties map[string]interface{}
}

GetEvent200ResponseLineage struct for GetEvent200ResponseLineage

func NewGetEvent200ResponseLineage

NewGetEvent200ResponseLineage instantiates a new GetEvent200ResponseLineage 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 NewGetEvent200ResponseLineageWithDefaults

func NewGetEvent200ResponseLineageWithDefaults() *GetEvent200ResponseLineage

NewGetEvent200ResponseLineageWithDefaults instantiates a new GetEvent200ResponseLineage 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 (*GetEvent200ResponseLineage) GetChildren

GetChildren returns the Children field value

func (*GetEvent200ResponseLineage) GetChildrenOk

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

func (*GetEvent200ResponseLineage) GetParent

GetParent returns the Parent field value If the value is explicit nil, the zero value for GetEvent200ResponseLineageParent will be returned

func (*GetEvent200ResponseLineage) GetParentOk

GetParentOk returns a tuple with the Parent 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 (GetEvent200ResponseLineage) MarshalJSON

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

func (*GetEvent200ResponseLineage) SetChildren

SetChildren sets field value

func (*GetEvent200ResponseLineage) SetParent

SetParent sets field value

func (GetEvent200ResponseLineage) ToMap

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

func (*GetEvent200ResponseLineage) UnmarshalJSON

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

type GetEvent200ResponseLineageChildrenInner

type GetEvent200ResponseLineageChildrenInner struct {
	Id                          string         `json:"id"`
	SignalTrackerId             string         `json:"signal_tracker_id"`
	ParentEventId               NullableString `json:"parent_event_id"`
	EventName                   string         `json:"event_name"`
	EventTime                   string         `json:"event_time"`
	ActionSource                string         `json:"action_source"`
	EventClass                  string         `json:"event_class"`
	OrderId                     NullableString `json:"order_id"`
	ValueAmount                 NullableInt32  `json:"value_amount"`
	ValueCurrency               NullableString `json:"value_currency"`
	CreatedAt                   string         `json:"created_at"`
	ConsentBasis                string         `json:"consent_basis"`
	MeasurementClass            string         `json:"measurement_class"`
	AttributionJoin             string         `json:"attribution_join"`
	EnforcementScope            string         `json:"enforcement_scope"`
	ConsentNormalizationVersion string         `json:"consent_normalization_version"`
	Consent                     interface{}    `json:"consent"`
	UserDataHashed              interface{}    `json:"user_data_hashed"`
	ClickIds                    interface{}    `json:"click_ids"`
	Session                     interface{}    `json:"session"`
	ValueData                   interface{}    `json:"value_data"`
	EventSource                 NullableString `json:"event_source"`
	PayloadExpired              bool           `json:"payload_expired"`
	AdditionalProperties        map[string]interface{}
}

GetEvent200ResponseLineageChildrenInner struct for GetEvent200ResponseLineageChildrenInner

func NewGetEvent200ResponseLineageChildrenInner

func NewGetEvent200ResponseLineageChildrenInner(id string, signalTrackerId string, parentEventId NullableString, eventName string, eventTime string, actionSource string, eventClass string, orderId NullableString, valueAmount NullableInt32, valueCurrency NullableString, createdAt string, consentBasis string, measurementClass string, attributionJoin string, enforcementScope string, consentNormalizationVersion string, consent interface{}, userDataHashed interface{}, clickIds interface{}, session interface{}, valueData interface{}, eventSource NullableString, payloadExpired bool) *GetEvent200ResponseLineageChildrenInner

NewGetEvent200ResponseLineageChildrenInner instantiates a new GetEvent200ResponseLineageChildrenInner 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 NewGetEvent200ResponseLineageChildrenInnerWithDefaults

func NewGetEvent200ResponseLineageChildrenInnerWithDefaults() *GetEvent200ResponseLineageChildrenInner

NewGetEvent200ResponseLineageChildrenInnerWithDefaults instantiates a new GetEvent200ResponseLineageChildrenInner 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 (*GetEvent200ResponseLineageChildrenInner) GetActionSource

func (o *GetEvent200ResponseLineageChildrenInner) GetActionSource() string

GetActionSource returns the ActionSource field value

func (*GetEvent200ResponseLineageChildrenInner) GetActionSourceOk

func (o *GetEvent200ResponseLineageChildrenInner) GetActionSourceOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetAttributionJoin

func (o *GetEvent200ResponseLineageChildrenInner) GetAttributionJoin() string

GetAttributionJoin returns the AttributionJoin field value

func (*GetEvent200ResponseLineageChildrenInner) GetAttributionJoinOk

func (o *GetEvent200ResponseLineageChildrenInner) GetAttributionJoinOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetClickIds

func (o *GetEvent200ResponseLineageChildrenInner) GetClickIds() interface{}

GetClickIds returns the ClickIds field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetClickIdsOk

func (o *GetEvent200ResponseLineageChildrenInner) GetClickIdsOk() (*interface{}, bool)

GetClickIdsOk returns a tuple with the ClickIds 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 (*GetEvent200ResponseLineageChildrenInner) GetConsent

func (o *GetEvent200ResponseLineageChildrenInner) GetConsent() interface{}

GetConsent returns the Consent field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetConsentBasis

func (o *GetEvent200ResponseLineageChildrenInner) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*GetEvent200ResponseLineageChildrenInner) GetConsentBasisOk

func (o *GetEvent200ResponseLineageChildrenInner) GetConsentBasisOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersion

func (o *GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersion() string

GetConsentNormalizationVersion returns the ConsentNormalizationVersion field value

func (*GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersionOk

func (o *GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersionOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetConsentOk

func (o *GetEvent200ResponseLineageChildrenInner) GetConsentOk() (*interface{}, bool)

GetConsentOk returns a tuple with the Consent 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 (*GetEvent200ResponseLineageChildrenInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value

func (*GetEvent200ResponseLineageChildrenInner) GetCreatedAtOk

func (o *GetEvent200ResponseLineageChildrenInner) GetCreatedAtOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetEnforcementScope

func (o *GetEvent200ResponseLineageChildrenInner) GetEnforcementScope() string

GetEnforcementScope returns the EnforcementScope field value

func (*GetEvent200ResponseLineageChildrenInner) GetEnforcementScopeOk

func (o *GetEvent200ResponseLineageChildrenInner) GetEnforcementScopeOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetEventClass

GetEventClass returns the EventClass field value

func (*GetEvent200ResponseLineageChildrenInner) GetEventClassOk

func (o *GetEvent200ResponseLineageChildrenInner) GetEventClassOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetEventName

GetEventName returns the EventName field value

func (*GetEvent200ResponseLineageChildrenInner) GetEventNameOk

func (o *GetEvent200ResponseLineageChildrenInner) GetEventNameOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetEventSource

func (o *GetEvent200ResponseLineageChildrenInner) GetEventSource() string

GetEventSource returns the EventSource field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetEventSourceOk

func (o *GetEvent200ResponseLineageChildrenInner) GetEventSourceOk() (*string, bool)

GetEventSourceOk returns a tuple with the EventSource 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 (*GetEvent200ResponseLineageChildrenInner) GetEventTime

GetEventTime returns the EventTime field value

func (*GetEvent200ResponseLineageChildrenInner) GetEventTimeOk

func (o *GetEvent200ResponseLineageChildrenInner) GetEventTimeOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetId

GetId returns the Id field value

func (*GetEvent200ResponseLineageChildrenInner) GetIdOk

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

func (*GetEvent200ResponseLineageChildrenInner) GetMeasurementClass

func (o *GetEvent200ResponseLineageChildrenInner) GetMeasurementClass() string

GetMeasurementClass returns the MeasurementClass field value

func (*GetEvent200ResponseLineageChildrenInner) GetMeasurementClassOk

func (o *GetEvent200ResponseLineageChildrenInner) GetMeasurementClassOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetOrderId

GetOrderId returns the OrderId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetOrderIdOk

func (o *GetEvent200ResponseLineageChildrenInner) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId 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 (*GetEvent200ResponseLineageChildrenInner) GetParentEventId

func (o *GetEvent200ResponseLineageChildrenInner) GetParentEventId() string

GetParentEventId returns the ParentEventId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetParentEventIdOk

func (o *GetEvent200ResponseLineageChildrenInner) GetParentEventIdOk() (*string, bool)

GetParentEventIdOk returns a tuple with the ParentEventId 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 (*GetEvent200ResponseLineageChildrenInner) GetPayloadExpired

func (o *GetEvent200ResponseLineageChildrenInner) GetPayloadExpired() bool

GetPayloadExpired returns the PayloadExpired field value

func (*GetEvent200ResponseLineageChildrenInner) GetPayloadExpiredOk

func (o *GetEvent200ResponseLineageChildrenInner) GetPayloadExpiredOk() (*bool, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetSession

func (o *GetEvent200ResponseLineageChildrenInner) GetSession() interface{}

GetSession returns the Session field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetSessionOk

func (o *GetEvent200ResponseLineageChildrenInner) GetSessionOk() (*interface{}, bool)

GetSessionOk returns a tuple with the Session 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 (*GetEvent200ResponseLineageChildrenInner) GetSignalTrackerId

func (o *GetEvent200ResponseLineageChildrenInner) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEvent200ResponseLineageChildrenInner) GetSignalTrackerIdOk

func (o *GetEvent200ResponseLineageChildrenInner) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEvent200ResponseLineageChildrenInner) GetUserDataHashed

func (o *GetEvent200ResponseLineageChildrenInner) GetUserDataHashed() interface{}

GetUserDataHashed returns the UserDataHashed field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetUserDataHashedOk

func (o *GetEvent200ResponseLineageChildrenInner) GetUserDataHashedOk() (*interface{}, bool)

GetUserDataHashedOk returns a tuple with the UserDataHashed 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 (*GetEvent200ResponseLineageChildrenInner) GetValueAmount

func (o *GetEvent200ResponseLineageChildrenInner) GetValueAmount() int32

GetValueAmount returns the ValueAmount field value If the value is explicit nil, the zero value for int32 will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetValueAmountOk

func (o *GetEvent200ResponseLineageChildrenInner) GetValueAmountOk() (*int32, bool)

GetValueAmountOk returns a tuple with the ValueAmount 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 (*GetEvent200ResponseLineageChildrenInner) GetValueCurrency

func (o *GetEvent200ResponseLineageChildrenInner) GetValueCurrency() string

GetValueCurrency returns the ValueCurrency field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetValueCurrencyOk

func (o *GetEvent200ResponseLineageChildrenInner) GetValueCurrencyOk() (*string, bool)

GetValueCurrencyOk returns a tuple with the ValueCurrency 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 (*GetEvent200ResponseLineageChildrenInner) GetValueData

func (o *GetEvent200ResponseLineageChildrenInner) GetValueData() interface{}

GetValueData returns the ValueData field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageChildrenInner) GetValueDataOk

func (o *GetEvent200ResponseLineageChildrenInner) GetValueDataOk() (*interface{}, bool)

GetValueDataOk returns a tuple with the ValueData 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 (GetEvent200ResponseLineageChildrenInner) MarshalJSON

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

func (*GetEvent200ResponseLineageChildrenInner) SetActionSource

func (o *GetEvent200ResponseLineageChildrenInner) SetActionSource(v string)

SetActionSource sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetAttributionJoin

func (o *GetEvent200ResponseLineageChildrenInner) SetAttributionJoin(v string)

SetAttributionJoin sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetClickIds

func (o *GetEvent200ResponseLineageChildrenInner) SetClickIds(v interface{})

SetClickIds sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetConsent

func (o *GetEvent200ResponseLineageChildrenInner) SetConsent(v interface{})

SetConsent sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetConsentBasis

func (o *GetEvent200ResponseLineageChildrenInner) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetConsentNormalizationVersion

func (o *GetEvent200ResponseLineageChildrenInner) SetConsentNormalizationVersion(v string)

SetConsentNormalizationVersion sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetCreatedAt

SetCreatedAt sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetEnforcementScope

func (o *GetEvent200ResponseLineageChildrenInner) SetEnforcementScope(v string)

SetEnforcementScope sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetEventClass

func (o *GetEvent200ResponseLineageChildrenInner) SetEventClass(v string)

SetEventClass sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetEventName

SetEventName sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetEventSource

func (o *GetEvent200ResponseLineageChildrenInner) SetEventSource(v string)

SetEventSource sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetEventTime

SetEventTime sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetId

SetId sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetMeasurementClass

func (o *GetEvent200ResponseLineageChildrenInner) SetMeasurementClass(v string)

SetMeasurementClass sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetOrderId

SetOrderId sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetParentEventId

func (o *GetEvent200ResponseLineageChildrenInner) SetParentEventId(v string)

SetParentEventId sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetPayloadExpired

func (o *GetEvent200ResponseLineageChildrenInner) SetPayloadExpired(v bool)

SetPayloadExpired sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetSession

func (o *GetEvent200ResponseLineageChildrenInner) SetSession(v interface{})

SetSession sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetSignalTrackerId

func (o *GetEvent200ResponseLineageChildrenInner) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetUserDataHashed

func (o *GetEvent200ResponseLineageChildrenInner) SetUserDataHashed(v interface{})

SetUserDataHashed sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetValueAmount

func (o *GetEvent200ResponseLineageChildrenInner) SetValueAmount(v int32)

SetValueAmount sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetValueCurrency

func (o *GetEvent200ResponseLineageChildrenInner) SetValueCurrency(v string)

SetValueCurrency sets field value

func (*GetEvent200ResponseLineageChildrenInner) SetValueData

func (o *GetEvent200ResponseLineageChildrenInner) SetValueData(v interface{})

SetValueData sets field value

func (GetEvent200ResponseLineageChildrenInner) ToMap

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

func (*GetEvent200ResponseLineageChildrenInner) UnmarshalJSON

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

type GetEvent200ResponseLineageParent

type GetEvent200ResponseLineageParent struct {
	Id                          string         `json:"id"`
	SignalTrackerId             string         `json:"signal_tracker_id"`
	ParentEventId               NullableString `json:"parent_event_id"`
	EventName                   string         `json:"event_name"`
	EventTime                   string         `json:"event_time"`
	ActionSource                string         `json:"action_source"`
	EventClass                  string         `json:"event_class"`
	OrderId                     NullableString `json:"order_id"`
	ValueAmount                 NullableInt32  `json:"value_amount"`
	ValueCurrency               NullableString `json:"value_currency"`
	CreatedAt                   string         `json:"created_at"`
	ConsentBasis                string         `json:"consent_basis"`
	MeasurementClass            string         `json:"measurement_class"`
	AttributionJoin             string         `json:"attribution_join"`
	EnforcementScope            string         `json:"enforcement_scope"`
	ConsentNormalizationVersion string         `json:"consent_normalization_version"`
	Consent                     interface{}    `json:"consent"`
	UserDataHashed              interface{}    `json:"user_data_hashed"`
	ClickIds                    interface{}    `json:"click_ids"`
	Session                     interface{}    `json:"session"`
	ValueData                   interface{}    `json:"value_data"`
	EventSource                 NullableString `json:"event_source"`
	PayloadExpired              bool           `json:"payload_expired"`
	AdditionalProperties        map[string]interface{}
}

GetEvent200ResponseLineageParent struct for GetEvent200ResponseLineageParent

func NewGetEvent200ResponseLineageParent

func NewGetEvent200ResponseLineageParent(id string, signalTrackerId string, parentEventId NullableString, eventName string, eventTime string, actionSource string, eventClass string, orderId NullableString, valueAmount NullableInt32, valueCurrency NullableString, createdAt string, consentBasis string, measurementClass string, attributionJoin string, enforcementScope string, consentNormalizationVersion string, consent interface{}, userDataHashed interface{}, clickIds interface{}, session interface{}, valueData interface{}, eventSource NullableString, payloadExpired bool) *GetEvent200ResponseLineageParent

NewGetEvent200ResponseLineageParent instantiates a new GetEvent200ResponseLineageParent 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 NewGetEvent200ResponseLineageParentWithDefaults

func NewGetEvent200ResponseLineageParentWithDefaults() *GetEvent200ResponseLineageParent

NewGetEvent200ResponseLineageParentWithDefaults instantiates a new GetEvent200ResponseLineageParent 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 (*GetEvent200ResponseLineageParent) GetActionSource

func (o *GetEvent200ResponseLineageParent) GetActionSource() string

GetActionSource returns the ActionSource field value

func (*GetEvent200ResponseLineageParent) GetActionSourceOk

func (o *GetEvent200ResponseLineageParent) GetActionSourceOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetAttributionJoin

func (o *GetEvent200ResponseLineageParent) GetAttributionJoin() string

GetAttributionJoin returns the AttributionJoin field value

func (*GetEvent200ResponseLineageParent) GetAttributionJoinOk

func (o *GetEvent200ResponseLineageParent) GetAttributionJoinOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetClickIds

func (o *GetEvent200ResponseLineageParent) GetClickIds() interface{}

GetClickIds returns the ClickIds field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageParent) GetClickIdsOk

func (o *GetEvent200ResponseLineageParent) GetClickIdsOk() (*interface{}, bool)

GetClickIdsOk returns a tuple with the ClickIds 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 (*GetEvent200ResponseLineageParent) GetConsent

func (o *GetEvent200ResponseLineageParent) GetConsent() interface{}

GetConsent returns the Consent field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageParent) GetConsentBasis

func (o *GetEvent200ResponseLineageParent) GetConsentBasis() string

GetConsentBasis returns the ConsentBasis field value

func (*GetEvent200ResponseLineageParent) GetConsentBasisOk

func (o *GetEvent200ResponseLineageParent) GetConsentBasisOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetConsentNormalizationVersion

func (o *GetEvent200ResponseLineageParent) GetConsentNormalizationVersion() string

GetConsentNormalizationVersion returns the ConsentNormalizationVersion field value

func (*GetEvent200ResponseLineageParent) GetConsentNormalizationVersionOk

func (o *GetEvent200ResponseLineageParent) GetConsentNormalizationVersionOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetConsentOk

func (o *GetEvent200ResponseLineageParent) GetConsentOk() (*interface{}, bool)

GetConsentOk returns a tuple with the Consent 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 (*GetEvent200ResponseLineageParent) GetCreatedAt

func (o *GetEvent200ResponseLineageParent) GetCreatedAt() string

GetCreatedAt returns the CreatedAt field value

func (*GetEvent200ResponseLineageParent) GetCreatedAtOk

func (o *GetEvent200ResponseLineageParent) GetCreatedAtOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetEnforcementScope

func (o *GetEvent200ResponseLineageParent) GetEnforcementScope() string

GetEnforcementScope returns the EnforcementScope field value

func (*GetEvent200ResponseLineageParent) GetEnforcementScopeOk

func (o *GetEvent200ResponseLineageParent) GetEnforcementScopeOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetEventClass

func (o *GetEvent200ResponseLineageParent) GetEventClass() string

GetEventClass returns the EventClass field value

func (*GetEvent200ResponseLineageParent) GetEventClassOk

func (o *GetEvent200ResponseLineageParent) GetEventClassOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetEventName

func (o *GetEvent200ResponseLineageParent) GetEventName() string

GetEventName returns the EventName field value

func (*GetEvent200ResponseLineageParent) GetEventNameOk

func (o *GetEvent200ResponseLineageParent) GetEventNameOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetEventSource

func (o *GetEvent200ResponseLineageParent) GetEventSource() string

GetEventSource returns the EventSource field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageParent) GetEventSourceOk

func (o *GetEvent200ResponseLineageParent) GetEventSourceOk() (*string, bool)

GetEventSourceOk returns a tuple with the EventSource 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 (*GetEvent200ResponseLineageParent) GetEventTime

func (o *GetEvent200ResponseLineageParent) GetEventTime() string

GetEventTime returns the EventTime field value

func (*GetEvent200ResponseLineageParent) GetEventTimeOk

func (o *GetEvent200ResponseLineageParent) GetEventTimeOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetId

GetId returns the Id field value

func (*GetEvent200ResponseLineageParent) GetIdOk

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

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

func (*GetEvent200ResponseLineageParent) GetMeasurementClass

func (o *GetEvent200ResponseLineageParent) GetMeasurementClass() string

GetMeasurementClass returns the MeasurementClass field value

func (*GetEvent200ResponseLineageParent) GetMeasurementClassOk

func (o *GetEvent200ResponseLineageParent) GetMeasurementClassOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetOrderId

func (o *GetEvent200ResponseLineageParent) GetOrderId() string

GetOrderId returns the OrderId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageParent) GetOrderIdOk

func (o *GetEvent200ResponseLineageParent) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId 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 (*GetEvent200ResponseLineageParent) GetParentEventId

func (o *GetEvent200ResponseLineageParent) GetParentEventId() string

GetParentEventId returns the ParentEventId field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageParent) GetParentEventIdOk

func (o *GetEvent200ResponseLineageParent) GetParentEventIdOk() (*string, bool)

GetParentEventIdOk returns a tuple with the ParentEventId 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 (*GetEvent200ResponseLineageParent) GetPayloadExpired

func (o *GetEvent200ResponseLineageParent) GetPayloadExpired() bool

GetPayloadExpired returns the PayloadExpired field value

func (*GetEvent200ResponseLineageParent) GetPayloadExpiredOk

func (o *GetEvent200ResponseLineageParent) GetPayloadExpiredOk() (*bool, bool)

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

func (*GetEvent200ResponseLineageParent) GetSession

func (o *GetEvent200ResponseLineageParent) GetSession() interface{}

GetSession returns the Session field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageParent) GetSessionOk

func (o *GetEvent200ResponseLineageParent) GetSessionOk() (*interface{}, bool)

GetSessionOk returns a tuple with the Session 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 (*GetEvent200ResponseLineageParent) GetSignalTrackerId

func (o *GetEvent200ResponseLineageParent) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetEvent200ResponseLineageParent) GetSignalTrackerIdOk

func (o *GetEvent200ResponseLineageParent) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetEvent200ResponseLineageParent) GetUserDataHashed

func (o *GetEvent200ResponseLineageParent) GetUserDataHashed() interface{}

GetUserDataHashed returns the UserDataHashed field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageParent) GetUserDataHashedOk

func (o *GetEvent200ResponseLineageParent) GetUserDataHashedOk() (*interface{}, bool)

GetUserDataHashedOk returns a tuple with the UserDataHashed 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 (*GetEvent200ResponseLineageParent) GetValueAmount

func (o *GetEvent200ResponseLineageParent) GetValueAmount() int32

GetValueAmount returns the ValueAmount field value If the value is explicit nil, the zero value for int32 will be returned

func (*GetEvent200ResponseLineageParent) GetValueAmountOk

func (o *GetEvent200ResponseLineageParent) GetValueAmountOk() (*int32, bool)

GetValueAmountOk returns a tuple with the ValueAmount 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 (*GetEvent200ResponseLineageParent) GetValueCurrency

func (o *GetEvent200ResponseLineageParent) GetValueCurrency() string

GetValueCurrency returns the ValueCurrency field value If the value is explicit nil, the zero value for string will be returned

func (*GetEvent200ResponseLineageParent) GetValueCurrencyOk

func (o *GetEvent200ResponseLineageParent) GetValueCurrencyOk() (*string, bool)

GetValueCurrencyOk returns a tuple with the ValueCurrency 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 (*GetEvent200ResponseLineageParent) GetValueData

func (o *GetEvent200ResponseLineageParent) GetValueData() interface{}

GetValueData returns the ValueData field value If the value is explicit nil, the zero value for interface{} will be returned

func (*GetEvent200ResponseLineageParent) GetValueDataOk

func (o *GetEvent200ResponseLineageParent) GetValueDataOk() (*interface{}, bool)

GetValueDataOk returns a tuple with the ValueData 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 (GetEvent200ResponseLineageParent) MarshalJSON

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

func (*GetEvent200ResponseLineageParent) SetActionSource

func (o *GetEvent200ResponseLineageParent) SetActionSource(v string)

SetActionSource sets field value

func (*GetEvent200ResponseLineageParent) SetAttributionJoin

func (o *GetEvent200ResponseLineageParent) SetAttributionJoin(v string)

SetAttributionJoin sets field value

func (*GetEvent200ResponseLineageParent) SetClickIds

func (o *GetEvent200ResponseLineageParent) SetClickIds(v interface{})

SetClickIds sets field value

func (*GetEvent200ResponseLineageParent) SetConsent

func (o *GetEvent200ResponseLineageParent) SetConsent(v interface{})

SetConsent sets field value

func (*GetEvent200ResponseLineageParent) SetConsentBasis

func (o *GetEvent200ResponseLineageParent) SetConsentBasis(v string)

SetConsentBasis sets field value

func (*GetEvent200ResponseLineageParent) SetConsentNormalizationVersion

func (o *GetEvent200ResponseLineageParent) SetConsentNormalizationVersion(v string)

SetConsentNormalizationVersion sets field value

func (*GetEvent200ResponseLineageParent) SetCreatedAt

func (o *GetEvent200ResponseLineageParent) SetCreatedAt(v string)

SetCreatedAt sets field value

func (*GetEvent200ResponseLineageParent) SetEnforcementScope

func (o *GetEvent200ResponseLineageParent) SetEnforcementScope(v string)

SetEnforcementScope sets field value

func (*GetEvent200ResponseLineageParent) SetEventClass

func (o *GetEvent200ResponseLineageParent) SetEventClass(v string)

SetEventClass sets field value

func (*GetEvent200ResponseLineageParent) SetEventName

func (o *GetEvent200ResponseLineageParent) SetEventName(v string)

SetEventName sets field value

func (*GetEvent200ResponseLineageParent) SetEventSource

func (o *GetEvent200ResponseLineageParent) SetEventSource(v string)

SetEventSource sets field value

func (*GetEvent200ResponseLineageParent) SetEventTime

func (o *GetEvent200ResponseLineageParent) SetEventTime(v string)

SetEventTime sets field value

func (*GetEvent200ResponseLineageParent) SetId

SetId sets field value

func (*GetEvent200ResponseLineageParent) SetMeasurementClass

func (o *GetEvent200ResponseLineageParent) SetMeasurementClass(v string)

SetMeasurementClass sets field value

func (*GetEvent200ResponseLineageParent) SetOrderId

func (o *GetEvent200ResponseLineageParent) SetOrderId(v string)

SetOrderId sets field value

func (*GetEvent200ResponseLineageParent) SetParentEventId

func (o *GetEvent200ResponseLineageParent) SetParentEventId(v string)

SetParentEventId sets field value

func (*GetEvent200ResponseLineageParent) SetPayloadExpired

func (o *GetEvent200ResponseLineageParent) SetPayloadExpired(v bool)

SetPayloadExpired sets field value

func (*GetEvent200ResponseLineageParent) SetSession

func (o *GetEvent200ResponseLineageParent) SetSession(v interface{})

SetSession sets field value

func (*GetEvent200ResponseLineageParent) SetSignalTrackerId

func (o *GetEvent200ResponseLineageParent) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetEvent200ResponseLineageParent) SetUserDataHashed

func (o *GetEvent200ResponseLineageParent) SetUserDataHashed(v interface{})

SetUserDataHashed sets field value

func (*GetEvent200ResponseLineageParent) SetValueAmount

func (o *GetEvent200ResponseLineageParent) SetValueAmount(v int32)

SetValueAmount sets field value

func (*GetEvent200ResponseLineageParent) SetValueCurrency

func (o *GetEvent200ResponseLineageParent) SetValueCurrency(v string)

SetValueCurrency sets field value

func (*GetEvent200ResponseLineageParent) SetValueData

func (o *GetEvent200ResponseLineageParent) SetValueData(v interface{})

SetValueData sets field value

func (GetEvent200ResponseLineageParent) ToMap

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

func (*GetEvent200ResponseLineageParent) UnmarshalJSON

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

type GetReconciliationReport200Response

type GetReconciliationReport200Response struct {
	Date                 string                                           `json:"date"`
	Reports              []GetReconciliationReport200ResponseReportsInner `json:"reports"`
	AdditionalProperties map[string]interface{}
}

GetReconciliationReport200Response struct for GetReconciliationReport200Response

func NewGetReconciliationReport200Response

func NewGetReconciliationReport200Response(date string, reports []GetReconciliationReport200ResponseReportsInner) *GetReconciliationReport200Response

NewGetReconciliationReport200Response instantiates a new GetReconciliationReport200Response 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 NewGetReconciliationReport200ResponseWithDefaults

func NewGetReconciliationReport200ResponseWithDefaults() *GetReconciliationReport200Response

NewGetReconciliationReport200ResponseWithDefaults instantiates a new GetReconciliationReport200Response 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 (*GetReconciliationReport200Response) GetDate

GetDate returns the Date field value

func (*GetReconciliationReport200Response) GetDateOk

func (o *GetReconciliationReport200Response) GetDateOk() (*string, bool)

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

func (*GetReconciliationReport200Response) GetReports

GetReports returns the Reports field value

func (*GetReconciliationReport200Response) GetReportsOk

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

func (GetReconciliationReport200Response) MarshalJSON

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

func (*GetReconciliationReport200Response) SetDate

SetDate sets field value

func (*GetReconciliationReport200Response) SetReports

SetReports sets field value

func (GetReconciliationReport200Response) ToMap

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

func (*GetReconciliationReport200Response) UnmarshalJSON

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

type GetReconciliationReport200ResponseReportsInner

type GetReconciliationReport200ResponseReportsInner struct {
	Id                   int32                                                                 `json:"id"`
	SignalTrackerId      string                                                                `json:"signal_tracker_id"`
	DestinationId        string                                                                `json:"destination_id"`
	ReportDate           string                                                                `json:"report_date"`
	AcceptedCount        int32                                                                 `json:"accepted_count"`
	MetaCount            int32                                                                 `json:"meta_count"`
	ObservedGap          int32                                                                 `json:"observed_gap"`
	EventCounts          GetReconciliationReport200ResponseReportsInnerEventCounts             `json:"event_counts"`
	Buckets              map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue `json:"buckets"`
	UnexplainedResidual  int32                                                                 `json:"unexplained_residual"`
	Status               string                                                                `json:"status"`
	CreatedAt            NullableString                                                        `json:"created_at"`
	UpdatedAt            NullableString                                                        `json:"updated_at"`
	Destination          SetDestinationTestMode200ResponseDestination                          `json:"destination"`
	AdditionalProperties map[string]interface{}
}

GetReconciliationReport200ResponseReportsInner struct for GetReconciliationReport200ResponseReportsInner

func NewGetReconciliationReport200ResponseReportsInner

func NewGetReconciliationReport200ResponseReportsInner(id int32, signalTrackerId string, destinationId string, reportDate string, acceptedCount int32, metaCount int32, observedGap int32, eventCounts GetReconciliationReport200ResponseReportsInnerEventCounts, buckets map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue, unexplainedResidual int32, status string, createdAt NullableString, updatedAt NullableString, destination SetDestinationTestMode200ResponseDestination) *GetReconciliationReport200ResponseReportsInner

NewGetReconciliationReport200ResponseReportsInner instantiates a new GetReconciliationReport200ResponseReportsInner 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 NewGetReconciliationReport200ResponseReportsInnerWithDefaults

func NewGetReconciliationReport200ResponseReportsInnerWithDefaults() *GetReconciliationReport200ResponseReportsInner

NewGetReconciliationReport200ResponseReportsInnerWithDefaults instantiates a new GetReconciliationReport200ResponseReportsInner 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 (*GetReconciliationReport200ResponseReportsInner) GetAcceptedCount

GetAcceptedCount returns the AcceptedCount field value

func (*GetReconciliationReport200ResponseReportsInner) GetAcceptedCountOk

func (o *GetReconciliationReport200ResponseReportsInner) GetAcceptedCountOk() (*int32, bool)

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

func (*GetReconciliationReport200ResponseReportsInner) GetBuckets

GetBuckets returns the Buckets field value

func (*GetReconciliationReport200ResponseReportsInner) GetBucketsOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetCreatedAt

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetReconciliationReport200ResponseReportsInner) GetCreatedAtOk

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*GetReconciliationReport200ResponseReportsInner) GetDestination

GetDestination returns the Destination field value

func (*GetReconciliationReport200ResponseReportsInner) GetDestinationId

GetDestinationId returns the DestinationId field value

func (*GetReconciliationReport200ResponseReportsInner) GetDestinationIdOk

func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationIdOk() (*string, bool)

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

func (*GetReconciliationReport200ResponseReportsInner) GetDestinationOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetEventCounts

GetEventCounts returns the EventCounts field value

func (*GetReconciliationReport200ResponseReportsInner) GetEventCountsOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetId

GetId returns the Id field value

func (*GetReconciliationReport200ResponseReportsInner) GetIdOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetMetaCount

GetMetaCount returns the MetaCount field value

func (*GetReconciliationReport200ResponseReportsInner) GetMetaCountOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetObservedGap

GetObservedGap returns the ObservedGap field value

func (*GetReconciliationReport200ResponseReportsInner) GetObservedGapOk

func (o *GetReconciliationReport200ResponseReportsInner) GetObservedGapOk() (*int32, bool)

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

func (*GetReconciliationReport200ResponseReportsInner) GetReportDate

GetReportDate returns the ReportDate field value

func (*GetReconciliationReport200ResponseReportsInner) GetReportDateOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetSignalTrackerId

GetSignalTrackerId returns the SignalTrackerId field value

func (*GetReconciliationReport200ResponseReportsInner) GetSignalTrackerIdOk

func (o *GetReconciliationReport200ResponseReportsInner) GetSignalTrackerIdOk() (*string, bool)

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

func (*GetReconciliationReport200ResponseReportsInner) GetStatus

GetStatus returns the Status field value

func (*GetReconciliationReport200ResponseReportsInner) GetStatusOk

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

func (*GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidual

func (o *GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidual() int32

GetUnexplainedResidual returns the UnexplainedResidual field value

func (*GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidualOk

func (o *GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidualOk() (*int32, bool)

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

func (*GetReconciliationReport200ResponseReportsInner) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*GetReconciliationReport200ResponseReportsInner) GetUpdatedAtOk

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (GetReconciliationReport200ResponseReportsInner) MarshalJSON

func (*GetReconciliationReport200ResponseReportsInner) SetAcceptedCount

SetAcceptedCount sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetBuckets

SetBuckets sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetCreatedAt

SetCreatedAt sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetDestination

SetDestination sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetDestinationId

SetDestinationId sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetEventCounts

SetEventCounts sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetId

SetId sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetMetaCount

SetMetaCount sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetObservedGap

SetObservedGap sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetReportDate

SetReportDate sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetSignalTrackerId

func (o *GetReconciliationReport200ResponseReportsInner) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetStatus

SetStatus sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetUnexplainedResidual

func (o *GetReconciliationReport200ResponseReportsInner) SetUnexplainedResidual(v int32)

SetUnexplainedResidual sets field value

func (*GetReconciliationReport200ResponseReportsInner) SetUpdatedAt

SetUpdatedAt sets field value

func (GetReconciliationReport200ResponseReportsInner) ToMap

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

func (*GetReconciliationReport200ResponseReportsInner) UnmarshalJSON

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

type GetReconciliationReport200ResponseReportsInnerBucketsValue

type GetReconciliationReport200ResponseReportsInnerBucketsValue struct {
	Count                int32  `json:"count"`
	Basis                string `json:"basis"`
	Explanation          string `json:"explanation"`
	AdditionalProperties map[string]interface{}
}

GetReconciliationReport200ResponseReportsInnerBucketsValue struct for GetReconciliationReport200ResponseReportsInnerBucketsValue

func NewGetReconciliationReport200ResponseReportsInnerBucketsValue

func NewGetReconciliationReport200ResponseReportsInnerBucketsValue(count int32, basis string, explanation string) *GetReconciliationReport200ResponseReportsInnerBucketsValue

NewGetReconciliationReport200ResponseReportsInnerBucketsValue instantiates a new GetReconciliationReport200ResponseReportsInnerBucketsValue 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 NewGetReconciliationReport200ResponseReportsInnerBucketsValueWithDefaults

func NewGetReconciliationReport200ResponseReportsInnerBucketsValueWithDefaults() *GetReconciliationReport200ResponseReportsInnerBucketsValue

NewGetReconciliationReport200ResponseReportsInnerBucketsValueWithDefaults instantiates a new GetReconciliationReport200ResponseReportsInnerBucketsValue 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 (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasis

GetBasis returns the Basis field value

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasisOk

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

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCount

GetCount returns the Count field value

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCountOk

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

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanation

GetExplanation returns the Explanation field value

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanationOk

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

func (GetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetBasis

SetBasis sets field value

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetCount

SetCount sets field value

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetExplanation

SetExplanation sets field value

func (GetReconciliationReport200ResponseReportsInnerBucketsValue) ToMap

func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON

type GetReconciliationReport200ResponseReportsInnerEventCounts

type GetReconciliationReport200ResponseReportsInnerEventCounts struct {
	Accepted             GetReconciliationReport200ResponseReportsInnerEventCountsAccepted `json:"accepted"`
	Meta                 GetReconciliationReport200ResponseReportsInnerEventCountsAccepted `json:"meta"`
	AdditionalProperties map[string]interface{}
}

GetReconciliationReport200ResponseReportsInnerEventCounts struct for GetReconciliationReport200ResponseReportsInnerEventCounts

func NewGetReconciliationReport200ResponseReportsInnerEventCounts

NewGetReconciliationReport200ResponseReportsInnerEventCounts instantiates a new GetReconciliationReport200ResponseReportsInnerEventCounts 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 NewGetReconciliationReport200ResponseReportsInnerEventCountsWithDefaults

func NewGetReconciliationReport200ResponseReportsInnerEventCountsWithDefaults() *GetReconciliationReport200ResponseReportsInnerEventCounts

NewGetReconciliationReport200ResponseReportsInnerEventCountsWithDefaults instantiates a new GetReconciliationReport200ResponseReportsInnerEventCounts 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 (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetAccepted

GetAccepted returns the Accepted field value

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetAcceptedOk

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

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetMeta

GetMeta returns the Meta field value

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetMetaOk

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

func (GetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) SetAccepted

SetAccepted sets field value

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) SetMeta

SetMeta sets field value

func (GetReconciliationReport200ResponseReportsInnerEventCounts) ToMap

func (*GetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON

type GetReconciliationReport200ResponseReportsInnerEventCountsAccepted

type GetReconciliationReport200ResponseReportsInnerEventCountsAccepted struct {
	ArrayOfAny          *[]interface{}
	MapmapOfStringint32 *map[string]int32
}

GetReconciliationReport200ResponseReportsInnerEventCountsAccepted struct for GetReconciliationReport200ResponseReportsInnerEventCountsAccepted

func (GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON

Marshal data from the first non-nil pointers in the struct to JSON

func (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON

Unmarshal JSON data into any of the pointers in the struct

type GetSandbox200Response

type GetSandbox200Response struct {
	Environment            string                            `json:"environment"`
	AuthenticationRequired bool                              `json:"authentication_required"`
	AccountRequired        bool                              `json:"account_required"`
	ProductionData         bool                              `json:"production_data"`
	PersistsData           bool                              `json:"persists_data"`
	ProviderDelivery       bool                              `json:"provider_delivery"`
	Description            string                            `json:"description"`
	SelfServeKey           GetSandbox200ResponseSelfServeKey `json:"self_serve_key"`
	Try                    GetSandbox200ResponseTry          `json:"try"`
	AdditionalProperties   map[string]interface{}
}

GetSandbox200Response struct for GetSandbox200Response

func NewGetSandbox200Response

func NewGetSandbox200Response(environment string, authenticationRequired bool, accountRequired bool, productionData bool, persistsData bool, providerDelivery bool, description string, selfServeKey GetSandbox200ResponseSelfServeKey, try GetSandbox200ResponseTry) *GetSandbox200Response

NewGetSandbox200Response instantiates a new GetSandbox200Response 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 NewGetSandbox200ResponseWithDefaults

func NewGetSandbox200ResponseWithDefaults() *GetSandbox200Response

NewGetSandbox200ResponseWithDefaults instantiates a new GetSandbox200Response 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 (*GetSandbox200Response) GetAccountRequired

func (o *GetSandbox200Response) GetAccountRequired() bool

GetAccountRequired returns the AccountRequired field value

func (*GetSandbox200Response) GetAccountRequiredOk

func (o *GetSandbox200Response) GetAccountRequiredOk() (*bool, bool)

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

func (*GetSandbox200Response) GetAuthenticationRequired

func (o *GetSandbox200Response) GetAuthenticationRequired() bool

GetAuthenticationRequired returns the AuthenticationRequired field value

func (*GetSandbox200Response) GetAuthenticationRequiredOk

func (o *GetSandbox200Response) GetAuthenticationRequiredOk() (*bool, bool)

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

func (*GetSandbox200Response) GetDescription

func (o *GetSandbox200Response) GetDescription() string

GetDescription returns the Description field value

func (*GetSandbox200Response) GetDescriptionOk

func (o *GetSandbox200Response) GetDescriptionOk() (*string, bool)

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

func (*GetSandbox200Response) GetEnvironment

func (o *GetSandbox200Response) GetEnvironment() string

GetEnvironment returns the Environment field value

func (*GetSandbox200Response) GetEnvironmentOk

func (o *GetSandbox200Response) GetEnvironmentOk() (*string, bool)

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

func (*GetSandbox200Response) GetPersistsData

func (o *GetSandbox200Response) GetPersistsData() bool

GetPersistsData returns the PersistsData field value

func (*GetSandbox200Response) GetPersistsDataOk

func (o *GetSandbox200Response) GetPersistsDataOk() (*bool, bool)

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

func (*GetSandbox200Response) GetProductionData

func (o *GetSandbox200Response) GetProductionData() bool

GetProductionData returns the ProductionData field value

func (*GetSandbox200Response) GetProductionDataOk

func (o *GetSandbox200Response) GetProductionDataOk() (*bool, bool)

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

func (*GetSandbox200Response) GetProviderDelivery

func (o *GetSandbox200Response) GetProviderDelivery() bool

GetProviderDelivery returns the ProviderDelivery field value

func (*GetSandbox200Response) GetProviderDeliveryOk

func (o *GetSandbox200Response) GetProviderDeliveryOk() (*bool, bool)

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

func (*GetSandbox200Response) GetSelfServeKey

GetSelfServeKey returns the SelfServeKey field value

func (*GetSandbox200Response) GetSelfServeKeyOk

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

func (*GetSandbox200Response) GetTry

GetTry returns the Try field value

func (*GetSandbox200Response) GetTryOk

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

func (GetSandbox200Response) MarshalJSON

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

func (*GetSandbox200Response) SetAccountRequired

func (o *GetSandbox200Response) SetAccountRequired(v bool)

SetAccountRequired sets field value

func (*GetSandbox200Response) SetAuthenticationRequired

func (o *GetSandbox200Response) SetAuthenticationRequired(v bool)

SetAuthenticationRequired sets field value

func (*GetSandbox200Response) SetDescription

func (o *GetSandbox200Response) SetDescription(v string)

SetDescription sets field value

func (*GetSandbox200Response) SetEnvironment

func (o *GetSandbox200Response) SetEnvironment(v string)

SetEnvironment sets field value

func (*GetSandbox200Response) SetPersistsData

func (o *GetSandbox200Response) SetPersistsData(v bool)

SetPersistsData sets field value

func (*GetSandbox200Response) SetProductionData

func (o *GetSandbox200Response) SetProductionData(v bool)

SetProductionData sets field value

func (*GetSandbox200Response) SetProviderDelivery

func (o *GetSandbox200Response) SetProviderDelivery(v bool)

SetProviderDelivery sets field value

func (*GetSandbox200Response) SetSelfServeKey

SetSelfServeKey sets field value

func (*GetSandbox200Response) SetTry

SetTry sets field value

func (GetSandbox200Response) ToMap

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

func (*GetSandbox200Response) UnmarshalJSON

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

type GetSandbox200ResponseSelfServeKey

type GetSandbox200ResponseSelfServeKey struct {
	Method                 string `json:"method"`
	Url                    string `json:"url"`
	AuthenticationRequired bool   `json:"authentication_required"`
	Description            string `json:"description"`
	AdditionalProperties   map[string]interface{}
}

GetSandbox200ResponseSelfServeKey struct for GetSandbox200ResponseSelfServeKey

func NewGetSandbox200ResponseSelfServeKey

func NewGetSandbox200ResponseSelfServeKey(method string, url string, authenticationRequired bool, description string) *GetSandbox200ResponseSelfServeKey

NewGetSandbox200ResponseSelfServeKey instantiates a new GetSandbox200ResponseSelfServeKey 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 NewGetSandbox200ResponseSelfServeKeyWithDefaults

func NewGetSandbox200ResponseSelfServeKeyWithDefaults() *GetSandbox200ResponseSelfServeKey

NewGetSandbox200ResponseSelfServeKeyWithDefaults instantiates a new GetSandbox200ResponseSelfServeKey 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 (*GetSandbox200ResponseSelfServeKey) GetAuthenticationRequired

func (o *GetSandbox200ResponseSelfServeKey) GetAuthenticationRequired() bool

GetAuthenticationRequired returns the AuthenticationRequired field value

func (*GetSandbox200ResponseSelfServeKey) GetAuthenticationRequiredOk

func (o *GetSandbox200ResponseSelfServeKey) GetAuthenticationRequiredOk() (*bool, bool)

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

func (*GetSandbox200ResponseSelfServeKey) GetDescription

func (o *GetSandbox200ResponseSelfServeKey) GetDescription() string

GetDescription returns the Description field value

func (*GetSandbox200ResponseSelfServeKey) GetDescriptionOk

func (o *GetSandbox200ResponseSelfServeKey) GetDescriptionOk() (*string, bool)

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

func (*GetSandbox200ResponseSelfServeKey) GetMethod

GetMethod returns the Method field value

func (*GetSandbox200ResponseSelfServeKey) GetMethodOk

func (o *GetSandbox200ResponseSelfServeKey) GetMethodOk() (*string, bool)

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

func (*GetSandbox200ResponseSelfServeKey) GetUrl

GetUrl returns the Url field value

func (*GetSandbox200ResponseSelfServeKey) GetUrlOk

func (o *GetSandbox200ResponseSelfServeKey) GetUrlOk() (*string, bool)

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

func (GetSandbox200ResponseSelfServeKey) MarshalJSON

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

func (*GetSandbox200ResponseSelfServeKey) SetAuthenticationRequired

func (o *GetSandbox200ResponseSelfServeKey) SetAuthenticationRequired(v bool)

SetAuthenticationRequired sets field value

func (*GetSandbox200ResponseSelfServeKey) SetDescription

func (o *GetSandbox200ResponseSelfServeKey) SetDescription(v string)

SetDescription sets field value

func (*GetSandbox200ResponseSelfServeKey) SetMethod

func (o *GetSandbox200ResponseSelfServeKey) SetMethod(v string)

SetMethod sets field value

func (*GetSandbox200ResponseSelfServeKey) SetUrl

SetUrl sets field value

func (GetSandbox200ResponseSelfServeKey) ToMap

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

func (*GetSandbox200ResponseSelfServeKey) UnmarshalJSON

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

type GetSandbox200ResponseTry

type GetSandbox200ResponseTry struct {
	Method               string                       `json:"method"`
	Url                  string                       `json:"url"`
	ContentType          string                       `json:"content_type"`
	Body                 GetSandbox200ResponseTryBody `json:"body"`
	AdditionalProperties map[string]interface{}
}

GetSandbox200ResponseTry struct for GetSandbox200ResponseTry

func NewGetSandbox200ResponseTry

func NewGetSandbox200ResponseTry(method string, url string, contentType string, body GetSandbox200ResponseTryBody) *GetSandbox200ResponseTry

NewGetSandbox200ResponseTry instantiates a new GetSandbox200ResponseTry 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 NewGetSandbox200ResponseTryWithDefaults

func NewGetSandbox200ResponseTryWithDefaults() *GetSandbox200ResponseTry

NewGetSandbox200ResponseTryWithDefaults instantiates a new GetSandbox200ResponseTry 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 (*GetSandbox200ResponseTry) GetBody

GetBody returns the Body field value

func (*GetSandbox200ResponseTry) GetBodyOk

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

func (*GetSandbox200ResponseTry) GetContentType

func (o *GetSandbox200ResponseTry) GetContentType() string

GetContentType returns the ContentType field value

func (*GetSandbox200ResponseTry) GetContentTypeOk

func (o *GetSandbox200ResponseTry) GetContentTypeOk() (*string, bool)

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

func (*GetSandbox200ResponseTry) GetMethod

func (o *GetSandbox200ResponseTry) GetMethod() string

GetMethod returns the Method field value

func (*GetSandbox200ResponseTry) GetMethodOk

func (o *GetSandbox200ResponseTry) GetMethodOk() (*string, bool)

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

func (*GetSandbox200ResponseTry) GetUrl

func (o *GetSandbox200ResponseTry) GetUrl() string

GetUrl returns the Url field value

func (*GetSandbox200ResponseTry) GetUrlOk

func (o *GetSandbox200ResponseTry) GetUrlOk() (*string, bool)

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

func (GetSandbox200ResponseTry) MarshalJSON

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

func (*GetSandbox200ResponseTry) SetBody

SetBody sets field value

func (*GetSandbox200ResponseTry) SetContentType

func (o *GetSandbox200ResponseTry) SetContentType(v string)

SetContentType sets field value

func (*GetSandbox200ResponseTry) SetMethod

func (o *GetSandbox200ResponseTry) SetMethod(v string)

SetMethod sets field value

func (*GetSandbox200ResponseTry) SetUrl

func (o *GetSandbox200ResponseTry) SetUrl(v string)

SetUrl sets field value

func (GetSandbox200ResponseTry) ToMap

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

func (*GetSandbox200ResponseTry) UnmarshalJSON

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

type GetSandbox200ResponseTryBody

type GetSandbox200ResponseTryBody struct {
	EventId              string                                `json:"event_id"`
	EventName            string                                `json:"event_name"`
	ActionSource         string                                `json:"action_source"`
	ValueData            GetSandbox200ResponseTryBodyValueData `json:"value_data"`
	AdditionalProperties map[string]interface{}
}

GetSandbox200ResponseTryBody struct for GetSandbox200ResponseTryBody

func NewGetSandbox200ResponseTryBody

func NewGetSandbox200ResponseTryBody(eventId string, eventName string, actionSource string, valueData GetSandbox200ResponseTryBodyValueData) *GetSandbox200ResponseTryBody

NewGetSandbox200ResponseTryBody instantiates a new GetSandbox200ResponseTryBody 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 NewGetSandbox200ResponseTryBodyWithDefaults

func NewGetSandbox200ResponseTryBodyWithDefaults() *GetSandbox200ResponseTryBody

NewGetSandbox200ResponseTryBodyWithDefaults instantiates a new GetSandbox200ResponseTryBody 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 (*GetSandbox200ResponseTryBody) GetActionSource

func (o *GetSandbox200ResponseTryBody) GetActionSource() string

GetActionSource returns the ActionSource field value

func (*GetSandbox200ResponseTryBody) GetActionSourceOk

func (o *GetSandbox200ResponseTryBody) GetActionSourceOk() (*string, bool)

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

func (*GetSandbox200ResponseTryBody) GetEventId

func (o *GetSandbox200ResponseTryBody) GetEventId() string

GetEventId returns the EventId field value

func (*GetSandbox200ResponseTryBody) GetEventIdOk

func (o *GetSandbox200ResponseTryBody) GetEventIdOk() (*string, bool)

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

func (*GetSandbox200ResponseTryBody) GetEventName

func (o *GetSandbox200ResponseTryBody) GetEventName() string

GetEventName returns the EventName field value

func (*GetSandbox200ResponseTryBody) GetEventNameOk

func (o *GetSandbox200ResponseTryBody) GetEventNameOk() (*string, bool)

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

func (*GetSandbox200ResponseTryBody) GetValueData

GetValueData returns the ValueData field value

func (*GetSandbox200ResponseTryBody) GetValueDataOk

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

func (GetSandbox200ResponseTryBody) MarshalJSON

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

func (*GetSandbox200ResponseTryBody) SetActionSource

func (o *GetSandbox200ResponseTryBody) SetActionSource(v string)

SetActionSource sets field value

func (*GetSandbox200ResponseTryBody) SetEventId

func (o *GetSandbox200ResponseTryBody) SetEventId(v string)

SetEventId sets field value

func (*GetSandbox200ResponseTryBody) SetEventName

func (o *GetSandbox200ResponseTryBody) SetEventName(v string)

SetEventName sets field value

func (*GetSandbox200ResponseTryBody) SetValueData

SetValueData sets field value

func (GetSandbox200ResponseTryBody) ToMap

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

func (*GetSandbox200ResponseTryBody) UnmarshalJSON

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

type GetSandbox200ResponseTryBodyValueData

type GetSandbox200ResponseTryBodyValueData struct {
	Value                string `json:"value"`
	Currency             string `json:"currency"`
	OrderId              string `json:"order_id"`
	AdditionalProperties map[string]interface{}
}

GetSandbox200ResponseTryBodyValueData struct for GetSandbox200ResponseTryBodyValueData

func NewGetSandbox200ResponseTryBodyValueData

func NewGetSandbox200ResponseTryBodyValueData(value string, currency string, orderId string) *GetSandbox200ResponseTryBodyValueData

NewGetSandbox200ResponseTryBodyValueData instantiates a new GetSandbox200ResponseTryBodyValueData 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 NewGetSandbox200ResponseTryBodyValueDataWithDefaults

func NewGetSandbox200ResponseTryBodyValueDataWithDefaults() *GetSandbox200ResponseTryBodyValueData

NewGetSandbox200ResponseTryBodyValueDataWithDefaults instantiates a new GetSandbox200ResponseTryBodyValueData 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 (*GetSandbox200ResponseTryBodyValueData) GetCurrency

GetCurrency returns the Currency field value

func (*GetSandbox200ResponseTryBodyValueData) GetCurrencyOk

func (o *GetSandbox200ResponseTryBodyValueData) GetCurrencyOk() (*string, bool)

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

func (*GetSandbox200ResponseTryBodyValueData) GetOrderId

GetOrderId returns the OrderId field value

func (*GetSandbox200ResponseTryBodyValueData) GetOrderIdOk

func (o *GetSandbox200ResponseTryBodyValueData) GetOrderIdOk() (*string, bool)

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

func (*GetSandbox200ResponseTryBodyValueData) GetValue

GetValue returns the Value field value

func (*GetSandbox200ResponseTryBodyValueData) GetValueOk

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

func (GetSandbox200ResponseTryBodyValueData) MarshalJSON

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

func (*GetSandbox200ResponseTryBodyValueData) SetCurrency

SetCurrency sets field value

func (*GetSandbox200ResponseTryBodyValueData) SetOrderId

SetOrderId sets field value

func (*GetSandbox200ResponseTryBodyValueData) SetValue

SetValue sets field value

func (GetSandbox200ResponseTryBodyValueData) ToMap

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

func (*GetSandbox200ResponseTryBodyValueData) UnmarshalJSON

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

type JurisdictionPolicyClass

type JurisdictionPolicyClass string

JurisdictionPolicyClass The two policy classes used by the single Signals collector. The enum intentionally has no country or region members. Country evidence is an edge input used to derive a policy class and is never a ledger value.

const (
	JURISDICTIONPOLICYCLASS_STRICT_EU                JurisdictionPolicyClass = "strict_eu"
	JURISDICTIONPOLICYCLASS_GLOBAL                   JurisdictionPolicyClass = "global"
	JURISDICTIONPOLICYCLASS_UNKNOWN_DEFAULT_OPEN_API JurisdictionPolicyClass = "unknown_default_open_api"
)

List of JurisdictionPolicyClass

func NewJurisdictionPolicyClassFromValue

func NewJurisdictionPolicyClassFromValue(v string) (*JurisdictionPolicyClass, error)

NewJurisdictionPolicyClassFromValue returns a pointer to a valid JurisdictionPolicyClass for the value passed as argument, or an error if the value passed is not allowed by the enum

func (JurisdictionPolicyClass) IsValid

func (v JurisdictionPolicyClass) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (JurisdictionPolicyClass) Ptr

Ptr returns reference to JurisdictionPolicyClass value

func (*JurisdictionPolicyClass) UnmarshalJSON

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

type ListEvents200Response

type ListEvents200Response struct {
	Events               ListEvents200ResponseEvents  `json:"events"`
	Metrics              ListEvents200ResponseMetrics `json:"metrics"`
	AdditionalProperties map[string]interface{}
}

ListEvents200Response struct for ListEvents200Response

func NewListEvents200Response

func NewListEvents200Response(events ListEvents200ResponseEvents, metrics ListEvents200ResponseMetrics) *ListEvents200Response

NewListEvents200Response instantiates a new ListEvents200Response 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 NewListEvents200ResponseWithDefaults

func NewListEvents200ResponseWithDefaults() *ListEvents200Response

NewListEvents200ResponseWithDefaults instantiates a new ListEvents200Response 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 (*ListEvents200Response) GetEvents

GetEvents returns the Events field value

func (*ListEvents200Response) GetEventsOk

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

func (*ListEvents200Response) GetMetrics

GetMetrics returns the Metrics field value

func (*ListEvents200Response) GetMetricsOk

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

func (ListEvents200Response) MarshalJSON

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

func (*ListEvents200Response) SetEvents

SetEvents sets field value

func (*ListEvents200Response) SetMetrics

SetMetrics sets field value

func (ListEvents200Response) ToMap

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

func (*ListEvents200Response) UnmarshalJSON

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

type ListEvents200ResponseEvents

type ListEvents200ResponseEvents struct {
	CurrentPage          int32                                   `json:"current_page"`
	Data                 []GetEvent200ResponseEvent              `json:"data"`
	FirstPageUrl         NullableString                          `json:"first_page_url"`
	From                 NullableInt32                           `json:"from"`
	LastPage             int32                                   `json:"last_page"`
	LastPageUrl          NullableString                          `json:"last_page_url"`
	Links                []ListEvents200ResponseEventsLinksInner `json:"links"`
	NextPageUrl          NullableString                          `json:"next_page_url"`
	Path                 NullableString                          `json:"path"`
	PerPage              int32                                   `json:"per_page"`
	PrevPageUrl          NullableString                          `json:"prev_page_url"`
	To                   NullableInt32                           `json:"to"`
	Total                int32                                   `json:"total"`
	AdditionalProperties map[string]interface{}
}

ListEvents200ResponseEvents struct for ListEvents200ResponseEvents

func NewListEvents200ResponseEvents

func NewListEvents200ResponseEvents(currentPage int32, data []GetEvent200ResponseEvent, firstPageUrl NullableString, from NullableInt32, lastPage int32, lastPageUrl NullableString, links []ListEvents200ResponseEventsLinksInner, nextPageUrl NullableString, path NullableString, perPage int32, prevPageUrl NullableString, to NullableInt32, total int32) *ListEvents200ResponseEvents

NewListEvents200ResponseEvents instantiates a new ListEvents200ResponseEvents 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 NewListEvents200ResponseEventsWithDefaults

func NewListEvents200ResponseEventsWithDefaults() *ListEvents200ResponseEvents

NewListEvents200ResponseEventsWithDefaults instantiates a new ListEvents200ResponseEvents 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 (*ListEvents200ResponseEvents) GetCurrentPage

func (o *ListEvents200ResponseEvents) GetCurrentPage() int32

GetCurrentPage returns the CurrentPage field value

func (*ListEvents200ResponseEvents) GetCurrentPageOk

func (o *ListEvents200ResponseEvents) GetCurrentPageOk() (*int32, bool)

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

func (*ListEvents200ResponseEvents) GetData

GetData returns the Data field value

func (*ListEvents200ResponseEvents) GetDataOk

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

func (*ListEvents200ResponseEvents) GetFirstPageUrl

func (o *ListEvents200ResponseEvents) GetFirstPageUrl() string

GetFirstPageUrl returns the FirstPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEvents) GetFirstPageUrlOk

func (o *ListEvents200ResponseEvents) GetFirstPageUrlOk() (*string, bool)

GetFirstPageUrlOk returns a tuple with the FirstPageUrl 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 (*ListEvents200ResponseEvents) GetFrom

func (o *ListEvents200ResponseEvents) GetFrom() int32

GetFrom returns the From field value If the value is explicit nil, the zero value for int32 will be returned

func (*ListEvents200ResponseEvents) GetFromOk

func (o *ListEvents200ResponseEvents) GetFromOk() (*int32, bool)

GetFromOk returns a tuple with the From 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 (*ListEvents200ResponseEvents) GetLastPage

func (o *ListEvents200ResponseEvents) GetLastPage() int32

GetLastPage returns the LastPage field value

func (*ListEvents200ResponseEvents) GetLastPageOk

func (o *ListEvents200ResponseEvents) GetLastPageOk() (*int32, bool)

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

func (*ListEvents200ResponseEvents) GetLastPageUrl

func (o *ListEvents200ResponseEvents) GetLastPageUrl() string

GetLastPageUrl returns the LastPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEvents) GetLastPageUrlOk

func (o *ListEvents200ResponseEvents) GetLastPageUrlOk() (*string, bool)

GetLastPageUrlOk returns a tuple with the LastPageUrl 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

GetLinks returns the Links field value

func (*ListEvents200ResponseEvents) GetLinksOk

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

func (*ListEvents200ResponseEvents) GetNextPageUrl

func (o *ListEvents200ResponseEvents) GetNextPageUrl() string

GetNextPageUrl returns the NextPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEvents) GetNextPageUrlOk

func (o *ListEvents200ResponseEvents) GetNextPageUrlOk() (*string, bool)

GetNextPageUrlOk returns a tuple with the NextPageUrl 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 (*ListEvents200ResponseEvents) GetPath

func (o *ListEvents200ResponseEvents) GetPath() string

GetPath returns the Path field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEvents) GetPathOk

func (o *ListEvents200ResponseEvents) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path 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 (*ListEvents200ResponseEvents) GetPerPage

func (o *ListEvents200ResponseEvents) GetPerPage() int32

GetPerPage returns the PerPage field value

func (*ListEvents200ResponseEvents) GetPerPageOk

func (o *ListEvents200ResponseEvents) GetPerPageOk() (*int32, bool)

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

func (*ListEvents200ResponseEvents) GetPrevPageUrl

func (o *ListEvents200ResponseEvents) GetPrevPageUrl() string

GetPrevPageUrl returns the PrevPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEvents) GetPrevPageUrlOk

func (o *ListEvents200ResponseEvents) GetPrevPageUrlOk() (*string, bool)

GetPrevPageUrlOk returns a tuple with the PrevPageUrl 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 (*ListEvents200ResponseEvents) GetTo

GetTo returns the To field value If the value is explicit nil, the zero value for int32 will be returned

func (*ListEvents200ResponseEvents) GetToOk

func (o *ListEvents200ResponseEvents) GetToOk() (*int32, bool)

GetToOk returns a tuple with the To 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 (*ListEvents200ResponseEvents) GetTotal

func (o *ListEvents200ResponseEvents) GetTotal() int32

GetTotal returns the Total field value

func (*ListEvents200ResponseEvents) GetTotalOk

func (o *ListEvents200ResponseEvents) GetTotalOk() (*int32, bool)

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

func (ListEvents200ResponseEvents) MarshalJSON

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

func (*ListEvents200ResponseEvents) SetCurrentPage

func (o *ListEvents200ResponseEvents) SetCurrentPage(v int32)

SetCurrentPage sets field value

func (*ListEvents200ResponseEvents) SetData

SetData sets field value

func (*ListEvents200ResponseEvents) SetFirstPageUrl

func (o *ListEvents200ResponseEvents) SetFirstPageUrl(v string)

SetFirstPageUrl sets field value

func (*ListEvents200ResponseEvents) SetFrom

func (o *ListEvents200ResponseEvents) SetFrom(v int32)

SetFrom sets field value

func (*ListEvents200ResponseEvents) SetLastPage

func (o *ListEvents200ResponseEvents) SetLastPage(v int32)

SetLastPage sets field value

func (*ListEvents200ResponseEvents) SetLastPageUrl

func (o *ListEvents200ResponseEvents) SetLastPageUrl(v string)

SetLastPageUrl sets field value

SetLinks sets field value

func (*ListEvents200ResponseEvents) SetNextPageUrl

func (o *ListEvents200ResponseEvents) SetNextPageUrl(v string)

SetNextPageUrl sets field value

func (*ListEvents200ResponseEvents) SetPath

func (o *ListEvents200ResponseEvents) SetPath(v string)

SetPath sets field value

func (*ListEvents200ResponseEvents) SetPerPage

func (o *ListEvents200ResponseEvents) SetPerPage(v int32)

SetPerPage sets field value

func (*ListEvents200ResponseEvents) SetPrevPageUrl

func (o *ListEvents200ResponseEvents) SetPrevPageUrl(v string)

SetPrevPageUrl sets field value

func (*ListEvents200ResponseEvents) SetTo

func (o *ListEvents200ResponseEvents) SetTo(v int32)

SetTo sets field value

func (*ListEvents200ResponseEvents) SetTotal

func (o *ListEvents200ResponseEvents) SetTotal(v int32)

SetTotal sets field value

func (ListEvents200ResponseEvents) ToMap

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

func (*ListEvents200ResponseEvents) UnmarshalJSON

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

type ListEvents200ResponseEventsLinksInner

type ListEvents200ResponseEventsLinksInner struct {
	Url                  NullableString `json:"url"`
	Label                string         `json:"label"`
	Active               bool           `json:"active"`
	AdditionalProperties map[string]interface{}
}

ListEvents200ResponseEventsLinksInner struct for ListEvents200ResponseEventsLinksInner

func NewListEvents200ResponseEventsLinksInner

func NewListEvents200ResponseEventsLinksInner(url NullableString, label string, active bool) *ListEvents200ResponseEventsLinksInner

NewListEvents200ResponseEventsLinksInner instantiates a new ListEvents200ResponseEventsLinksInner 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 NewListEvents200ResponseEventsLinksInnerWithDefaults

func NewListEvents200ResponseEventsLinksInnerWithDefaults() *ListEvents200ResponseEventsLinksInner

NewListEvents200ResponseEventsLinksInnerWithDefaults instantiates a new ListEvents200ResponseEventsLinksInner 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 (*ListEvents200ResponseEventsLinksInner) GetActive

GetActive returns the Active field value

func (*ListEvents200ResponseEventsLinksInner) GetActiveOk

func (o *ListEvents200ResponseEventsLinksInner) GetActiveOk() (*bool, bool)

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

func (*ListEvents200ResponseEventsLinksInner) GetLabel

GetLabel returns the Label field value

func (*ListEvents200ResponseEventsLinksInner) GetLabelOk

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

func (*ListEvents200ResponseEventsLinksInner) GetUrl

GetUrl returns the Url field value If the value is explicit nil, the zero value for string will be returned

func (*ListEvents200ResponseEventsLinksInner) GetUrlOk

GetUrlOk returns a tuple with the Url 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 (ListEvents200ResponseEventsLinksInner) MarshalJSON

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

func (*ListEvents200ResponseEventsLinksInner) SetActive

SetActive sets field value

func (*ListEvents200ResponseEventsLinksInner) SetLabel

SetLabel sets field value

func (*ListEvents200ResponseEventsLinksInner) SetUrl

SetUrl sets field value

func (ListEvents200ResponseEventsLinksInner) ToMap

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

func (*ListEvents200ResponseEventsLinksInner) UnmarshalJSON

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

type ListEvents200ResponseMetrics

type ListEvents200ResponseMetrics struct {
	Accepted             int32           `json:"accepted"`
	TotalDeliveries      int32           `json:"total_deliveries"`
	AcceptanceRate       NullableFloat32 `json:"acceptance_rate"`
	AcceptanceRateWindow string          `json:"acceptance_rate_window"`
	AdditionalProperties map[string]interface{}
}

ListEvents200ResponseMetrics struct for ListEvents200ResponseMetrics

func NewListEvents200ResponseMetrics

func NewListEvents200ResponseMetrics(accepted int32, totalDeliveries int32, acceptanceRate NullableFloat32, acceptanceRateWindow string) *ListEvents200ResponseMetrics

NewListEvents200ResponseMetrics instantiates a new ListEvents200ResponseMetrics 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 NewListEvents200ResponseMetricsWithDefaults

func NewListEvents200ResponseMetricsWithDefaults() *ListEvents200ResponseMetrics

NewListEvents200ResponseMetricsWithDefaults instantiates a new ListEvents200ResponseMetrics 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 (*ListEvents200ResponseMetrics) GetAcceptanceRate

func (o *ListEvents200ResponseMetrics) GetAcceptanceRate() float32

GetAcceptanceRate returns the AcceptanceRate field value If the value is explicit nil, the zero value for float32 will be returned

func (*ListEvents200ResponseMetrics) GetAcceptanceRateOk

func (o *ListEvents200ResponseMetrics) GetAcceptanceRateOk() (*float32, bool)

GetAcceptanceRateOk returns a tuple with the AcceptanceRate 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 (*ListEvents200ResponseMetrics) GetAcceptanceRateWindow

func (o *ListEvents200ResponseMetrics) GetAcceptanceRateWindow() string

GetAcceptanceRateWindow returns the AcceptanceRateWindow field value

func (*ListEvents200ResponseMetrics) GetAcceptanceRateWindowOk

func (o *ListEvents200ResponseMetrics) GetAcceptanceRateWindowOk() (*string, bool)

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

func (*ListEvents200ResponseMetrics) GetAccepted

func (o *ListEvents200ResponseMetrics) GetAccepted() int32

GetAccepted returns the Accepted field value

func (*ListEvents200ResponseMetrics) GetAcceptedOk

func (o *ListEvents200ResponseMetrics) GetAcceptedOk() (*int32, bool)

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

func (*ListEvents200ResponseMetrics) GetTotalDeliveries

func (o *ListEvents200ResponseMetrics) GetTotalDeliveries() int32

GetTotalDeliveries returns the TotalDeliveries field value

func (*ListEvents200ResponseMetrics) GetTotalDeliveriesOk

func (o *ListEvents200ResponseMetrics) GetTotalDeliveriesOk() (*int32, bool)

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

func (ListEvents200ResponseMetrics) MarshalJSON

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

func (*ListEvents200ResponseMetrics) SetAcceptanceRate

func (o *ListEvents200ResponseMetrics) SetAcceptanceRate(v float32)

SetAcceptanceRate sets field value

func (*ListEvents200ResponseMetrics) SetAcceptanceRateWindow

func (o *ListEvents200ResponseMetrics) SetAcceptanceRateWindow(v string)

SetAcceptanceRateWindow sets field value

func (*ListEvents200ResponseMetrics) SetAccepted

func (o *ListEvents200ResponseMetrics) SetAccepted(v int32)

SetAccepted sets field value

func (*ListEvents200ResponseMetrics) SetTotalDeliveries

func (o *ListEvents200ResponseMetrics) SetTotalDeliveries(v int32)

SetTotalDeliveries sets field value

func (ListEvents200ResponseMetrics) ToMap

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

func (*ListEvents200ResponseMetrics) UnmarshalJSON

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

type ListEventsByCursor200Response

type ListEventsByCursor200Response struct {
	Events               ListEventsByCursor200ResponseEvents `json:"events"`
	Metrics              ListEvents200ResponseMetrics        `json:"metrics"`
	AdditionalProperties map[string]interface{}
}

ListEventsByCursor200Response struct for ListEventsByCursor200Response

func NewListEventsByCursor200Response

NewListEventsByCursor200Response instantiates a new ListEventsByCursor200Response 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 NewListEventsByCursor200ResponseWithDefaults

func NewListEventsByCursor200ResponseWithDefaults() *ListEventsByCursor200Response

NewListEventsByCursor200ResponseWithDefaults instantiates a new ListEventsByCursor200Response 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 (*ListEventsByCursor200Response) GetEvents

GetEvents returns the Events field value

func (*ListEventsByCursor200Response) GetEventsOk

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

func (*ListEventsByCursor200Response) GetMetrics

GetMetrics returns the Metrics field value

func (*ListEventsByCursor200Response) GetMetricsOk

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

func (ListEventsByCursor200Response) MarshalJSON

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

func (*ListEventsByCursor200Response) SetEvents

SetEvents sets field value

func (*ListEventsByCursor200Response) SetMetrics

SetMetrics sets field value

func (ListEventsByCursor200Response) ToMap

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

func (*ListEventsByCursor200Response) UnmarshalJSON

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

type ListEventsByCursor200ResponseEvents

type ListEventsByCursor200ResponseEvents struct {
	Data                 []GetEvent200ResponseEvent `json:"data"`
	Path                 NullableString             `json:"path"`
	PerPage              int32                      `json:"per_page"`
	NextCursor           NullableString             `json:"next_cursor"`
	NextPageUrl          NullableString             `json:"next_page_url"`
	PrevCursor           NullableString             `json:"prev_cursor"`
	PrevPageUrl          NullableString             `json:"prev_page_url"`
	AdditionalProperties map[string]interface{}
}

ListEventsByCursor200ResponseEvents struct for ListEventsByCursor200ResponseEvents

func NewListEventsByCursor200ResponseEvents

func NewListEventsByCursor200ResponseEvents(data []GetEvent200ResponseEvent, path NullableString, perPage int32, nextCursor NullableString, nextPageUrl NullableString, prevCursor NullableString, prevPageUrl NullableString) *ListEventsByCursor200ResponseEvents

NewListEventsByCursor200ResponseEvents instantiates a new ListEventsByCursor200ResponseEvents 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 NewListEventsByCursor200ResponseEventsWithDefaults

func NewListEventsByCursor200ResponseEventsWithDefaults() *ListEventsByCursor200ResponseEvents

NewListEventsByCursor200ResponseEventsWithDefaults instantiates a new ListEventsByCursor200ResponseEvents 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 (*ListEventsByCursor200ResponseEvents) GetData

GetData returns the Data field value

func (*ListEventsByCursor200ResponseEvents) GetDataOk

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

func (*ListEventsByCursor200ResponseEvents) GetNextCursor

func (o *ListEventsByCursor200ResponseEvents) GetNextCursor() string

GetNextCursor returns the NextCursor field value If the value is explicit nil, the zero value for string will be returned

func (*ListEventsByCursor200ResponseEvents) GetNextCursorOk

func (o *ListEventsByCursor200ResponseEvents) GetNextCursorOk() (*string, bool)

GetNextCursorOk returns a tuple with the NextCursor 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 (*ListEventsByCursor200ResponseEvents) GetNextPageUrl

func (o *ListEventsByCursor200ResponseEvents) GetNextPageUrl() string

GetNextPageUrl returns the NextPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEventsByCursor200ResponseEvents) GetNextPageUrlOk

func (o *ListEventsByCursor200ResponseEvents) GetNextPageUrlOk() (*string, bool)

GetNextPageUrlOk returns a tuple with the NextPageUrl 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 (*ListEventsByCursor200ResponseEvents) GetPath

GetPath returns the Path field value If the value is explicit nil, the zero value for string will be returned

func (*ListEventsByCursor200ResponseEvents) GetPathOk

func (o *ListEventsByCursor200ResponseEvents) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path 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 (*ListEventsByCursor200ResponseEvents) GetPerPage

GetPerPage returns the PerPage field value

func (*ListEventsByCursor200ResponseEvents) GetPerPageOk

func (o *ListEventsByCursor200ResponseEvents) GetPerPageOk() (*int32, bool)

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

func (*ListEventsByCursor200ResponseEvents) GetPrevCursor

func (o *ListEventsByCursor200ResponseEvents) GetPrevCursor() string

GetPrevCursor returns the PrevCursor field value If the value is explicit nil, the zero value for string will be returned

func (*ListEventsByCursor200ResponseEvents) GetPrevCursorOk

func (o *ListEventsByCursor200ResponseEvents) GetPrevCursorOk() (*string, bool)

GetPrevCursorOk returns a tuple with the PrevCursor 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 (*ListEventsByCursor200ResponseEvents) GetPrevPageUrl

func (o *ListEventsByCursor200ResponseEvents) GetPrevPageUrl() string

GetPrevPageUrl returns the PrevPageUrl field value If the value is explicit nil, the zero value for string will be returned

func (*ListEventsByCursor200ResponseEvents) GetPrevPageUrlOk

func (o *ListEventsByCursor200ResponseEvents) GetPrevPageUrlOk() (*string, bool)

GetPrevPageUrlOk returns a tuple with the PrevPageUrl 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 (ListEventsByCursor200ResponseEvents) MarshalJSON

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

func (*ListEventsByCursor200ResponseEvents) SetData

SetData sets field value

func (*ListEventsByCursor200ResponseEvents) SetNextCursor

func (o *ListEventsByCursor200ResponseEvents) SetNextCursor(v string)

SetNextCursor sets field value

func (*ListEventsByCursor200ResponseEvents) SetNextPageUrl

func (o *ListEventsByCursor200ResponseEvents) SetNextPageUrl(v string)

SetNextPageUrl sets field value

func (*ListEventsByCursor200ResponseEvents) SetPath

SetPath sets field value

func (*ListEventsByCursor200ResponseEvents) SetPerPage

func (o *ListEventsByCursor200ResponseEvents) SetPerPage(v int32)

SetPerPage sets field value

func (*ListEventsByCursor200ResponseEvents) SetPrevCursor

func (o *ListEventsByCursor200ResponseEvents) SetPrevCursor(v string)

SetPrevCursor sets field value

func (*ListEventsByCursor200ResponseEvents) SetPrevPageUrl

func (o *ListEventsByCursor200ResponseEvents) SetPrevPageUrl(v string)

SetPrevPageUrl sets field value

func (ListEventsByCursor200ResponseEvents) ToMap

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

func (*ListEventsByCursor200ResponseEvents) UnmarshalJSON

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

type MappedNullable

type MappedNullable interface {
	ToMap() (map[string]interface{}, 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 NullableCreateEvent200Response

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

func (NullableCreateEvent200Response) Get

func (NullableCreateEvent200Response) IsSet

func (NullableCreateEvent200Response) MarshalJSON

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

func (*NullableCreateEvent200Response) Set

func (*NullableCreateEvent200Response) UnmarshalJSON

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

func (*NullableCreateEvent200Response) Unset

func (v *NullableCreateEvent200Response) Unset()

type NullableCreateEventRequest

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

func NewNullableCreateEventRequest

func NewNullableCreateEventRequest(val *CreateEventRequest) *NullableCreateEventRequest

func (NullableCreateEventRequest) Get

func (NullableCreateEventRequest) IsSet

func (v NullableCreateEventRequest) IsSet() bool

func (NullableCreateEventRequest) MarshalJSON

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

func (*NullableCreateEventRequest) Set

func (*NullableCreateEventRequest) UnmarshalJSON

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

func (*NullableCreateEventRequest) Unset

func (v *NullableCreateEventRequest) Unset()

type NullableCreateEventRequestAnyOf

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

func (NullableCreateEventRequestAnyOf) Get

func (NullableCreateEventRequestAnyOf) IsSet

func (NullableCreateEventRequestAnyOf) MarshalJSON

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

func (*NullableCreateEventRequestAnyOf) Set

func (*NullableCreateEventRequestAnyOf) UnmarshalJSON

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

func (*NullableCreateEventRequestAnyOf) Unset

type NullableCreateEventRequestAnyOf1

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

func (NullableCreateEventRequestAnyOf1) Get

func (NullableCreateEventRequestAnyOf1) IsSet

func (NullableCreateEventRequestAnyOf1) MarshalJSON

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

func (*NullableCreateEventRequestAnyOf1) Set

func (*NullableCreateEventRequestAnyOf1) UnmarshalJSON

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

func (*NullableCreateEventRequestAnyOf1) Unset

type NullableCreateEventRequestAnyOfEventTime

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

func (NullableCreateEventRequestAnyOfEventTime) Get

func (NullableCreateEventRequestAnyOfEventTime) IsSet

func (NullableCreateEventRequestAnyOfEventTime) MarshalJSON

func (*NullableCreateEventRequestAnyOfEventTime) Set

func (*NullableCreateEventRequestAnyOfEventTime) UnmarshalJSON

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

func (*NullableCreateEventRequestAnyOfEventTime) Unset

type NullableCreateEventRequestAnyOfValueData

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

func (NullableCreateEventRequestAnyOfValueData) Get

func (NullableCreateEventRequestAnyOfValueData) IsSet

func (NullableCreateEventRequestAnyOfValueData) MarshalJSON

func (*NullableCreateEventRequestAnyOfValueData) Set

func (*NullableCreateEventRequestAnyOfValueData) UnmarshalJSON

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

func (*NullableCreateEventRequestAnyOfValueData) Unset

type NullableCreateSandboxKey201Response

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

func (NullableCreateSandboxKey201Response) Get

func (NullableCreateSandboxKey201Response) IsSet

func (NullableCreateSandboxKey201Response) MarshalJSON

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

func (*NullableCreateSandboxKey201Response) Set

func (*NullableCreateSandboxKey201Response) UnmarshalJSON

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

func (*NullableCreateSandboxKey201Response) Unset

type NullableCreateSandboxKey201ResponseUse

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

func (NullableCreateSandboxKey201ResponseUse) Get

func (NullableCreateSandboxKey201ResponseUse) IsSet

func (NullableCreateSandboxKey201ResponseUse) MarshalJSON

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

func (*NullableCreateSandboxKey201ResponseUse) Set

func (*NullableCreateSandboxKey201ResponseUse) UnmarshalJSON

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

func (*NullableCreateSandboxKey201ResponseUse) Unset

type NullableDeleteUserData200Response

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

func (NullableDeleteUserData200Response) Get

func (NullableDeleteUserData200Response) IsSet

func (NullableDeleteUserData200Response) MarshalJSON

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

func (*NullableDeleteUserData200Response) Set

func (*NullableDeleteUserData200Response) UnmarshalJSON

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

func (*NullableDeleteUserData200Response) Unset

type NullableDeleteUserDataRequest

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

func (NullableDeleteUserDataRequest) Get

func (NullableDeleteUserDataRequest) IsSet

func (NullableDeleteUserDataRequest) MarshalJSON

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

func (*NullableDeleteUserDataRequest) Set

func (*NullableDeleteUserDataRequest) UnmarshalJSON

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

func (*NullableDeleteUserDataRequest) Unset

func (v *NullableDeleteUserDataRequest) Unset()

type NullableDeliveryStatus

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

func NewNullableDeliveryStatus

func NewNullableDeliveryStatus(val *DeliveryStatus) *NullableDeliveryStatus

func (NullableDeliveryStatus) Get

func (NullableDeliveryStatus) IsSet

func (v NullableDeliveryStatus) IsSet() bool

func (NullableDeliveryStatus) MarshalJSON

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

func (*NullableDeliveryStatus) Set

func (*NullableDeliveryStatus) UnmarshalJSON

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

func (*NullableDeliveryStatus) Unset

func (v *NullableDeliveryStatus) Unset()

type NullableDestination

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

func NewNullableDestination

func NewNullableDestination(val *Destination) *NullableDestination

func (NullableDestination) Get

func (NullableDestination) IsSet

func (v NullableDestination) IsSet() bool

func (NullableDestination) MarshalJSON

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

func (*NullableDestination) Set

func (v *NullableDestination) Set(val *Destination)

func (*NullableDestination) UnmarshalJSON

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

func (*NullableDestination) Unset

func (v *NullableDestination) Unset()

type NullableDestinationCredentialSource

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

func (NullableDestinationCredentialSource) Get

func (NullableDestinationCredentialSource) IsSet

func (NullableDestinationCredentialSource) MarshalJSON

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

func (*NullableDestinationCredentialSource) Set

func (*NullableDestinationCredentialSource) UnmarshalJSON

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

func (*NullableDestinationCredentialSource) Unset

type NullableDestinationStatus

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

func NewNullableDestinationStatus

func NewNullableDestinationStatus(val *DestinationStatus) *NullableDestinationStatus

func (NullableDestinationStatus) Get

func (NullableDestinationStatus) IsSet

func (v NullableDestinationStatus) IsSet() bool

func (NullableDestinationStatus) MarshalJSON

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

func (*NullableDestinationStatus) Set

func (*NullableDestinationStatus) UnmarshalJSON

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

func (*NullableDestinationStatus) Unset

func (v *NullableDestinationStatus) Unset()

type NullableDestinationType

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

func NewNullableDestinationType

func NewNullableDestinationType(val *DestinationType) *NullableDestinationType

func (NullableDestinationType) Get

func (NullableDestinationType) IsSet

func (v NullableDestinationType) IsSet() bool

func (NullableDestinationType) MarshalJSON

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

func (*NullableDestinationType) Set

func (*NullableDestinationType) UnmarshalJSON

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

func (*NullableDestinationType) Unset

func (v *NullableDestinationType) Unset()

type NullableEmqSnapshot

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

func NewNullableEmqSnapshot

func NewNullableEmqSnapshot(val *EmqSnapshot) *NullableEmqSnapshot

func (NullableEmqSnapshot) Get

func (NullableEmqSnapshot) IsSet

func (v NullableEmqSnapshot) IsSet() bool

func (NullableEmqSnapshot) MarshalJSON

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

func (*NullableEmqSnapshot) Set

func (v *NullableEmqSnapshot) Set(val *EmqSnapshot)

func (*NullableEmqSnapshot) UnmarshalJSON

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

func (*NullableEmqSnapshot) Unset

func (v *NullableEmqSnapshot) Unset()

type NullableErrorMessage

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

func NewNullableErrorMessage

func NewNullableErrorMessage(val *ErrorMessage) *NullableErrorMessage

func (NullableErrorMessage) Get

func (NullableErrorMessage) IsSet

func (v NullableErrorMessage) IsSet() bool

func (NullableErrorMessage) MarshalJSON

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

func (*NullableErrorMessage) Set

func (v *NullableErrorMessage) Set(val *ErrorMessage)

func (*NullableErrorMessage) UnmarshalJSON

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

func (*NullableErrorMessage) Unset

func (v *NullableErrorMessage) Unset()

type NullableEvent

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

func NewNullableEvent

func NewNullableEvent(val *Event) *NullableEvent

func (NullableEvent) Get

func (v NullableEvent) Get() *Event

func (NullableEvent) IsSet

func (v NullableEvent) IsSet() bool

func (NullableEvent) MarshalJSON

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

func (*NullableEvent) Set

func (v *NullableEvent) Set(val *Event)

func (*NullableEvent) UnmarshalJSON

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

func (*NullableEvent) Unset

func (v *NullableEvent) 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 NullableGetEmqReport200Response

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

func (NullableGetEmqReport200Response) Get

func (NullableGetEmqReport200Response) IsSet

func (NullableGetEmqReport200Response) MarshalJSON

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

func (*NullableGetEmqReport200Response) Set

func (*NullableGetEmqReport200Response) UnmarshalJSON

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

func (*NullableGetEmqReport200Response) Unset

type NullableGetEmqReport200ResponseSnapshotsInner

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

func (NullableGetEmqReport200ResponseSnapshotsInner) Get

func (NullableGetEmqReport200ResponseSnapshotsInner) IsSet

func (NullableGetEmqReport200ResponseSnapshotsInner) MarshalJSON

func (*NullableGetEmqReport200ResponseSnapshotsInner) Set

func (*NullableGetEmqReport200ResponseSnapshotsInner) UnmarshalJSON

func (*NullableGetEmqReport200ResponseSnapshotsInner) Unset

type NullableGetEvent200Response

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

func NewNullableGetEvent200Response

func NewNullableGetEvent200Response(val *GetEvent200Response) *NullableGetEvent200Response

func (NullableGetEvent200Response) Get

func (NullableGetEvent200Response) IsSet

func (NullableGetEvent200Response) MarshalJSON

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

func (*NullableGetEvent200Response) Set

func (*NullableGetEvent200Response) UnmarshalJSON

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

func (*NullableGetEvent200Response) Unset

func (v *NullableGetEvent200Response) Unset()

type NullableGetEvent200ResponseDeliveriesInner

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

func (NullableGetEvent200ResponseDeliveriesInner) Get

func (NullableGetEvent200ResponseDeliveriesInner) IsSet

func (NullableGetEvent200ResponseDeliveriesInner) MarshalJSON

func (*NullableGetEvent200ResponseDeliveriesInner) Set

func (*NullableGetEvent200ResponseDeliveriesInner) UnmarshalJSON

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

func (*NullableGetEvent200ResponseDeliveriesInner) Unset

type NullableGetEvent200ResponseEvent

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

func (NullableGetEvent200ResponseEvent) Get

func (NullableGetEvent200ResponseEvent) IsSet

func (NullableGetEvent200ResponseEvent) MarshalJSON

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

func (*NullableGetEvent200ResponseEvent) Set

func (*NullableGetEvent200ResponseEvent) UnmarshalJSON

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

func (*NullableGetEvent200ResponseEvent) Unset

type NullableGetEvent200ResponseEventDeliveriesInner

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

func (NullableGetEvent200ResponseEventDeliveriesInner) Get

func (NullableGetEvent200ResponseEventDeliveriesInner) IsSet

func (NullableGetEvent200ResponseEventDeliveriesInner) MarshalJSON

func (*NullableGetEvent200ResponseEventDeliveriesInner) Set

func (*NullableGetEvent200ResponseEventDeliveriesInner) UnmarshalJSON

func (*NullableGetEvent200ResponseEventDeliveriesInner) Unset

type NullableGetEvent200ResponseLineage

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

func (NullableGetEvent200ResponseLineage) Get

func (NullableGetEvent200ResponseLineage) IsSet

func (NullableGetEvent200ResponseLineage) MarshalJSON

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

func (*NullableGetEvent200ResponseLineage) Set

func (*NullableGetEvent200ResponseLineage) UnmarshalJSON

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

func (*NullableGetEvent200ResponseLineage) Unset

type NullableGetEvent200ResponseLineageChildrenInner

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

func (NullableGetEvent200ResponseLineageChildrenInner) Get

func (NullableGetEvent200ResponseLineageChildrenInner) IsSet

func (NullableGetEvent200ResponseLineageChildrenInner) MarshalJSON

func (*NullableGetEvent200ResponseLineageChildrenInner) Set

func (*NullableGetEvent200ResponseLineageChildrenInner) UnmarshalJSON

func (*NullableGetEvent200ResponseLineageChildrenInner) Unset

type NullableGetEvent200ResponseLineageParent

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

func (NullableGetEvent200ResponseLineageParent) Get

func (NullableGetEvent200ResponseLineageParent) IsSet

func (NullableGetEvent200ResponseLineageParent) MarshalJSON

func (*NullableGetEvent200ResponseLineageParent) Set

func (*NullableGetEvent200ResponseLineageParent) UnmarshalJSON

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

func (*NullableGetEvent200ResponseLineageParent) Unset

type NullableGetReconciliationReport200Response

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

func (NullableGetReconciliationReport200Response) Get

func (NullableGetReconciliationReport200Response) IsSet

func (NullableGetReconciliationReport200Response) MarshalJSON

func (*NullableGetReconciliationReport200Response) Set

func (*NullableGetReconciliationReport200Response) UnmarshalJSON

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

func (*NullableGetReconciliationReport200Response) Unset

type NullableGetReconciliationReport200ResponseReportsInner

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

func (NullableGetReconciliationReport200ResponseReportsInner) Get

func (NullableGetReconciliationReport200ResponseReportsInner) IsSet

func (NullableGetReconciliationReport200ResponseReportsInner) MarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInner) Set

func (*NullableGetReconciliationReport200ResponseReportsInner) UnmarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInner) Unset

type NullableGetReconciliationReport200ResponseReportsInnerBucketsValue

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

func (NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Get

func (NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) IsSet

func (NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Set

func (*NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Unset

type NullableGetReconciliationReport200ResponseReportsInnerEventCounts

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

func (NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Get

func (NullableGetReconciliationReport200ResponseReportsInnerEventCounts) IsSet

func (NullableGetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Set

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Unset

type NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted

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

func (NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Get

func (NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) IsSet

func (NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Set

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON

func (*NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Unset

type NullableGetSandbox200Response

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

func (NullableGetSandbox200Response) Get

func (NullableGetSandbox200Response) IsSet

func (NullableGetSandbox200Response) MarshalJSON

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

func (*NullableGetSandbox200Response) Set

func (*NullableGetSandbox200Response) UnmarshalJSON

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

func (*NullableGetSandbox200Response) Unset

func (v *NullableGetSandbox200Response) Unset()

type NullableGetSandbox200ResponseSelfServeKey

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

func (NullableGetSandbox200ResponseSelfServeKey) Get

func (NullableGetSandbox200ResponseSelfServeKey) IsSet

func (NullableGetSandbox200ResponseSelfServeKey) MarshalJSON

func (*NullableGetSandbox200ResponseSelfServeKey) Set

func (*NullableGetSandbox200ResponseSelfServeKey) UnmarshalJSON

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

func (*NullableGetSandbox200ResponseSelfServeKey) Unset

type NullableGetSandbox200ResponseTry

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

func (NullableGetSandbox200ResponseTry) Get

func (NullableGetSandbox200ResponseTry) IsSet

func (NullableGetSandbox200ResponseTry) MarshalJSON

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

func (*NullableGetSandbox200ResponseTry) Set

func (*NullableGetSandbox200ResponseTry) UnmarshalJSON

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

func (*NullableGetSandbox200ResponseTry) Unset

type NullableGetSandbox200ResponseTryBody

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

func (NullableGetSandbox200ResponseTryBody) Get

func (NullableGetSandbox200ResponseTryBody) IsSet

func (NullableGetSandbox200ResponseTryBody) MarshalJSON

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

func (*NullableGetSandbox200ResponseTryBody) Set

func (*NullableGetSandbox200ResponseTryBody) UnmarshalJSON

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

func (*NullableGetSandbox200ResponseTryBody) Unset

type NullableGetSandbox200ResponseTryBodyValueData

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

func (NullableGetSandbox200ResponseTryBodyValueData) Get

func (NullableGetSandbox200ResponseTryBodyValueData) IsSet

func (NullableGetSandbox200ResponseTryBodyValueData) MarshalJSON

func (*NullableGetSandbox200ResponseTryBodyValueData) Set

func (*NullableGetSandbox200ResponseTryBodyValueData) UnmarshalJSON

func (*NullableGetSandbox200ResponseTryBodyValueData) 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 NullableJurisdictionPolicyClass

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

func (NullableJurisdictionPolicyClass) Get

func (NullableJurisdictionPolicyClass) IsSet

func (NullableJurisdictionPolicyClass) MarshalJSON

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

func (*NullableJurisdictionPolicyClass) Set

func (*NullableJurisdictionPolicyClass) UnmarshalJSON

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

func (*NullableJurisdictionPolicyClass) Unset

type NullableListEvents200Response

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

func (NullableListEvents200Response) Get

func (NullableListEvents200Response) IsSet

func (NullableListEvents200Response) MarshalJSON

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

func (*NullableListEvents200Response) Set

func (*NullableListEvents200Response) UnmarshalJSON

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

func (*NullableListEvents200Response) Unset

func (v *NullableListEvents200Response) Unset()

type NullableListEvents200ResponseEvents

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

func (NullableListEvents200ResponseEvents) Get

func (NullableListEvents200ResponseEvents) IsSet

func (NullableListEvents200ResponseEvents) MarshalJSON

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

func (*NullableListEvents200ResponseEvents) Set

func (*NullableListEvents200ResponseEvents) UnmarshalJSON

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

func (*NullableListEvents200ResponseEvents) Unset

type NullableListEvents200ResponseEventsLinksInner

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

func (NullableListEvents200ResponseEventsLinksInner) Get

func (NullableListEvents200ResponseEventsLinksInner) IsSet

func (NullableListEvents200ResponseEventsLinksInner) MarshalJSON

func (*NullableListEvents200ResponseEventsLinksInner) Set

func (*NullableListEvents200ResponseEventsLinksInner) UnmarshalJSON

func (*NullableListEvents200ResponseEventsLinksInner) Unset

type NullableListEvents200ResponseMetrics

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

func (NullableListEvents200ResponseMetrics) Get

func (NullableListEvents200ResponseMetrics) IsSet

func (NullableListEvents200ResponseMetrics) MarshalJSON

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

func (*NullableListEvents200ResponseMetrics) Set

func (*NullableListEvents200ResponseMetrics) UnmarshalJSON

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

func (*NullableListEvents200ResponseMetrics) Unset

type NullableListEventsByCursor200Response

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

func (NullableListEventsByCursor200Response) Get

func (NullableListEventsByCursor200Response) IsSet

func (NullableListEventsByCursor200Response) MarshalJSON

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

func (*NullableListEventsByCursor200Response) Set

func (*NullableListEventsByCursor200Response) UnmarshalJSON

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

func (*NullableListEventsByCursor200Response) Unset

type NullableListEventsByCursor200ResponseEvents

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

func (NullableListEventsByCursor200ResponseEvents) Get

func (NullableListEventsByCursor200ResponseEvents) IsSet

func (NullableListEventsByCursor200ResponseEvents) MarshalJSON

func (*NullableListEventsByCursor200ResponseEvents) Set

func (*NullableListEventsByCursor200ResponseEvents) UnmarshalJSON

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

func (*NullableListEventsByCursor200ResponseEvents) Unset

type NullableReconciliationReport

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

func NewNullableReconciliationReport

func NewNullableReconciliationReport(val *ReconciliationReport) *NullableReconciliationReport

func (NullableReconciliationReport) Get

func (NullableReconciliationReport) IsSet

func (NullableReconciliationReport) MarshalJSON

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

func (*NullableReconciliationReport) Set

func (*NullableReconciliationReport) UnmarshalJSON

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

func (*NullableReconciliationReport) Unset

func (v *NullableReconciliationReport) Unset()

type NullableReplayDeliveries202Response

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

func (NullableReplayDeliveries202Response) Get

func (NullableReplayDeliveries202Response) IsSet

func (NullableReplayDeliveries202Response) MarshalJSON

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

func (*NullableReplayDeliveries202Response) Set

func (*NullableReplayDeliveries202Response) UnmarshalJSON

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

func (*NullableReplayDeliveries202Response) Unset

type NullableReplayDeliveriesRequest

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

func (NullableReplayDeliveriesRequest) Get

func (NullableReplayDeliveriesRequest) IsSet

func (NullableReplayDeliveriesRequest) MarshalJSON

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

func (*NullableReplayDeliveriesRequest) Set

func (*NullableReplayDeliveriesRequest) UnmarshalJSON

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

func (*NullableReplayDeliveriesRequest) Unset

type NullableSendTestPurchase200Response

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

func (NullableSendTestPurchase200Response) Get

func (NullableSendTestPurchase200Response) IsSet

func (NullableSendTestPurchase200Response) MarshalJSON

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

func (*NullableSendTestPurchase200Response) Set

func (*NullableSendTestPurchase200Response) UnmarshalJSON

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

func (*NullableSendTestPurchase200Response) Unset

type NullableSendTestPurchase422Response

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

func (NullableSendTestPurchase422Response) Get

func (NullableSendTestPurchase422Response) IsSet

func (NullableSendTestPurchase422Response) MarshalJSON

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

func (*NullableSendTestPurchase422Response) Set

func (*NullableSendTestPurchase422Response) UnmarshalJSON

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

func (*NullableSendTestPurchase422Response) Unset

type NullableSendTestPurchaseRequest

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

func (NullableSendTestPurchaseRequest) Get

func (NullableSendTestPurchaseRequest) IsSet

func (NullableSendTestPurchaseRequest) MarshalJSON

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

func (*NullableSendTestPurchaseRequest) Set

func (*NullableSendTestPurchaseRequest) UnmarshalJSON

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

func (*NullableSendTestPurchaseRequest) Unset

type NullableSetDestinationTestMode200Response

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

func (NullableSetDestinationTestMode200Response) Get

func (NullableSetDestinationTestMode200Response) IsSet

func (NullableSetDestinationTestMode200Response) MarshalJSON

func (*NullableSetDestinationTestMode200Response) Set

func (*NullableSetDestinationTestMode200Response) UnmarshalJSON

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

func (*NullableSetDestinationTestMode200Response) Unset

type NullableSetDestinationTestMode200ResponseDestination

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

func (NullableSetDestinationTestMode200ResponseDestination) Get

func (NullableSetDestinationTestMode200ResponseDestination) IsSet

func (NullableSetDestinationTestMode200ResponseDestination) MarshalJSON

func (*NullableSetDestinationTestMode200ResponseDestination) Set

func (*NullableSetDestinationTestMode200ResponseDestination) UnmarshalJSON

func (*NullableSetDestinationTestMode200ResponseDestination) Unset

type NullableSetDestinationTestModeRequest

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

func (NullableSetDestinationTestModeRequest) Get

func (NullableSetDestinationTestModeRequest) IsSet

func (NullableSetDestinationTestModeRequest) MarshalJSON

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

func (*NullableSetDestinationTestModeRequest) Set

func (*NullableSetDestinationTestModeRequest) UnmarshalJSON

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

func (*NullableSetDestinationTestModeRequest) 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 NullableTrafficClass

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

func NewNullableTrafficClass

func NewNullableTrafficClass(val *TrafficClass) *NullableTrafficClass

func (NullableTrafficClass) Get

func (NullableTrafficClass) IsSet

func (v NullableTrafficClass) IsSet() bool

func (NullableTrafficClass) MarshalJSON

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

func (*NullableTrafficClass) Set

func (v *NullableTrafficClass) Set(val *TrafficClass)

func (*NullableTrafficClass) UnmarshalJSON

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

func (*NullableTrafficClass) Unset

func (v *NullableTrafficClass) Unset()

type NullableValidateSandboxEvent200Response

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

func (NullableValidateSandboxEvent200Response) Get

func (NullableValidateSandboxEvent200Response) IsSet

func (NullableValidateSandboxEvent200Response) MarshalJSON

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

func (*NullableValidateSandboxEvent200Response) Set

func (*NullableValidateSandboxEvent200Response) UnmarshalJSON

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

func (*NullableValidateSandboxEvent200Response) Unset

type NullableValidateSandboxEventRequest

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

func (NullableValidateSandboxEventRequest) Get

func (NullableValidateSandboxEventRequest) IsSet

func (NullableValidateSandboxEventRequest) MarshalJSON

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

func (*NullableValidateSandboxEventRequest) Set

func (*NullableValidateSandboxEventRequest) UnmarshalJSON

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

func (*NullableValidateSandboxEventRequest) Unset

type NullableValidateSandboxEventRequestValueData

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

func (NullableValidateSandboxEventRequestValueData) Get

func (NullableValidateSandboxEventRequestValueData) IsSet

func (NullableValidateSandboxEventRequestValueData) MarshalJSON

func (*NullableValidateSandboxEventRequestValueData) Set

func (*NullableValidateSandboxEventRequestValueData) UnmarshalJSON

func (*NullableValidateSandboxEventRequestValueData) Unset

type NullableValidationError

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

func NewNullableValidationError

func NewNullableValidationError(val *ValidationError) *NullableValidationError

func (NullableValidationError) Get

func (NullableValidationError) IsSet

func (v NullableValidationError) IsSet() bool

func (NullableValidationError) MarshalJSON

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

func (*NullableValidationError) Set

func (*NullableValidationError) UnmarshalJSON

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

func (*NullableValidationError) Unset

func (v *NullableValidationError) Unset()

type OperationsAPIService

type OperationsAPIService service

OperationsAPIService OperationsAPI service

func (*OperationsAPIService) DeleteUserData

DeleteUserData Delete user data by hashed identifier

Idempotently removes retained user data matching one caller-supplied SHA-256 identifier digest.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiDeleteUserDataRequest

func (*OperationsAPIService) DeleteUserDataExecute

Execute executes the request

@return DeleteUserData200Response

func (*OperationsAPIService) GetEmqReport

GetEmqReport Get Event Match Quality history

Returns recent Meta Event Match Quality snapshots for the authenticated Signal tracker.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetEmqReportRequest

func (*OperationsAPIService) GetEmqReportExecute

Execute executes the request

@return GetEmqReport200Response

func (*OperationsAPIService) GetReconciliationReport

GetReconciliationReport Get a reconciliation report

Returns stored delivery-versus-platform reconciliation results for one calendar date.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetReconciliationReportRequest

func (*OperationsAPIService) GetReconciliationReportExecute

Execute executes the request

@return GetReconciliationReport200Response

func (*OperationsAPIService) ListEvents

ListEvents List recent events

Returns retained customer-readable events and aggregate destination-delivery acceptance metrics.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListEventsRequest

func (*OperationsAPIService) ListEventsByCursor

ListEventsByCursor List recent events by cursor

Returns retained customer-readable events using stable cursor pagination and aggregate destination-delivery acceptance metrics.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiListEventsByCursorRequest

func (*OperationsAPIService) ListEventsByCursorExecute

Execute executes the request

@return ListEventsByCursor200Response

func (*OperationsAPIService) ListEventsExecute

Execute executes the request

@return ListEvents200Response

func (*OperationsAPIService) ReplayDeliveries

ReplayDeliveries Replay eligible deliveries

Evaluates retained failed deliveries and queues the eligible subset for another delivery attempt.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiReplayDeliveriesRequest

func (*OperationsAPIService) ReplayDeliveriesExecute

Execute executes the request

@return ReplayDeliveries202Response

func (*OperationsAPIService) SendTestPurchase

func (a *OperationsAPIService) SendTestPurchase(ctx context.Context, destination string) ApiSendTestPurchaseRequest

SendTestPurchase Send a controlled test purchase

Creates an identity-free synthetic purchase and sends it only to the selected destination while test mode is enabled.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param destination The destination ID
@return ApiSendTestPurchaseRequest

func (*OperationsAPIService) SendTestPurchaseExecute

Execute executes the request

@return SendTestPurchase200Response

func (*OperationsAPIService) SetDestinationTestMode

func (a *OperationsAPIService) SetDestinationTestMode(ctx context.Context, destination string) ApiSetDestinationTestModeRequest

SetDestinationTestMode Configure destination test mode

Enables or disables Meta Test Events mode for a destination owned by the authenticated Signal tracker.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param destination The destination ID
@return ApiSetDestinationTestModeRequest

func (*OperationsAPIService) SetDestinationTestModeExecute

Execute executes the request

@return SetDestinationTestMode200Response

type ReconciliationReport

type ReconciliationReport struct {
	Id                   int32         `json:"id"`
	SignalTrackerId      string        `json:"signal_tracker_id"`
	DestinationId        string        `json:"destination_id"`
	ReportDate           time.Time     `json:"report_date"`
	AcceptedCount        int32         `json:"accepted_count"`
	MetaCount            int32         `json:"meta_count"`
	ObservedGap          int32         `json:"observed_gap"`
	EventCounts          []interface{} `json:"event_counts"`
	Buckets              []interface{} `json:"buckets"`
	UnexplainedResidual  int32         `json:"unexplained_residual"`
	Status               string        `json:"status"`
	CreatedAt            NullableTime  `json:"created_at"`
	UpdatedAt            NullableTime  `json:"updated_at"`
	ClaimedClicks        NullableInt32 `json:"claimed_clicks"`
	AdditionalProperties map[string]interface{}
}

ReconciliationReport struct for ReconciliationReport

func NewReconciliationReport

func NewReconciliationReport(id int32, signalTrackerId string, destinationId string, reportDate time.Time, acceptedCount int32, metaCount int32, observedGap int32, eventCounts []interface{}, buckets []interface{}, unexplainedResidual int32, status string, createdAt NullableTime, updatedAt NullableTime, claimedClicks NullableInt32) *ReconciliationReport

NewReconciliationReport instantiates a new ReconciliationReport 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 NewReconciliationReportWithDefaults

func NewReconciliationReportWithDefaults() *ReconciliationReport

NewReconciliationReportWithDefaults instantiates a new ReconciliationReport 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 (*ReconciliationReport) GetAcceptedCount

func (o *ReconciliationReport) GetAcceptedCount() int32

GetAcceptedCount returns the AcceptedCount field value

func (*ReconciliationReport) GetAcceptedCountOk

func (o *ReconciliationReport) GetAcceptedCountOk() (*int32, bool)

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

func (*ReconciliationReport) GetBuckets

func (o *ReconciliationReport) GetBuckets() []interface{}

GetBuckets returns the Buckets field value

func (*ReconciliationReport) GetBucketsOk

func (o *ReconciliationReport) GetBucketsOk() ([]interface{}, bool)

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

func (*ReconciliationReport) GetClaimedClicks

func (o *ReconciliationReport) GetClaimedClicks() int32

GetClaimedClicks returns the ClaimedClicks field value If the value is explicit nil, the zero value for int32 will be returned

func (*ReconciliationReport) GetClaimedClicksOk

func (o *ReconciliationReport) GetClaimedClicksOk() (*int32, bool)

GetClaimedClicksOk returns a tuple with the ClaimedClicks 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 (*ReconciliationReport) GetCreatedAt

func (o *ReconciliationReport) GetCreatedAt() time.Time

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*ReconciliationReport) GetCreatedAtOk

func (o *ReconciliationReport) GetCreatedAtOk() (*time.Time, bool)

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*ReconciliationReport) GetDestinationId

func (o *ReconciliationReport) GetDestinationId() string

GetDestinationId returns the DestinationId field value

func (*ReconciliationReport) GetDestinationIdOk

func (o *ReconciliationReport) GetDestinationIdOk() (*string, bool)

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

func (*ReconciliationReport) GetEventCounts

func (o *ReconciliationReport) GetEventCounts() []interface{}

GetEventCounts returns the EventCounts field value

func (*ReconciliationReport) GetEventCountsOk

func (o *ReconciliationReport) GetEventCountsOk() ([]interface{}, bool)

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

func (*ReconciliationReport) GetId

func (o *ReconciliationReport) GetId() int32

GetId returns the Id field value

func (*ReconciliationReport) GetIdOk

func (o *ReconciliationReport) GetIdOk() (*int32, bool)

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

func (*ReconciliationReport) GetMetaCount

func (o *ReconciliationReport) GetMetaCount() int32

GetMetaCount returns the MetaCount field value

func (*ReconciliationReport) GetMetaCountOk

func (o *ReconciliationReport) GetMetaCountOk() (*int32, bool)

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

func (*ReconciliationReport) GetObservedGap

func (o *ReconciliationReport) GetObservedGap() int32

GetObservedGap returns the ObservedGap field value

func (*ReconciliationReport) GetObservedGapOk

func (o *ReconciliationReport) GetObservedGapOk() (*int32, bool)

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

func (*ReconciliationReport) GetReportDate

func (o *ReconciliationReport) GetReportDate() time.Time

GetReportDate returns the ReportDate field value

func (*ReconciliationReport) GetReportDateOk

func (o *ReconciliationReport) GetReportDateOk() (*time.Time, bool)

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

func (*ReconciliationReport) GetSignalTrackerId

func (o *ReconciliationReport) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*ReconciliationReport) GetSignalTrackerIdOk

func (o *ReconciliationReport) GetSignalTrackerIdOk() (*string, bool)

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

func (*ReconciliationReport) GetStatus

func (o *ReconciliationReport) GetStatus() string

GetStatus returns the Status field value

func (*ReconciliationReport) GetStatusOk

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

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

func (*ReconciliationReport) GetUnexplainedResidual

func (o *ReconciliationReport) GetUnexplainedResidual() int32

GetUnexplainedResidual returns the UnexplainedResidual field value

func (*ReconciliationReport) GetUnexplainedResidualOk

func (o *ReconciliationReport) GetUnexplainedResidualOk() (*int32, bool)

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

func (*ReconciliationReport) GetUpdatedAt

func (o *ReconciliationReport) GetUpdatedAt() time.Time

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for time.Time will be returned

func (*ReconciliationReport) GetUpdatedAtOk

func (o *ReconciliationReport) GetUpdatedAtOk() (*time.Time, bool)

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (ReconciliationReport) MarshalJSON

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

func (*ReconciliationReport) SetAcceptedCount

func (o *ReconciliationReport) SetAcceptedCount(v int32)

SetAcceptedCount sets field value

func (*ReconciliationReport) SetBuckets

func (o *ReconciliationReport) SetBuckets(v []interface{})

SetBuckets sets field value

func (*ReconciliationReport) SetClaimedClicks

func (o *ReconciliationReport) SetClaimedClicks(v int32)

SetClaimedClicks sets field value

func (*ReconciliationReport) SetCreatedAt

func (o *ReconciliationReport) SetCreatedAt(v time.Time)

SetCreatedAt sets field value

func (*ReconciliationReport) SetDestinationId

func (o *ReconciliationReport) SetDestinationId(v string)

SetDestinationId sets field value

func (*ReconciliationReport) SetEventCounts

func (o *ReconciliationReport) SetEventCounts(v []interface{})

SetEventCounts sets field value

func (*ReconciliationReport) SetId

func (o *ReconciliationReport) SetId(v int32)

SetId sets field value

func (*ReconciliationReport) SetMetaCount

func (o *ReconciliationReport) SetMetaCount(v int32)

SetMetaCount sets field value

func (*ReconciliationReport) SetObservedGap

func (o *ReconciliationReport) SetObservedGap(v int32)

SetObservedGap sets field value

func (*ReconciliationReport) SetReportDate

func (o *ReconciliationReport) SetReportDate(v time.Time)

SetReportDate sets field value

func (*ReconciliationReport) SetSignalTrackerId

func (o *ReconciliationReport) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*ReconciliationReport) SetStatus

func (o *ReconciliationReport) SetStatus(v string)

SetStatus sets field value

func (*ReconciliationReport) SetUnexplainedResidual

func (o *ReconciliationReport) SetUnexplainedResidual(v int32)

SetUnexplainedResidual sets field value

func (*ReconciliationReport) SetUpdatedAt

func (o *ReconciliationReport) SetUpdatedAt(v time.Time)

SetUpdatedAt sets field value

func (ReconciliationReport) ToMap

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

func (*ReconciliationReport) UnmarshalJSON

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

type ReplayDeliveries202Response

type ReplayDeliveries202Response struct {
	Queued               int32 `json:"queued"`
	Expired              int32 `json:"expired"`
	PayloadExpired       int32 `json:"payload_expired"`
	Capped               bool  `json:"capped"`
	AdditionalProperties map[string]interface{}
}

ReplayDeliveries202Response struct for ReplayDeliveries202Response

func NewReplayDeliveries202Response

func NewReplayDeliveries202Response(queued int32, expired int32, payloadExpired int32, capped bool) *ReplayDeliveries202Response

NewReplayDeliveries202Response instantiates a new ReplayDeliveries202Response 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 NewReplayDeliveries202ResponseWithDefaults

func NewReplayDeliveries202ResponseWithDefaults() *ReplayDeliveries202Response

NewReplayDeliveries202ResponseWithDefaults instantiates a new ReplayDeliveries202Response 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 (*ReplayDeliveries202Response) GetCapped

func (o *ReplayDeliveries202Response) GetCapped() bool

GetCapped returns the Capped field value

func (*ReplayDeliveries202Response) GetCappedOk

func (o *ReplayDeliveries202Response) GetCappedOk() (*bool, bool)

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

func (*ReplayDeliveries202Response) GetExpired

func (o *ReplayDeliveries202Response) GetExpired() int32

GetExpired returns the Expired field value

func (*ReplayDeliveries202Response) GetExpiredOk

func (o *ReplayDeliveries202Response) GetExpiredOk() (*int32, bool)

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

func (*ReplayDeliveries202Response) GetPayloadExpired

func (o *ReplayDeliveries202Response) GetPayloadExpired() int32

GetPayloadExpired returns the PayloadExpired field value

func (*ReplayDeliveries202Response) GetPayloadExpiredOk

func (o *ReplayDeliveries202Response) GetPayloadExpiredOk() (*int32, bool)

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

func (*ReplayDeliveries202Response) GetQueued

func (o *ReplayDeliveries202Response) GetQueued() int32

GetQueued returns the Queued field value

func (*ReplayDeliveries202Response) GetQueuedOk

func (o *ReplayDeliveries202Response) GetQueuedOk() (*int32, bool)

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

func (ReplayDeliveries202Response) MarshalJSON

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

func (*ReplayDeliveries202Response) SetCapped

func (o *ReplayDeliveries202Response) SetCapped(v bool)

SetCapped sets field value

func (*ReplayDeliveries202Response) SetExpired

func (o *ReplayDeliveries202Response) SetExpired(v int32)

SetExpired sets field value

func (*ReplayDeliveries202Response) SetPayloadExpired

func (o *ReplayDeliveries202Response) SetPayloadExpired(v int32)

SetPayloadExpired sets field value

func (*ReplayDeliveries202Response) SetQueued

func (o *ReplayDeliveries202Response) SetQueued(v int32)

SetQueued sets field value

func (ReplayDeliveries202Response) ToMap

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

func (*ReplayDeliveries202Response) UnmarshalJSON

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

type ReplayDeliveriesRequest

type ReplayDeliveriesRequest struct {
	DeliveryIds          []int32        `json:"delivery_ids,omitempty"`
	EventName            NullableString `json:"event_name,omitempty"`
	Limit                NullableInt32  `json:"limit,omitempty"`
	AdditionalProperties map[string]interface{}
}

ReplayDeliveriesRequest struct for ReplayDeliveriesRequest

func NewReplayDeliveriesRequest

func NewReplayDeliveriesRequest() *ReplayDeliveriesRequest

NewReplayDeliveriesRequest instantiates a new ReplayDeliveriesRequest 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 NewReplayDeliveriesRequestWithDefaults

func NewReplayDeliveriesRequestWithDefaults() *ReplayDeliveriesRequest

NewReplayDeliveriesRequestWithDefaults instantiates a new ReplayDeliveriesRequest 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 (*ReplayDeliveriesRequest) GetDeliveryIds

func (o *ReplayDeliveriesRequest) GetDeliveryIds() []int32

GetDeliveryIds returns the DeliveryIds field value if set, zero value otherwise.

func (*ReplayDeliveriesRequest) GetDeliveryIdsOk

func (o *ReplayDeliveriesRequest) GetDeliveryIdsOk() ([]int32, bool)

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

func (*ReplayDeliveriesRequest) GetEventName

func (o *ReplayDeliveriesRequest) GetEventName() string

GetEventName returns the EventName field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReplayDeliveriesRequest) GetEventNameOk

func (o *ReplayDeliveriesRequest) GetEventNameOk() (*string, bool)

GetEventNameOk returns a tuple with the EventName 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 (*ReplayDeliveriesRequest) GetLimit

func (o *ReplayDeliveriesRequest) GetLimit() int32

GetLimit returns the Limit field value if set, zero value otherwise (both if not set or set to explicit null).

func (*ReplayDeliveriesRequest) GetLimitOk

func (o *ReplayDeliveriesRequest) GetLimitOk() (*int32, bool)

GetLimitOk returns a tuple with the Limit 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 (*ReplayDeliveriesRequest) HasDeliveryIds

func (o *ReplayDeliveriesRequest) HasDeliveryIds() bool

HasDeliveryIds returns a boolean if a field has been set.

func (*ReplayDeliveriesRequest) HasEventName

func (o *ReplayDeliveriesRequest) HasEventName() bool

HasEventName returns a boolean if a field has been set.

func (*ReplayDeliveriesRequest) HasLimit

func (o *ReplayDeliveriesRequest) HasLimit() bool

HasLimit returns a boolean if a field has been set.

func (ReplayDeliveriesRequest) MarshalJSON

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

func (*ReplayDeliveriesRequest) SetDeliveryIds

func (o *ReplayDeliveriesRequest) SetDeliveryIds(v []int32)

SetDeliveryIds gets a reference to the given []int32 and assigns it to the DeliveryIds field.

func (*ReplayDeliveriesRequest) SetEventName

func (o *ReplayDeliveriesRequest) SetEventName(v string)

SetEventName gets a reference to the given NullableString and assigns it to the EventName field.

func (*ReplayDeliveriesRequest) SetEventNameNil

func (o *ReplayDeliveriesRequest) SetEventNameNil()

SetEventNameNil sets the value for EventName to be an explicit nil

func (*ReplayDeliveriesRequest) SetLimit

func (o *ReplayDeliveriesRequest) SetLimit(v int32)

SetLimit gets a reference to the given NullableInt32 and assigns it to the Limit field.

func (*ReplayDeliveriesRequest) SetLimitNil

func (o *ReplayDeliveriesRequest) SetLimitNil()

SetLimitNil sets the value for Limit to be an explicit nil

func (ReplayDeliveriesRequest) ToMap

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

func (*ReplayDeliveriesRequest) UnmarshalJSON

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

func (*ReplayDeliveriesRequest) UnsetEventName

func (o *ReplayDeliveriesRequest) UnsetEventName()

UnsetEventName ensures that no value is present for EventName, not even an explicit nil

func (*ReplayDeliveriesRequest) UnsetLimit

func (o *ReplayDeliveriesRequest) UnsetLimit()

UnsetLimit ensures that no value is present for Limit, not even an explicit nil

type SandboxAPIService

type SandboxAPIService service

SandboxAPIService SandboxAPI service

func (*SandboxAPIService) CreateSandboxKey

CreateSandboxKey Create a sandbox API key

Issues a short-lived sandbox-only bearer key without an account, human approval, or production access.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiCreateSandboxKeyRequest

func (*SandboxAPIService) CreateSandboxKeyExecute

Execute executes the request

@return CreateSandboxKey201Response

func (*SandboxAPIService) GetSandbox

GetSandbox Discover the zero-auth sandbox

Returns a ready-to-run synthetic event example. The sandbox requires no account or API key and cannot read production data, persist events, or contact an advertising provider.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiGetSandboxRequest

func (*SandboxAPIService) GetSandboxExecute

Execute executes the request

@return GetSandbox200Response

func (*SandboxAPIService) ValidateSandboxEvent

func (a *SandboxAPIService) ValidateSandboxEvent(ctx context.Context) ApiValidateSandboxEventRequest

ValidateSandboxEvent Validate a synthetic event

Validates and immediately discards one identity-free synthetic event. It requires no account or API key and never writes to the ledger or contacts Meta.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidateSandboxEventRequest

func (*SandboxAPIService) ValidateSandboxEventExecute

Execute executes the request

@return ValidateSandboxEvent200Response

func (*SandboxAPIService) ValidateSandboxEventWithKey

func (a *SandboxAPIService) ValidateSandboxEventWithKey(ctx context.Context) ApiValidateSandboxEventWithKeyRequest

ValidateSandboxEventWithKey Validate a synthetic event with a sandbox key

Validates a synthetic event using the short-lived key returned by the self-serve sandbox key endpoint. It never persists data or contacts an advertising provider.

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiValidateSandboxEventWithKeyRequest

func (*SandboxAPIService) ValidateSandboxEventWithKeyExecute

Execute executes the request

@return ValidateSandboxEvent200Response

type SendTestPurchase200Response

type SendTestPurchase200Response struct {
	EventId              string         `json:"event_id"`
	Status               DeliveryStatus `json:"status"`
	TraceId              NullableString `json:"trace_id"`
	AdditionalProperties map[string]interface{}
}

SendTestPurchase200Response struct for SendTestPurchase200Response

func NewSendTestPurchase200Response

func NewSendTestPurchase200Response(eventId string, status DeliveryStatus, traceId NullableString) *SendTestPurchase200Response

NewSendTestPurchase200Response instantiates a new SendTestPurchase200Response 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 NewSendTestPurchase200ResponseWithDefaults

func NewSendTestPurchase200ResponseWithDefaults() *SendTestPurchase200Response

NewSendTestPurchase200ResponseWithDefaults instantiates a new SendTestPurchase200Response 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 (*SendTestPurchase200Response) GetEventId

func (o *SendTestPurchase200Response) GetEventId() string

GetEventId returns the EventId field value

func (*SendTestPurchase200Response) GetEventIdOk

func (o *SendTestPurchase200Response) GetEventIdOk() (*string, bool)

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

func (*SendTestPurchase200Response) GetStatus

GetStatus returns the Status field value

func (*SendTestPurchase200Response) GetStatusOk

func (o *SendTestPurchase200Response) GetStatusOk() (*DeliveryStatus, bool)

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

func (*SendTestPurchase200Response) GetTraceId

func (o *SendTestPurchase200Response) GetTraceId() string

GetTraceId returns the TraceId field value If the value is explicit nil, the zero value for string will be returned

func (*SendTestPurchase200Response) GetTraceIdOk

func (o *SendTestPurchase200Response) GetTraceIdOk() (*string, bool)

GetTraceIdOk returns a tuple with the TraceId 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 (SendTestPurchase200Response) MarshalJSON

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

func (*SendTestPurchase200Response) SetEventId

func (o *SendTestPurchase200Response) SetEventId(v string)

SetEventId sets field value

func (*SendTestPurchase200Response) SetStatus

SetStatus sets field value

func (*SendTestPurchase200Response) SetTraceId

func (o *SendTestPurchase200Response) SetTraceId(v string)

SetTraceId sets field value

func (SendTestPurchase200Response) ToMap

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

func (*SendTestPurchase200Response) UnmarshalJSON

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

type SendTestPurchase422Response

type SendTestPurchase422Response struct {
	ErrorMessage    *ErrorMessage
	ValidationError *ValidationError
}

SendTestPurchase422Response struct for SendTestPurchase422Response

func (SendTestPurchase422Response) MarshalJSON

func (src SendTestPurchase422Response) MarshalJSON() ([]byte, error)

Marshal data from the first non-nil pointers in the struct to JSON

func (*SendTestPurchase422Response) UnmarshalJSON

func (dst *SendTestPurchase422Response) UnmarshalJSON(data []byte) error

Unmarshal JSON data into any of the pointers in the struct

type SendTestPurchaseRequest

type SendTestPurchaseRequest struct {
	Value                NullableString `json:"value,omitempty" validate:"regexp=^-?\\d+(?:\\.\\d+)?$"`
	Currency             NullableString `json:"currency,omitempty"`
	OrderId              NullableString `json:"order_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

SendTestPurchaseRequest struct for SendTestPurchaseRequest

func NewSendTestPurchaseRequest

func NewSendTestPurchaseRequest() *SendTestPurchaseRequest

NewSendTestPurchaseRequest instantiates a new SendTestPurchaseRequest 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 NewSendTestPurchaseRequestWithDefaults

func NewSendTestPurchaseRequestWithDefaults() *SendTestPurchaseRequest

NewSendTestPurchaseRequestWithDefaults instantiates a new SendTestPurchaseRequest 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 (*SendTestPurchaseRequest) GetCurrency

func (o *SendTestPurchaseRequest) GetCurrency() string

GetCurrency returns the Currency field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendTestPurchaseRequest) GetCurrencyOk

func (o *SendTestPurchaseRequest) GetCurrencyOk() (*string, bool)

GetCurrencyOk returns a tuple with the Currency 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 (*SendTestPurchaseRequest) GetOrderId

func (o *SendTestPurchaseRequest) GetOrderId() string

GetOrderId returns the OrderId field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendTestPurchaseRequest) GetOrderIdOk

func (o *SendTestPurchaseRequest) GetOrderIdOk() (*string, bool)

GetOrderIdOk returns a tuple with the OrderId 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 (*SendTestPurchaseRequest) GetValue

func (o *SendTestPurchaseRequest) GetValue() string

GetValue returns the Value field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SendTestPurchaseRequest) GetValueOk

func (o *SendTestPurchaseRequest) GetValueOk() (*string, bool)

GetValueOk returns a tuple with the Value 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 (*SendTestPurchaseRequest) HasCurrency

func (o *SendTestPurchaseRequest) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*SendTestPurchaseRequest) HasOrderId

func (o *SendTestPurchaseRequest) HasOrderId() bool

HasOrderId returns a boolean if a field has been set.

func (*SendTestPurchaseRequest) HasValue

func (o *SendTestPurchaseRequest) HasValue() bool

HasValue returns a boolean if a field has been set.

func (SendTestPurchaseRequest) MarshalJSON

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

func (*SendTestPurchaseRequest) SetCurrency

func (o *SendTestPurchaseRequest) SetCurrency(v string)

SetCurrency gets a reference to the given NullableString and assigns it to the Currency field.

func (*SendTestPurchaseRequest) SetCurrencyNil

func (o *SendTestPurchaseRequest) SetCurrencyNil()

SetCurrencyNil sets the value for Currency to be an explicit nil

func (*SendTestPurchaseRequest) SetOrderId

func (o *SendTestPurchaseRequest) SetOrderId(v string)

SetOrderId gets a reference to the given NullableString and assigns it to the OrderId field.

func (*SendTestPurchaseRequest) SetOrderIdNil

func (o *SendTestPurchaseRequest) SetOrderIdNil()

SetOrderIdNil sets the value for OrderId to be an explicit nil

func (*SendTestPurchaseRequest) SetValue

func (o *SendTestPurchaseRequest) SetValue(v string)

SetValue gets a reference to the given NullableString and assigns it to the Value field.

func (*SendTestPurchaseRequest) SetValueNil

func (o *SendTestPurchaseRequest) SetValueNil()

SetValueNil sets the value for Value to be an explicit nil

func (SendTestPurchaseRequest) ToMap

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

func (*SendTestPurchaseRequest) UnmarshalJSON

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

func (*SendTestPurchaseRequest) UnsetCurrency

func (o *SendTestPurchaseRequest) UnsetCurrency()

UnsetCurrency ensures that no value is present for Currency, not even an explicit nil

func (*SendTestPurchaseRequest) UnsetOrderId

func (o *SendTestPurchaseRequest) UnsetOrderId()

UnsetOrderId ensures that no value is present for OrderId, not even an explicit nil

func (*SendTestPurchaseRequest) UnsetValue

func (o *SendTestPurchaseRequest) UnsetValue()

UnsetValue ensures that no value is present for Value, not even an explicit nil

type ServerConfiguration

type ServerConfiguration struct {
	URL         string
	Description string
	Variables   map[string]ServerVariable
}

ServerConfiguration stores the information about a server

type ServerConfigurations

type ServerConfigurations []ServerConfiguration

ServerConfigurations stores multiple ServerConfiguration items

func (ServerConfigurations) URL

func (sc ServerConfigurations) URL(index int, variables map[string]string) (string, error)

URL formats template on a index using given variables

type ServerVariable

type ServerVariable struct {
	Description  string
	DefaultValue string
	EnumValues   []string
}

ServerVariable stores the information about a server variable

type SetDestinationTestMode200Response

type SetDestinationTestMode200Response struct {
	Destination          SetDestinationTestMode200ResponseDestination `json:"destination"`
	TestMode             bool                                         `json:"test_mode"`
	AdditionalProperties map[string]interface{}
}

SetDestinationTestMode200Response struct for SetDestinationTestMode200Response

func NewSetDestinationTestMode200Response

func NewSetDestinationTestMode200Response(destination SetDestinationTestMode200ResponseDestination, testMode bool) *SetDestinationTestMode200Response

NewSetDestinationTestMode200Response instantiates a new SetDestinationTestMode200Response 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 NewSetDestinationTestMode200ResponseWithDefaults

func NewSetDestinationTestMode200ResponseWithDefaults() *SetDestinationTestMode200Response

NewSetDestinationTestMode200ResponseWithDefaults instantiates a new SetDestinationTestMode200Response 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 (*SetDestinationTestMode200Response) GetDestination

GetDestination returns the Destination field value

func (*SetDestinationTestMode200Response) GetDestinationOk

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

func (*SetDestinationTestMode200Response) GetTestMode

func (o *SetDestinationTestMode200Response) GetTestMode() bool

GetTestMode returns the TestMode field value

func (*SetDestinationTestMode200Response) GetTestModeOk

func (o *SetDestinationTestMode200Response) GetTestModeOk() (*bool, bool)

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

func (SetDestinationTestMode200Response) MarshalJSON

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

func (*SetDestinationTestMode200Response) SetDestination

SetDestination sets field value

func (*SetDestinationTestMode200Response) SetTestMode

func (o *SetDestinationTestMode200Response) SetTestMode(v bool)

SetTestMode sets field value

func (SetDestinationTestMode200Response) ToMap

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

func (*SetDestinationTestMode200Response) UnmarshalJSON

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

type SetDestinationTestMode200ResponseDestination

type SetDestinationTestMode200ResponseDestination struct {
	Id                   string                      `json:"id"`
	SignalTrackerId      string                      `json:"signal_tracker_id"`
	PlatformAdAccountId  NullableInt32               `json:"platform_ad_account_id"`
	Type                 DestinationType             `json:"type"`
	CredentialSource     DestinationCredentialSource `json:"credential_source"`
	Config               interface{}                 `json:"config"`
	Status               DestinationStatus           `json:"status"`
	CreatedAt            NullableString              `json:"created_at"`
	UpdatedAt            NullableString              `json:"updated_at"`
	AdditionalProperties map[string]interface{}
}

SetDestinationTestMode200ResponseDestination struct for SetDestinationTestMode200ResponseDestination

func NewSetDestinationTestMode200ResponseDestination

func NewSetDestinationTestMode200ResponseDestination(id string, signalTrackerId string, platformAdAccountId NullableInt32, type_ DestinationType, credentialSource DestinationCredentialSource, config interface{}, status DestinationStatus, createdAt NullableString, updatedAt NullableString) *SetDestinationTestMode200ResponseDestination

NewSetDestinationTestMode200ResponseDestination instantiates a new SetDestinationTestMode200ResponseDestination 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 NewSetDestinationTestMode200ResponseDestinationWithDefaults

func NewSetDestinationTestMode200ResponseDestinationWithDefaults() *SetDestinationTestMode200ResponseDestination

NewSetDestinationTestMode200ResponseDestinationWithDefaults instantiates a new SetDestinationTestMode200ResponseDestination 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 (*SetDestinationTestMode200ResponseDestination) GetConfig

func (o *SetDestinationTestMode200ResponseDestination) GetConfig() interface{}

GetConfig returns the Config field value If the value is explicit nil, the zero value for interface{} will be returned

func (*SetDestinationTestMode200ResponseDestination) GetConfigOk

func (o *SetDestinationTestMode200ResponseDestination) GetConfigOk() (*interface{}, bool)

GetConfigOk returns a tuple with the Config 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 (*SetDestinationTestMode200ResponseDestination) GetCreatedAt

GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SetDestinationTestMode200ResponseDestination) GetCreatedAtOk

GetCreatedAtOk returns a tuple with the CreatedAt 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 (*SetDestinationTestMode200ResponseDestination) GetCredentialSource

GetCredentialSource returns the CredentialSource field value

func (*SetDestinationTestMode200ResponseDestination) GetCredentialSourceOk

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

func (*SetDestinationTestMode200ResponseDestination) GetId

GetId returns the Id field value

func (*SetDestinationTestMode200ResponseDestination) GetIdOk

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

func (*SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountId

func (o *SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountId() int32

GetPlatformAdAccountId returns the PlatformAdAccountId field value If the value is explicit nil, the zero value for int32 will be returned

func (*SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountIdOk

func (o *SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountIdOk() (*int32, bool)

GetPlatformAdAccountIdOk returns a tuple with the PlatformAdAccountId 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 (*SetDestinationTestMode200ResponseDestination) GetSignalTrackerId

func (o *SetDestinationTestMode200ResponseDestination) GetSignalTrackerId() string

GetSignalTrackerId returns the SignalTrackerId field value

func (*SetDestinationTestMode200ResponseDestination) GetSignalTrackerIdOk

func (o *SetDestinationTestMode200ResponseDestination) GetSignalTrackerIdOk() (*string, bool)

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

func (*SetDestinationTestMode200ResponseDestination) GetStatus

GetStatus returns the Status field value

func (*SetDestinationTestMode200ResponseDestination) GetStatusOk

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

func (*SetDestinationTestMode200ResponseDestination) GetType

GetType returns the Type field value

func (*SetDestinationTestMode200ResponseDestination) GetTypeOk

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

func (*SetDestinationTestMode200ResponseDestination) GetUpdatedAt

GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned

func (*SetDestinationTestMode200ResponseDestination) GetUpdatedAtOk

GetUpdatedAtOk returns a tuple with the UpdatedAt 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 (SetDestinationTestMode200ResponseDestination) MarshalJSON

func (*SetDestinationTestMode200ResponseDestination) SetConfig

func (o *SetDestinationTestMode200ResponseDestination) SetConfig(v interface{})

SetConfig sets field value

func (*SetDestinationTestMode200ResponseDestination) SetCreatedAt

SetCreatedAt sets field value

func (*SetDestinationTestMode200ResponseDestination) SetCredentialSource

SetCredentialSource sets field value

func (*SetDestinationTestMode200ResponseDestination) SetId

SetId sets field value

func (*SetDestinationTestMode200ResponseDestination) SetPlatformAdAccountId

func (o *SetDestinationTestMode200ResponseDestination) SetPlatformAdAccountId(v int32)

SetPlatformAdAccountId sets field value

func (*SetDestinationTestMode200ResponseDestination) SetSignalTrackerId

func (o *SetDestinationTestMode200ResponseDestination) SetSignalTrackerId(v string)

SetSignalTrackerId sets field value

func (*SetDestinationTestMode200ResponseDestination) SetStatus

SetStatus sets field value

func (*SetDestinationTestMode200ResponseDestination) SetType

SetType sets field value

func (*SetDestinationTestMode200ResponseDestination) SetUpdatedAt

SetUpdatedAt sets field value

func (SetDestinationTestMode200ResponseDestination) ToMap

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

func (*SetDestinationTestMode200ResponseDestination) UnmarshalJSON

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

type SetDestinationTestModeRequest

type SetDestinationTestModeRequest struct {
	Enabled              bool           `json:"enabled"`
	TestEventCode        NullableString `json:"test_event_code,omitempty"`
	AdditionalProperties map[string]interface{}
}

SetDestinationTestModeRequest struct for SetDestinationTestModeRequest

func NewSetDestinationTestModeRequest

func NewSetDestinationTestModeRequest(enabled bool) *SetDestinationTestModeRequest

NewSetDestinationTestModeRequest instantiates a new SetDestinationTestModeRequest 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 NewSetDestinationTestModeRequestWithDefaults

func NewSetDestinationTestModeRequestWithDefaults() *SetDestinationTestModeRequest

NewSetDestinationTestModeRequestWithDefaults instantiates a new SetDestinationTestModeRequest 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 (*SetDestinationTestModeRequest) GetEnabled

func (o *SetDestinationTestModeRequest) GetEnabled() bool

GetEnabled returns the Enabled field value

func (*SetDestinationTestModeRequest) GetEnabledOk

func (o *SetDestinationTestModeRequest) GetEnabledOk() (*bool, bool)

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

func (*SetDestinationTestModeRequest) GetTestEventCode

func (o *SetDestinationTestModeRequest) GetTestEventCode() string

GetTestEventCode returns the TestEventCode field value if set, zero value otherwise (both if not set or set to explicit null).

func (*SetDestinationTestModeRequest) GetTestEventCodeOk

func (o *SetDestinationTestModeRequest) GetTestEventCodeOk() (*string, bool)

GetTestEventCodeOk returns a tuple with the TestEventCode 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 (*SetDestinationTestModeRequest) HasTestEventCode

func (o *SetDestinationTestModeRequest) HasTestEventCode() bool

HasTestEventCode returns a boolean if a field has been set.

func (SetDestinationTestModeRequest) MarshalJSON

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

func (*SetDestinationTestModeRequest) SetEnabled

func (o *SetDestinationTestModeRequest) SetEnabled(v bool)

SetEnabled sets field value

func (*SetDestinationTestModeRequest) SetTestEventCode

func (o *SetDestinationTestModeRequest) SetTestEventCode(v string)

SetTestEventCode gets a reference to the given NullableString and assigns it to the TestEventCode field.

func (*SetDestinationTestModeRequest) SetTestEventCodeNil

func (o *SetDestinationTestModeRequest) SetTestEventCodeNil()

SetTestEventCodeNil sets the value for TestEventCode to be an explicit nil

func (SetDestinationTestModeRequest) ToMap

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

func (*SetDestinationTestModeRequest) UnmarshalJSON

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

func (*SetDestinationTestModeRequest) UnsetTestEventCode

func (o *SetDestinationTestModeRequest) UnsetTestEventCode()

UnsetTestEventCode ensures that no value is present for TestEventCode, not even an explicit nil

type TrafficClass

type TrafficClass string

TrafficClass The only persisted traffic verdicts for passive document arrivals. Request facts and classifier reasons never cross the stripping boundary.

const (
	TRAFFICCLASS_VALID                    TrafficClass = "valid"
	TRAFFICCLASS_INVALID                  TrafficClass = "invalid"
	TRAFFICCLASS_UNKNOWN_DEFAULT_OPEN_API TrafficClass = "unknown_default_open_api"
)

List of TrafficClass

func NewTrafficClassFromValue

func NewTrafficClassFromValue(v string) (*TrafficClass, error)

NewTrafficClassFromValue returns a pointer to a valid TrafficClass for the value passed as argument, or an error if the value passed is not allowed by the enum

func (TrafficClass) IsValid

func (v TrafficClass) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (TrafficClass) Ptr

func (v TrafficClass) Ptr() *TrafficClass

Ptr returns reference to TrafficClass value

func (*TrafficClass) UnmarshalJSON

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

type ValidateSandboxEvent200Response

type ValidateSandboxEvent200Response struct {
	Sandbox              bool   `json:"sandbox"`
	Accepted             bool   `json:"accepted"`
	EventId              string `json:"event_id"`
	Status               string `json:"status"`
	Persisted            bool   `json:"persisted"`
	ProviderDelivery     bool   `json:"provider_delivery"`
	Message              string `json:"message"`
	AdditionalProperties map[string]interface{}
}

ValidateSandboxEvent200Response struct for ValidateSandboxEvent200Response

func NewValidateSandboxEvent200Response

func NewValidateSandboxEvent200Response(sandbox bool, accepted bool, eventId string, status string, persisted bool, providerDelivery bool, message string) *ValidateSandboxEvent200Response

NewValidateSandboxEvent200Response instantiates a new ValidateSandboxEvent200Response 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 NewValidateSandboxEvent200ResponseWithDefaults

func NewValidateSandboxEvent200ResponseWithDefaults() *ValidateSandboxEvent200Response

NewValidateSandboxEvent200ResponseWithDefaults instantiates a new ValidateSandboxEvent200Response 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 (*ValidateSandboxEvent200Response) GetAccepted

func (o *ValidateSandboxEvent200Response) GetAccepted() bool

GetAccepted returns the Accepted field value

func (*ValidateSandboxEvent200Response) GetAcceptedOk

func (o *ValidateSandboxEvent200Response) GetAcceptedOk() (*bool, bool)

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

func (*ValidateSandboxEvent200Response) GetEventId

func (o *ValidateSandboxEvent200Response) GetEventId() string

GetEventId returns the EventId field value

func (*ValidateSandboxEvent200Response) GetEventIdOk

func (o *ValidateSandboxEvent200Response) GetEventIdOk() (*string, bool)

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

func (*ValidateSandboxEvent200Response) GetMessage

func (o *ValidateSandboxEvent200Response) GetMessage() string

GetMessage returns the Message field value

func (*ValidateSandboxEvent200Response) GetMessageOk

func (o *ValidateSandboxEvent200Response) GetMessageOk() (*string, bool)

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

func (*ValidateSandboxEvent200Response) GetPersisted

func (o *ValidateSandboxEvent200Response) GetPersisted() bool

GetPersisted returns the Persisted field value

func (*ValidateSandboxEvent200Response) GetPersistedOk

func (o *ValidateSandboxEvent200Response) GetPersistedOk() (*bool, bool)

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

func (*ValidateSandboxEvent200Response) GetProviderDelivery

func (o *ValidateSandboxEvent200Response) GetProviderDelivery() bool

GetProviderDelivery returns the ProviderDelivery field value

func (*ValidateSandboxEvent200Response) GetProviderDeliveryOk

func (o *ValidateSandboxEvent200Response) GetProviderDeliveryOk() (*bool, bool)

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

func (*ValidateSandboxEvent200Response) GetSandbox

func (o *ValidateSandboxEvent200Response) GetSandbox() bool

GetSandbox returns the Sandbox field value

func (*ValidateSandboxEvent200Response) GetSandboxOk

func (o *ValidateSandboxEvent200Response) GetSandboxOk() (*bool, bool)

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

func (*ValidateSandboxEvent200Response) GetStatus

func (o *ValidateSandboxEvent200Response) GetStatus() string

GetStatus returns the Status field value

func (*ValidateSandboxEvent200Response) GetStatusOk

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

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

func (ValidateSandboxEvent200Response) MarshalJSON

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

func (*ValidateSandboxEvent200Response) SetAccepted

func (o *ValidateSandboxEvent200Response) SetAccepted(v bool)

SetAccepted sets field value

func (*ValidateSandboxEvent200Response) SetEventId

func (o *ValidateSandboxEvent200Response) SetEventId(v string)

SetEventId sets field value

func (*ValidateSandboxEvent200Response) SetMessage

func (o *ValidateSandboxEvent200Response) SetMessage(v string)

SetMessage sets field value

func (*ValidateSandboxEvent200Response) SetPersisted

func (o *ValidateSandboxEvent200Response) SetPersisted(v bool)

SetPersisted sets field value

func (*ValidateSandboxEvent200Response) SetProviderDelivery

func (o *ValidateSandboxEvent200Response) SetProviderDelivery(v bool)

SetProviderDelivery sets field value

func (*ValidateSandboxEvent200Response) SetSandbox

func (o *ValidateSandboxEvent200Response) SetSandbox(v bool)

SetSandbox sets field value

func (*ValidateSandboxEvent200Response) SetStatus

func (o *ValidateSandboxEvent200Response) SetStatus(v string)

SetStatus sets field value

func (ValidateSandboxEvent200Response) ToMap

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

func (*ValidateSandboxEvent200Response) UnmarshalJSON

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

type ValidateSandboxEventRequest

type ValidateSandboxEventRequest struct {
	// Optional synthetic idempotency key; maximum 128 characters.
	EventId *string `json:"event_id,omitempty"`
	// Synthetic event name; maximum 100 characters.
	EventName string `json:"event_name"`
	// Synthetic action source.
	ActionSource         *string                               `json:"action_source,omitempty"`
	ValueData            *ValidateSandboxEventRequestValueData `json:"value_data,omitempty"`
	AdditionalProperties map[string]interface{}
}

ValidateSandboxEventRequest struct for ValidateSandboxEventRequest

func NewValidateSandboxEventRequest

func NewValidateSandboxEventRequest(eventName string) *ValidateSandboxEventRequest

NewValidateSandboxEventRequest instantiates a new ValidateSandboxEventRequest 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 NewValidateSandboxEventRequestWithDefaults

func NewValidateSandboxEventRequestWithDefaults() *ValidateSandboxEventRequest

NewValidateSandboxEventRequestWithDefaults instantiates a new ValidateSandboxEventRequest 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 (*ValidateSandboxEventRequest) GetActionSource

func (o *ValidateSandboxEventRequest) GetActionSource() string

GetActionSource returns the ActionSource field value if set, zero value otherwise.

func (*ValidateSandboxEventRequest) GetActionSourceOk

func (o *ValidateSandboxEventRequest) GetActionSourceOk() (*string, bool)

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

func (*ValidateSandboxEventRequest) GetEventId

func (o *ValidateSandboxEventRequest) GetEventId() string

GetEventId returns the EventId field value if set, zero value otherwise.

func (*ValidateSandboxEventRequest) GetEventIdOk

func (o *ValidateSandboxEventRequest) GetEventIdOk() (*string, bool)

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

func (*ValidateSandboxEventRequest) GetEventName

func (o *ValidateSandboxEventRequest) GetEventName() string

GetEventName returns the EventName field value

func (*ValidateSandboxEventRequest) GetEventNameOk

func (o *ValidateSandboxEventRequest) GetEventNameOk() (*string, bool)

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

func (*ValidateSandboxEventRequest) GetValueData

GetValueData returns the ValueData field value if set, zero value otherwise.

func (*ValidateSandboxEventRequest) GetValueDataOk

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

func (*ValidateSandboxEventRequest) HasActionSource

func (o *ValidateSandboxEventRequest) HasActionSource() bool

HasActionSource returns a boolean if a field has been set.

func (*ValidateSandboxEventRequest) HasEventId

func (o *ValidateSandboxEventRequest) HasEventId() bool

HasEventId returns a boolean if a field has been set.

func (*ValidateSandboxEventRequest) HasValueData

func (o *ValidateSandboxEventRequest) HasValueData() bool

HasValueData returns a boolean if a field has been set.

func (ValidateSandboxEventRequest) MarshalJSON

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

func (*ValidateSandboxEventRequest) SetActionSource

func (o *ValidateSandboxEventRequest) SetActionSource(v string)

SetActionSource gets a reference to the given string and assigns it to the ActionSource field.

func (*ValidateSandboxEventRequest) SetEventId

func (o *ValidateSandboxEventRequest) SetEventId(v string)

SetEventId gets a reference to the given string and assigns it to the EventId field.

func (*ValidateSandboxEventRequest) SetEventName

func (o *ValidateSandboxEventRequest) SetEventName(v string)

SetEventName sets field value

func (*ValidateSandboxEventRequest) SetValueData

SetValueData gets a reference to the given ValidateSandboxEventRequestValueData and assigns it to the ValueData field.

func (ValidateSandboxEventRequest) ToMap

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

func (*ValidateSandboxEventRequest) UnmarshalJSON

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

type ValidateSandboxEventRequestValueData

type ValidateSandboxEventRequestValueData struct {
	Value                *string `json:"value,omitempty"`
	Currency             *string `json:"currency,omitempty"`
	OrderId              *string `json:"order_id,omitempty"`
	AdditionalProperties map[string]interface{}
}

ValidateSandboxEventRequestValueData Optional synthetic commerce data.

func NewValidateSandboxEventRequestValueData

func NewValidateSandboxEventRequestValueData() *ValidateSandboxEventRequestValueData

NewValidateSandboxEventRequestValueData instantiates a new ValidateSandboxEventRequestValueData 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 NewValidateSandboxEventRequestValueDataWithDefaults

func NewValidateSandboxEventRequestValueDataWithDefaults() *ValidateSandboxEventRequestValueData

NewValidateSandboxEventRequestValueDataWithDefaults instantiates a new ValidateSandboxEventRequestValueData 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 (*ValidateSandboxEventRequestValueData) GetCurrency

GetCurrency returns the Currency field value if set, zero value otherwise.

func (*ValidateSandboxEventRequestValueData) GetCurrencyOk

func (o *ValidateSandboxEventRequestValueData) GetCurrencyOk() (*string, bool)

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

func (*ValidateSandboxEventRequestValueData) GetOrderId

GetOrderId returns the OrderId field value if set, zero value otherwise.

func (*ValidateSandboxEventRequestValueData) GetOrderIdOk

func (o *ValidateSandboxEventRequestValueData) GetOrderIdOk() (*string, bool)

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

func (*ValidateSandboxEventRequestValueData) GetValue

GetValue returns the Value field value if set, zero value otherwise.

func (*ValidateSandboxEventRequestValueData) GetValueOk

func (o *ValidateSandboxEventRequestValueData) GetValueOk() (*string, bool)

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

func (*ValidateSandboxEventRequestValueData) HasCurrency

func (o *ValidateSandboxEventRequestValueData) HasCurrency() bool

HasCurrency returns a boolean if a field has been set.

func (*ValidateSandboxEventRequestValueData) HasOrderId

HasOrderId returns a boolean if a field has been set.

func (*ValidateSandboxEventRequestValueData) HasValue

HasValue returns a boolean if a field has been set.

func (ValidateSandboxEventRequestValueData) MarshalJSON

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

func (*ValidateSandboxEventRequestValueData) SetCurrency

func (o *ValidateSandboxEventRequestValueData) SetCurrency(v string)

SetCurrency gets a reference to the given string and assigns it to the Currency field.

func (*ValidateSandboxEventRequestValueData) SetOrderId

SetOrderId gets a reference to the given string and assigns it to the OrderId field.

func (*ValidateSandboxEventRequestValueData) SetValue

SetValue gets a reference to the given string and assigns it to the Value field.

func (ValidateSandboxEventRequestValueData) ToMap

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

func (*ValidateSandboxEventRequestValueData) UnmarshalJSON

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

type ValidationError

type ValidationError struct {
	Message              string              `json:"message"`
	Errors               map[string][]string `json:"errors"`
	AdditionalProperties map[string]interface{}
}

ValidationError struct for ValidationError

func NewValidationError

func NewValidationError(message string, errors map[string][]string) *ValidationError

NewValidationError instantiates a new ValidationError 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 NewValidationErrorWithDefaults

func NewValidationErrorWithDefaults() *ValidationError

NewValidationErrorWithDefaults instantiates a new ValidationError 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 (*ValidationError) GetErrors

func (o *ValidationError) GetErrors() map[string][]string

GetErrors returns the Errors field value

func (*ValidationError) GetErrorsOk

func (o *ValidationError) GetErrorsOk() (map[string][]string, bool)

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

func (*ValidationError) GetMessage

func (o *ValidationError) GetMessage() string

GetMessage returns the Message field value

func (*ValidationError) GetMessageOk

func (o *ValidationError) GetMessageOk() (*string, bool)

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

func (ValidationError) MarshalJSON

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

func (*ValidationError) SetErrors

func (o *ValidationError) SetErrors(v map[string][]string)

SetErrors sets field value

func (*ValidationError) SetMessage

func (o *ValidationError) SetMessage(v string)

SetMessage sets field value

func (ValidationError) ToMap

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

func (*ValidationError) UnmarshalJSON

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

Source Files

Jump to

Keyboard shortcuts

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