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)
}
Output:
Index ¶
- Variables
- func CacheExpires(r *http.Response) time.Time
- func IsNil(i interface{}) bool
- func PtrBool(v bool) *bool
- func PtrFloat32(v float32) *float32
- func PtrFloat64(v float64) *float64
- func PtrInt(v int) *int
- func PtrInt32(v int32) *int32
- func PtrInt64(v int64) *int64
- func PtrString(v string) *string
- func PtrTime(v time.Time) *time.Time
- type APIClient
- type APIKey
- type APIResponse
- type ApiCreateEventRequest
- type ApiCreateSandboxKeyRequest
- type ApiDeleteUserDataRequest
- type ApiGetEmqReportRequest
- type ApiGetEventRequest
- type ApiGetReconciliationReportRequest
- type ApiGetSandboxRequest
- type ApiListEventsByCursorRequest
- type ApiListEventsRequest
- type ApiReplayDeliveriesRequest
- type ApiSendTestPurchaseRequest
- type ApiSetDestinationTestModeRequest
- type ApiValidateSandboxEventRequest
- type ApiValidateSandboxEventWithKeyRequest
- type ApiVerifySignalIngestionRequest
- type BasicAuth
- type Configuration
- type CreateEvent200Response
- func (o *CreateEvent200Response) GetDuplicate() bool
- func (o *CreateEvent200Response) GetDuplicateOk() (*bool, bool)
- func (o *CreateEvent200Response) GetEventId() string
- func (o *CreateEvent200Response) GetEventIdOk() (*string, bool)
- func (o CreateEvent200Response) MarshalJSON() ([]byte, error)
- func (o *CreateEvent200Response) SetDuplicate(v bool)
- func (o *CreateEvent200Response) SetEventId(v string)
- func (o CreateEvent200Response) ToMap() (map[string]interface{}, error)
- func (o *CreateEvent200Response) UnmarshalJSON(data []byte) (err error)
- type CreateEventRequest
- type CreateEventRequestAnyOf
- func (o *CreateEventRequestAnyOf) GetActionSource() string
- func (o *CreateEventRequestAnyOf) GetActionSourceOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetClickIds() map[string]*interface{}
- func (o *CreateEventRequestAnyOf) GetClickIdsOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf) GetConsent() map[string]*interface{}
- func (o *CreateEventRequestAnyOf) GetConsentBasis() string
- func (o *CreateEventRequestAnyOf) GetConsentBasisOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetConsentMode() map[string]*interface{}
- func (o *CreateEventRequestAnyOf) GetConsentModeOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf) GetConsentOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf) GetEventId() string
- func (o *CreateEventRequestAnyOf) GetEventIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetEventName() string
- func (o *CreateEventRequestAnyOf) GetEventNameOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetEventSource() string
- func (o *CreateEventRequestAnyOf) GetEventSourceOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetEventTime() CreateEventRequestAnyOfEventTime
- func (o *CreateEventRequestAnyOf) GetEventTimeOk() (*CreateEventRequestAnyOfEventTime, bool)
- func (o *CreateEventRequestAnyOf) GetParentEventId() string
- func (o *CreateEventRequestAnyOf) GetParentEventIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) GetTcf() map[string]*interface{}
- func (o *CreateEventRequestAnyOf) GetTcfOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf) GetUserData() map[string]*interface{}
- func (o *CreateEventRequestAnyOf) GetUserDataOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf) GetValueData() CreateEventRequestAnyOfValueData
- func (o *CreateEventRequestAnyOf) GetValueDataOk() (*CreateEventRequestAnyOfValueData, bool)
- func (o *CreateEventRequestAnyOf) GetVisitorId() string
- func (o *CreateEventRequestAnyOf) GetVisitorIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf) HasActionSource() bool
- func (o *CreateEventRequestAnyOf) HasClickIds() bool
- func (o *CreateEventRequestAnyOf) HasConsent() bool
- func (o *CreateEventRequestAnyOf) HasConsentMode() bool
- func (o *CreateEventRequestAnyOf) HasEventId() bool
- func (o *CreateEventRequestAnyOf) HasEventSource() bool
- func (o *CreateEventRequestAnyOf) HasEventTime() bool
- func (o *CreateEventRequestAnyOf) HasParentEventId() bool
- func (o *CreateEventRequestAnyOf) HasTcf() bool
- func (o *CreateEventRequestAnyOf) HasUserData() bool
- func (o *CreateEventRequestAnyOf) HasValueData() bool
- func (o *CreateEventRequestAnyOf) HasVisitorId() bool
- func (o CreateEventRequestAnyOf) MarshalJSON() ([]byte, error)
- func (o *CreateEventRequestAnyOf) SetActionSource(v string)
- func (o *CreateEventRequestAnyOf) SetClickIds(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf) SetConsent(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf) SetConsentBasis(v string)
- func (o *CreateEventRequestAnyOf) SetConsentMode(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf) SetEventId(v string)
- func (o *CreateEventRequestAnyOf) SetEventName(v string)
- func (o *CreateEventRequestAnyOf) SetEventSource(v string)
- func (o *CreateEventRequestAnyOf) SetEventTime(v CreateEventRequestAnyOfEventTime)
- func (o *CreateEventRequestAnyOf) SetParentEventId(v string)
- func (o *CreateEventRequestAnyOf) SetTcf(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf) SetUserData(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf) SetValueData(v CreateEventRequestAnyOfValueData)
- func (o *CreateEventRequestAnyOf) SetVisitorId(v string)
- func (o CreateEventRequestAnyOf) ToMap() (map[string]interface{}, error)
- func (o *CreateEventRequestAnyOf) UnmarshalJSON(data []byte) (err error)
- type CreateEventRequestAnyOf1
- func (o *CreateEventRequestAnyOf1) GetActionSource() string
- func (o *CreateEventRequestAnyOf1) GetActionSourceOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetClickIds() map[string]*interface{}
- func (o *CreateEventRequestAnyOf1) GetClickIdsOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf1) GetConsent() map[string]*interface{}
- func (o *CreateEventRequestAnyOf1) GetConsentBasis() string
- func (o *CreateEventRequestAnyOf1) GetConsentBasisOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetConsentMode() map[string]*interface{}
- func (o *CreateEventRequestAnyOf1) GetConsentModeOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf1) GetConsentOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf1) GetEventId() string
- func (o *CreateEventRequestAnyOf1) GetEventIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetEventName() string
- func (o *CreateEventRequestAnyOf1) GetEventNameOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetEventSource() string
- func (o *CreateEventRequestAnyOf1) GetEventSourceOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetEventTime() CreateEventRequestAnyOfEventTime
- func (o *CreateEventRequestAnyOf1) GetEventTimeOk() (*CreateEventRequestAnyOfEventTime, bool)
- func (o *CreateEventRequestAnyOf1) GetParentEventId() string
- func (o *CreateEventRequestAnyOf1) GetParentEventIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) GetTcf() map[string]*interface{}
- func (o *CreateEventRequestAnyOf1) GetTcfOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf1) GetUserData() map[string]*interface{}
- func (o *CreateEventRequestAnyOf1) GetUserDataOk() (map[string]*interface{}, bool)
- func (o *CreateEventRequestAnyOf1) GetValueData() CreateEventRequestAnyOfValueData
- func (o *CreateEventRequestAnyOf1) GetValueDataOk() (*CreateEventRequestAnyOfValueData, bool)
- func (o *CreateEventRequestAnyOf1) GetVisitorId() string
- func (o *CreateEventRequestAnyOf1) GetVisitorIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOf1) HasActionSource() bool
- func (o *CreateEventRequestAnyOf1) HasClickIds() bool
- func (o *CreateEventRequestAnyOf1) HasConsent() bool
- func (o *CreateEventRequestAnyOf1) HasConsentMode() bool
- func (o *CreateEventRequestAnyOf1) HasEventId() bool
- func (o *CreateEventRequestAnyOf1) HasEventSource() bool
- func (o *CreateEventRequestAnyOf1) HasEventTime() bool
- func (o *CreateEventRequestAnyOf1) HasParentEventId() bool
- func (o *CreateEventRequestAnyOf1) HasTcf() bool
- func (o *CreateEventRequestAnyOf1) HasUserData() bool
- func (o *CreateEventRequestAnyOf1) HasValueData() bool
- func (o *CreateEventRequestAnyOf1) HasVisitorId() bool
- func (o CreateEventRequestAnyOf1) MarshalJSON() ([]byte, error)
- func (o *CreateEventRequestAnyOf1) SetActionSource(v string)
- func (o *CreateEventRequestAnyOf1) SetClickIds(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf1) SetConsent(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf1) SetConsentBasis(v string)
- func (o *CreateEventRequestAnyOf1) SetConsentMode(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf1) SetEventId(v string)
- func (o *CreateEventRequestAnyOf1) SetEventName(v string)
- func (o *CreateEventRequestAnyOf1) SetEventSource(v string)
- func (o *CreateEventRequestAnyOf1) SetEventTime(v CreateEventRequestAnyOfEventTime)
- func (o *CreateEventRequestAnyOf1) SetParentEventId(v string)
- func (o *CreateEventRequestAnyOf1) SetTcf(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf1) SetUserData(v map[string]*interface{})
- func (o *CreateEventRequestAnyOf1) SetValueData(v CreateEventRequestAnyOfValueData)
- func (o *CreateEventRequestAnyOf1) SetVisitorId(v string)
- func (o CreateEventRequestAnyOf1) ToMap() (map[string]interface{}, error)
- func (o *CreateEventRequestAnyOf1) UnmarshalJSON(data []byte) (err error)
- type CreateEventRequestAnyOfEventTime
- type CreateEventRequestAnyOfValueData
- func (o *CreateEventRequestAnyOfValueData) GetContents() []interface{}
- func (o *CreateEventRequestAnyOfValueData) GetContentsOk() ([]interface{}, bool)
- func (o *CreateEventRequestAnyOfValueData) GetCurrency() string
- func (o *CreateEventRequestAnyOfValueData) GetCurrencyOk() (*string, bool)
- func (o *CreateEventRequestAnyOfValueData) GetNumItems() int32
- func (o *CreateEventRequestAnyOfValueData) GetNumItemsOk() (*int32, bool)
- func (o *CreateEventRequestAnyOfValueData) GetOrderId() string
- func (o *CreateEventRequestAnyOfValueData) GetOrderIdOk() (*string, bool)
- func (o *CreateEventRequestAnyOfValueData) GetValue() string
- func (o *CreateEventRequestAnyOfValueData) GetValueOk() (*string, bool)
- func (o *CreateEventRequestAnyOfValueData) HasContents() bool
- func (o *CreateEventRequestAnyOfValueData) HasCurrency() bool
- func (o *CreateEventRequestAnyOfValueData) HasNumItems() bool
- func (o *CreateEventRequestAnyOfValueData) HasOrderId() bool
- func (o *CreateEventRequestAnyOfValueData) HasValue() bool
- func (o CreateEventRequestAnyOfValueData) MarshalJSON() ([]byte, error)
- func (o *CreateEventRequestAnyOfValueData) SetContents(v []interface{})
- func (o *CreateEventRequestAnyOfValueData) SetCurrency(v string)
- func (o *CreateEventRequestAnyOfValueData) SetNumItems(v int32)
- func (o *CreateEventRequestAnyOfValueData) SetOrderId(v string)
- func (o *CreateEventRequestAnyOfValueData) SetValue(v string)
- func (o CreateEventRequestAnyOfValueData) ToMap() (map[string]interface{}, error)
- func (o *CreateEventRequestAnyOfValueData) UnmarshalJSON(data []byte) (err error)
- type CreateSandboxKey201Response
- func (o *CreateSandboxKey201Response) GetApiKey() string
- func (o *CreateSandboxKey201Response) GetApiKeyOk() (*string, bool)
- func (o *CreateSandboxKey201Response) GetExpiresAt() string
- func (o *CreateSandboxKey201Response) GetExpiresAtOk() (*string, bool)
- func (o *CreateSandboxKey201Response) GetExpiresIn() int32
- func (o *CreateSandboxKey201Response) GetExpiresInOk() (*int32, bool)
- func (o *CreateSandboxKey201Response) GetProductionAccess() bool
- func (o *CreateSandboxKey201Response) GetProductionAccessOk() (*bool, bool)
- func (o *CreateSandboxKey201Response) GetScope() string
- func (o *CreateSandboxKey201Response) GetScopeOk() (*string, bool)
- func (o *CreateSandboxKey201Response) GetTokenType() string
- func (o *CreateSandboxKey201Response) GetTokenTypeOk() (*string, bool)
- func (o *CreateSandboxKey201Response) GetUse() CreateSandboxKey201ResponseUse
- func (o *CreateSandboxKey201Response) GetUseOk() (*CreateSandboxKey201ResponseUse, bool)
- func (o CreateSandboxKey201Response) MarshalJSON() ([]byte, error)
- func (o *CreateSandboxKey201Response) SetApiKey(v string)
- func (o *CreateSandboxKey201Response) SetExpiresAt(v string)
- func (o *CreateSandboxKey201Response) SetExpiresIn(v int32)
- func (o *CreateSandboxKey201Response) SetProductionAccess(v bool)
- func (o *CreateSandboxKey201Response) SetScope(v string)
- func (o *CreateSandboxKey201Response) SetTokenType(v string)
- func (o *CreateSandboxKey201Response) SetUse(v CreateSandboxKey201ResponseUse)
- func (o CreateSandboxKey201Response) ToMap() (map[string]interface{}, error)
- func (o *CreateSandboxKey201Response) UnmarshalJSON(data []byte) (err error)
- type CreateSandboxKey201ResponseUse
- func (o *CreateSandboxKey201ResponseUse) GetAuthorization() string
- func (o *CreateSandboxKey201ResponseUse) GetAuthorizationOk() (*string, bool)
- func (o *CreateSandboxKey201ResponseUse) GetMethod() string
- func (o *CreateSandboxKey201ResponseUse) GetMethodOk() (*string, bool)
- func (o *CreateSandboxKey201ResponseUse) GetUrl() string
- func (o *CreateSandboxKey201ResponseUse) GetUrlOk() (*string, bool)
- func (o CreateSandboxKey201ResponseUse) MarshalJSON() ([]byte, error)
- func (o *CreateSandboxKey201ResponseUse) SetAuthorization(v string)
- func (o *CreateSandboxKey201ResponseUse) SetMethod(v string)
- func (o *CreateSandboxKey201ResponseUse) SetUrl(v string)
- func (o CreateSandboxKey201ResponseUse) ToMap() (map[string]interface{}, error)
- func (o *CreateSandboxKey201ResponseUse) UnmarshalJSON(data []byte) (err error)
- type DeleteUserData200Response
- func (o *DeleteUserData200Response) GetCompletedAt() string
- func (o *DeleteUserData200Response) GetCompletedAtOk() (*string, bool)
- func (o *DeleteUserData200Response) GetDeletionRequestId() string
- func (o *DeleteUserData200Response) GetDeletionRequestIdOk() (*string, bool)
- func (o *DeleteUserData200Response) GetDuplicate() bool
- func (o *DeleteUserData200Response) GetDuplicateOk() (*bool, bool)
- func (o *DeleteUserData200Response) GetEventsUpdated() int32
- func (o *DeleteUserData200Response) GetEventsUpdatedOk() (*int32, bool)
- func (o *DeleteUserData200Response) GetSessionsUpdated() int32
- func (o *DeleteUserData200Response) GetSessionsUpdatedOk() (*int32, bool)
- func (o DeleteUserData200Response) MarshalJSON() ([]byte, error)
- func (o *DeleteUserData200Response) SetCompletedAt(v string)
- func (o *DeleteUserData200Response) SetDeletionRequestId(v string)
- func (o *DeleteUserData200Response) SetDuplicate(v bool)
- func (o *DeleteUserData200Response) SetEventsUpdated(v int32)
- func (o *DeleteUserData200Response) SetSessionsUpdated(v int32)
- func (o DeleteUserData200Response) ToMap() (map[string]interface{}, error)
- func (o *DeleteUserData200Response) UnmarshalJSON(data []byte) (err error)
- type DeleteUserDataRequest
- func (o *DeleteUserDataRequest) GetIdentifierHash() string
- func (o *DeleteUserDataRequest) GetIdentifierHashOk() (*string, bool)
- func (o *DeleteUserDataRequest) GetIdentifierType() string
- func (o *DeleteUserDataRequest) GetIdentifierTypeOk() (*string, bool)
- func (o DeleteUserDataRequest) MarshalJSON() ([]byte, error)
- func (o *DeleteUserDataRequest) SetIdentifierHash(v string)
- func (o *DeleteUserDataRequest) SetIdentifierType(v string)
- func (o DeleteUserDataRequest) ToMap() (map[string]interface{}, error)
- func (o *DeleteUserDataRequest) UnmarshalJSON(data []byte) (err error)
- type DeliveryStatus
- type Destination
- func (o *Destination) GetConfig() []interface{}
- func (o *Destination) GetConfigOk() ([]interface{}, bool)
- func (o *Destination) GetCreatedAt() time.Time
- func (o *Destination) GetCreatedAtOk() (*time.Time, bool)
- func (o *Destination) GetCredentialSource() DestinationCredentialSource
- func (o *Destination) GetCredentialSourceOk() (*DestinationCredentialSource, bool)
- func (o *Destination) GetId() string
- func (o *Destination) GetIdOk() (*string, bool)
- func (o *Destination) GetPlatformAdAccountId() int32
- func (o *Destination) GetPlatformAdAccountIdOk() (*int32, bool)
- func (o *Destination) GetSignalTrackerId() string
- func (o *Destination) GetSignalTrackerIdOk() (*string, bool)
- func (o *Destination) GetStatus() DestinationStatus
- func (o *Destination) GetStatusOk() (*DestinationStatus, bool)
- func (o *Destination) GetType() DestinationType
- func (o *Destination) GetTypeOk() (*DestinationType, bool)
- func (o *Destination) GetUpdatedAt() time.Time
- func (o *Destination) GetUpdatedAtOk() (*time.Time, bool)
- func (o Destination) MarshalJSON() ([]byte, error)
- func (o *Destination) SetConfig(v []interface{})
- func (o *Destination) SetCreatedAt(v time.Time)
- func (o *Destination) SetCredentialSource(v DestinationCredentialSource)
- func (o *Destination) SetId(v string)
- func (o *Destination) SetPlatformAdAccountId(v int32)
- func (o *Destination) SetSignalTrackerId(v string)
- func (o *Destination) SetStatus(v DestinationStatus)
- func (o *Destination) SetType(v DestinationType)
- func (o *Destination) SetUpdatedAt(v time.Time)
- func (o Destination) ToMap() (map[string]interface{}, error)
- func (o *Destination) UnmarshalJSON(data []byte) (err error)
- type DestinationCredentialSource
- type DestinationStatus
- type DestinationType
- type EmqSnapshot
- func (o *EmqSnapshot) GetAlerted() bool
- func (o *EmqSnapshot) GetAlertedOk() (*bool, bool)
- func (o *EmqSnapshot) GetCreatedAt() time.Time
- func (o *EmqSnapshot) GetCreatedAtOk() (*time.Time, bool)
- func (o *EmqSnapshot) GetDestinationId() string
- func (o *EmqSnapshot) GetDestinationIdOk() (*string, bool)
- func (o *EmqSnapshot) GetId() int32
- func (o *EmqSnapshot) GetIdOk() (*int32, bool)
- func (o *EmqSnapshot) GetMeasuredAt() time.Time
- func (o *EmqSnapshot) GetMeasuredAtOk() (*time.Time, bool)
- func (o *EmqSnapshot) GetPlatformResponse() []interface{}
- func (o *EmqSnapshot) GetPlatformResponseOk() ([]interface{}, bool)
- func (o *EmqSnapshot) GetScore() float32
- func (o *EmqSnapshot) GetScoreOk() (*float32, bool)
- func (o *EmqSnapshot) GetSignalTrackerId() string
- func (o *EmqSnapshot) GetSignalTrackerIdOk() (*string, bool)
- func (o *EmqSnapshot) GetUpdatedAt() time.Time
- func (o *EmqSnapshot) GetUpdatedAtOk() (*time.Time, bool)
- func (o *EmqSnapshot) GetWeekOverWeekChange() float32
- func (o *EmqSnapshot) GetWeekOverWeekChangeOk() (*float32, bool)
- func (o EmqSnapshot) MarshalJSON() ([]byte, error)
- func (o *EmqSnapshot) SetAlerted(v bool)
- func (o *EmqSnapshot) SetCreatedAt(v time.Time)
- func (o *EmqSnapshot) SetDestinationId(v string)
- func (o *EmqSnapshot) SetId(v int32)
- func (o *EmqSnapshot) SetMeasuredAt(v time.Time)
- func (o *EmqSnapshot) SetPlatformResponse(v []interface{})
- func (o *EmqSnapshot) SetScore(v float32)
- func (o *EmqSnapshot) SetSignalTrackerId(v string)
- func (o *EmqSnapshot) SetUpdatedAt(v time.Time)
- func (o *EmqSnapshot) SetWeekOverWeekChange(v float32)
- func (o EmqSnapshot) ToMap() (map[string]interface{}, error)
- func (o *EmqSnapshot) UnmarshalJSON(data []byte) (err error)
- type ErrorMessage
- func (o *ErrorMessage) GetMessage() string
- func (o *ErrorMessage) GetMessageOk() (*string, bool)
- func (o ErrorMessage) MarshalJSON() ([]byte, error)
- func (o *ErrorMessage) SetMessage(v string)
- func (o ErrorMessage) ToMap() (map[string]interface{}, error)
- func (o *ErrorMessage) UnmarshalJSON(data []byte) (err error)
- type Event
- func (o *Event) GetActionSource() string
- func (o *Event) GetActionSourceOk() (*string, bool)
- func (o *Event) GetAttributionJoin() string
- func (o *Event) GetAttributionJoinOk() (*string, bool)
- func (o *Event) GetClickIds() string
- func (o *Event) GetClickIdsOk() (*string, bool)
- func (o *Event) GetConsent() string
- func (o *Event) GetConsentBasis() string
- func (o *Event) GetConsentBasisOk() (*string, bool)
- func (o *Event) GetConsentNormalizationVersion() string
- func (o *Event) GetConsentNormalizationVersionOk() (*string, bool)
- func (o *Event) GetConsentOk() (*string, bool)
- func (o *Event) GetCreatedAt() time.Time
- func (o *Event) GetCreatedAtOk() (*time.Time, bool)
- func (o *Event) GetDeliveries() []interface{}
- func (o *Event) GetDeliveriesOk() ([]interface{}, bool)
- func (o *Event) GetEnforcementScope() string
- func (o *Event) GetEnforcementScopeOk() (*string, bool)
- func (o *Event) GetEventClass() string
- func (o *Event) GetEventClassOk() (*string, bool)
- func (o *Event) GetEventName() string
- func (o *Event) GetEventNameOk() (*string, bool)
- func (o *Event) GetEventSource() string
- func (o *Event) GetEventSourceOk() (*string, bool)
- func (o *Event) GetEventTime() time.Time
- func (o *Event) GetEventTimeOk() (*time.Time, bool)
- func (o *Event) GetId() string
- func (o *Event) GetIdOk() (*string, bool)
- func (o *Event) GetMeasurementClass() string
- func (o *Event) GetMeasurementClassOk() (*string, bool)
- func (o *Event) GetOrderId() string
- func (o *Event) GetOrderIdOk() (*string, bool)
- func (o *Event) GetParentEventId() string
- func (o *Event) GetParentEventIdOk() (*string, bool)
- func (o *Event) GetPayloadExpired() bool
- func (o *Event) GetPayloadExpiredOk() (*bool, bool)
- func (o *Event) GetPolicyClass() JurisdictionPolicyClass
- func (o *Event) GetPolicyClassOk() (*JurisdictionPolicyClass, bool)
- func (o *Event) GetSession() string
- func (o *Event) GetSessionOk() (*string, bool)
- func (o *Event) GetSignalTrackerId() string
- func (o *Event) GetSignalTrackerIdOk() (*string, bool)
- func (o *Event) GetTrafficClass() TrafficClass
- func (o *Event) GetTrafficClassOk() (*TrafficClass, bool)
- func (o *Event) GetUserDataHashed() string
- func (o *Event) GetUserDataHashedOk() (*string, bool)
- func (o *Event) GetValueAmount() int32
- func (o *Event) GetValueAmountOk() (*int32, bool)
- func (o *Event) GetValueCurrency() string
- func (o *Event) GetValueCurrencyOk() (*string, bool)
- func (o *Event) GetValueData() string
- func (o *Event) GetValueDataOk() (*string, bool)
- func (o Event) MarshalJSON() ([]byte, error)
- func (o *Event) SetActionSource(v string)
- func (o *Event) SetAttributionJoin(v string)
- func (o *Event) SetClickIds(v string)
- func (o *Event) SetConsent(v string)
- func (o *Event) SetConsentBasis(v string)
- func (o *Event) SetConsentNormalizationVersion(v string)
- func (o *Event) SetCreatedAt(v time.Time)
- func (o *Event) SetDeliveries(v []interface{})
- func (o *Event) SetEnforcementScope(v string)
- func (o *Event) SetEventClass(v string)
- func (o *Event) SetEventName(v string)
- func (o *Event) SetEventSource(v string)
- func (o *Event) SetEventTime(v time.Time)
- func (o *Event) SetId(v string)
- func (o *Event) SetMeasurementClass(v string)
- func (o *Event) SetOrderId(v string)
- func (o *Event) SetParentEventId(v string)
- func (o *Event) SetPayloadExpired(v bool)
- func (o *Event) SetPolicyClass(v JurisdictionPolicyClass)
- func (o *Event) SetSession(v string)
- func (o *Event) SetSignalTrackerId(v string)
- func (o *Event) SetTrafficClass(v TrafficClass)
- func (o *Event) SetUserDataHashed(v string)
- func (o *Event) SetValueAmount(v int32)
- func (o *Event) SetValueCurrency(v string)
- func (o *Event) SetValueData(v string)
- func (o Event) ToMap() (map[string]interface{}, error)
- func (o *Event) UnmarshalJSON(data []byte) (err error)
- type EventAPIService
- func (a *EventAPIService) CreateEvent(ctx context.Context) ApiCreateEventRequest
- func (a *EventAPIService) CreateEventExecute(r ApiCreateEventRequest) (*CreateEvent200Response, *http.Response, error)
- func (a *EventAPIService) GetEvent(ctx context.Context, event string) ApiGetEventRequest
- func (a *EventAPIService) GetEventExecute(r ApiGetEventRequest) (*GetEvent200Response, *http.Response, error)
- func (a *EventAPIService) VerifySignalIngestion(ctx context.Context) ApiVerifySignalIngestionRequest
- func (a *EventAPIService) VerifySignalIngestionExecute(r ApiVerifySignalIngestionRequest) (*CreateEvent200Response, *http.Response, error)
- type GenericOpenAPIError
- type GetEmqReport200Response
- func (o *GetEmqReport200Response) GetSnapshots() []GetEmqReport200ResponseSnapshotsInner
- func (o *GetEmqReport200Response) GetSnapshotsOk() ([]GetEmqReport200ResponseSnapshotsInner, bool)
- func (o GetEmqReport200Response) MarshalJSON() ([]byte, error)
- func (o *GetEmqReport200Response) SetSnapshots(v []GetEmqReport200ResponseSnapshotsInner)
- func (o GetEmqReport200Response) ToMap() (map[string]interface{}, error)
- func (o *GetEmqReport200Response) UnmarshalJSON(data []byte) (err error)
- type GetEmqReport200ResponseSnapshotsInner
- func (o *GetEmqReport200ResponseSnapshotsInner) GetAlerted() bool
- func (o *GetEmqReport200ResponseSnapshotsInner) GetAlertedOk() (*bool, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetCreatedAt() string
- func (o *GetEmqReport200ResponseSnapshotsInner) GetCreatedAtOk() (*string, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetDestinationId() string
- func (o *GetEmqReport200ResponseSnapshotsInner) GetDestinationIdOk() (*string, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetId() int32
- func (o *GetEmqReport200ResponseSnapshotsInner) GetIdOk() (*int32, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetMeasuredAt() string
- func (o *GetEmqReport200ResponseSnapshotsInner) GetMeasuredAtOk() (*string, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetPlatformResponse() interface{}
- func (o *GetEmqReport200ResponseSnapshotsInner) GetPlatformResponseOk() (*interface{}, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetScore() float32
- func (o *GetEmqReport200ResponseSnapshotsInner) GetScoreOk() (*float32, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerId() string
- func (o *GetEmqReport200ResponseSnapshotsInner) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetUpdatedAt() string
- func (o *GetEmqReport200ResponseSnapshotsInner) GetUpdatedAtOk() (*string, bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChange() float32
- func (o *GetEmqReport200ResponseSnapshotsInner) GetWeekOverWeekChangeOk() (*float32, bool)
- func (o GetEmqReport200ResponseSnapshotsInner) MarshalJSON() ([]byte, error)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetAlerted(v bool)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetCreatedAt(v string)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetDestinationId(v string)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetId(v int32)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetMeasuredAt(v string)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetPlatformResponse(v interface{})
- func (o *GetEmqReport200ResponseSnapshotsInner) SetScore(v float32)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetSignalTrackerId(v string)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetUpdatedAt(v string)
- func (o *GetEmqReport200ResponseSnapshotsInner) SetWeekOverWeekChange(v float32)
- func (o GetEmqReport200ResponseSnapshotsInner) ToMap() (map[string]interface{}, error)
- func (o *GetEmqReport200ResponseSnapshotsInner) UnmarshalJSON(data []byte) (err error)
- type GetEvent200Response
- func (o *GetEvent200Response) GetDeliveries() []GetEvent200ResponseDeliveriesInner
- func (o *GetEvent200Response) GetDeliveriesOk() ([]GetEvent200ResponseDeliveriesInner, bool)
- func (o *GetEvent200Response) GetEvent() GetEvent200ResponseEvent
- func (o *GetEvent200Response) GetEventOk() (*GetEvent200ResponseEvent, bool)
- func (o *GetEvent200Response) GetLineage() GetEvent200ResponseLineage
- func (o *GetEvent200Response) GetLineageOk() (*GetEvent200ResponseLineage, bool)
- func (o GetEvent200Response) MarshalJSON() ([]byte, error)
- func (o *GetEvent200Response) SetDeliveries(v []GetEvent200ResponseDeliveriesInner)
- func (o *GetEvent200Response) SetEvent(v GetEvent200ResponseEvent)
- func (o *GetEvent200Response) SetLineage(v GetEvent200ResponseLineage)
- func (o GetEvent200Response) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200Response) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseDeliveriesInner
- func (o *GetEvent200ResponseDeliveriesInner) GetAttemptCount() int32
- func (o *GetEvent200ResponseDeliveriesInner) GetAttemptCountOk() (*int32, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetCreatedAt() string
- func (o *GetEvent200ResponseDeliveriesInner) GetCreatedAtOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetDestinationId() string
- func (o *GetEvent200ResponseDeliveriesInner) GetDestinationIdOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetEventId() string
- func (o *GetEvent200ResponseDeliveriesInner) GetEventIdOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetExplanation() string
- func (o *GetEvent200ResponseDeliveriesInner) GetExplanationOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetId() int32
- func (o *GetEvent200ResponseDeliveriesInner) GetIdOk() (*int32, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetIsTest() bool
- func (o *GetEvent200ResponseDeliveriesInner) GetIsTestOk() (*bool, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetLastError() interface{}
- func (o *GetEvent200ResponseDeliveriesInner) GetLastErrorOk() (*interface{}, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetNextAttemptAt() string
- func (o *GetEvent200ResponseDeliveriesInner) GetNextAttemptAtOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetPlatformResponse() interface{}
- func (o *GetEvent200ResponseDeliveriesInner) GetPlatformResponseOk() (*interface{}, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetPlatformTraceId() string
- func (o *GetEvent200ResponseDeliveriesInner) GetPlatformTraceIdOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetSignalTrackerId() string
- func (o *GetEvent200ResponseDeliveriesInner) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetStatus() DeliveryStatus
- func (o *GetEvent200ResponseDeliveriesInner) GetStatusOk() (*DeliveryStatus, bool)
- func (o *GetEvent200ResponseDeliveriesInner) GetUpdatedAt() string
- func (o *GetEvent200ResponseDeliveriesInner) GetUpdatedAtOk() (*string, bool)
- func (o GetEvent200ResponseDeliveriesInner) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseDeliveriesInner) SetAttemptCount(v int32)
- func (o *GetEvent200ResponseDeliveriesInner) SetCreatedAt(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetDestinationId(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetEventId(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetExplanation(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetId(v int32)
- func (o *GetEvent200ResponseDeliveriesInner) SetIsTest(v bool)
- func (o *GetEvent200ResponseDeliveriesInner) SetLastError(v interface{})
- func (o *GetEvent200ResponseDeliveriesInner) SetNextAttemptAt(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetPlatformResponse(v interface{})
- func (o *GetEvent200ResponseDeliveriesInner) SetPlatformTraceId(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetSignalTrackerId(v string)
- func (o *GetEvent200ResponseDeliveriesInner) SetStatus(v DeliveryStatus)
- func (o *GetEvent200ResponseDeliveriesInner) SetUpdatedAt(v string)
- func (o GetEvent200ResponseDeliveriesInner) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseDeliveriesInner) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseEvent
- func (o *GetEvent200ResponseEvent) GetActionSource() string
- func (o *GetEvent200ResponseEvent) GetActionSourceOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetAttributionJoin() string
- func (o *GetEvent200ResponseEvent) GetAttributionJoinOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetClickIds() interface{}
- func (o *GetEvent200ResponseEvent) GetClickIdsOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEvent) GetConsent() interface{}
- func (o *GetEvent200ResponseEvent) GetConsentBasis() string
- func (o *GetEvent200ResponseEvent) GetConsentBasisOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetConsentNormalizationVersion() string
- func (o *GetEvent200ResponseEvent) GetConsentNormalizationVersionOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetConsentOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEvent) GetCreatedAt() string
- func (o *GetEvent200ResponseEvent) GetCreatedAtOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetDeliveries() []GetEvent200ResponseEventDeliveriesInner
- func (o *GetEvent200ResponseEvent) GetDeliveriesOk() ([]GetEvent200ResponseEventDeliveriesInner, bool)
- func (o *GetEvent200ResponseEvent) GetEnforcementScope() string
- func (o *GetEvent200ResponseEvent) GetEnforcementScopeOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetEventClass() string
- func (o *GetEvent200ResponseEvent) GetEventClassOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetEventName() string
- func (o *GetEvent200ResponseEvent) GetEventNameOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetEventSource() string
- func (o *GetEvent200ResponseEvent) GetEventSourceOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetEventTime() string
- func (o *GetEvent200ResponseEvent) GetEventTimeOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetId() string
- func (o *GetEvent200ResponseEvent) GetIdOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetMeasurementClass() string
- func (o *GetEvent200ResponseEvent) GetMeasurementClassOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetOrderId() string
- func (o *GetEvent200ResponseEvent) GetOrderIdOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetParentEventId() string
- func (o *GetEvent200ResponseEvent) GetParentEventIdOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetPayloadExpired() bool
- func (o *GetEvent200ResponseEvent) GetPayloadExpiredOk() (*bool, bool)
- func (o *GetEvent200ResponseEvent) GetSession() interface{}
- func (o *GetEvent200ResponseEvent) GetSessionOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEvent) GetSignalTrackerId() string
- func (o *GetEvent200ResponseEvent) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetUserDataHashed() interface{}
- func (o *GetEvent200ResponseEvent) GetUserDataHashedOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEvent) GetValueAmount() int32
- func (o *GetEvent200ResponseEvent) GetValueAmountOk() (*int32, bool)
- func (o *GetEvent200ResponseEvent) GetValueCurrency() string
- func (o *GetEvent200ResponseEvent) GetValueCurrencyOk() (*string, bool)
- func (o *GetEvent200ResponseEvent) GetValueData() interface{}
- func (o *GetEvent200ResponseEvent) GetValueDataOk() (*interface{}, bool)
- func (o GetEvent200ResponseEvent) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseEvent) SetActionSource(v string)
- func (o *GetEvent200ResponseEvent) SetAttributionJoin(v string)
- func (o *GetEvent200ResponseEvent) SetClickIds(v interface{})
- func (o *GetEvent200ResponseEvent) SetConsent(v interface{})
- func (o *GetEvent200ResponseEvent) SetConsentBasis(v string)
- func (o *GetEvent200ResponseEvent) SetConsentNormalizationVersion(v string)
- func (o *GetEvent200ResponseEvent) SetCreatedAt(v string)
- func (o *GetEvent200ResponseEvent) SetDeliveries(v []GetEvent200ResponseEventDeliveriesInner)
- func (o *GetEvent200ResponseEvent) SetEnforcementScope(v string)
- func (o *GetEvent200ResponseEvent) SetEventClass(v string)
- func (o *GetEvent200ResponseEvent) SetEventName(v string)
- func (o *GetEvent200ResponseEvent) SetEventSource(v string)
- func (o *GetEvent200ResponseEvent) SetEventTime(v string)
- func (o *GetEvent200ResponseEvent) SetId(v string)
- func (o *GetEvent200ResponseEvent) SetMeasurementClass(v string)
- func (o *GetEvent200ResponseEvent) SetOrderId(v string)
- func (o *GetEvent200ResponseEvent) SetParentEventId(v string)
- func (o *GetEvent200ResponseEvent) SetPayloadExpired(v bool)
- func (o *GetEvent200ResponseEvent) SetSession(v interface{})
- func (o *GetEvent200ResponseEvent) SetSignalTrackerId(v string)
- func (o *GetEvent200ResponseEvent) SetUserDataHashed(v interface{})
- func (o *GetEvent200ResponseEvent) SetValueAmount(v int32)
- func (o *GetEvent200ResponseEvent) SetValueCurrency(v string)
- func (o *GetEvent200ResponseEvent) SetValueData(v interface{})
- func (o GetEvent200ResponseEvent) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseEvent) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseEventDeliveriesInner
- func (o *GetEvent200ResponseEventDeliveriesInner) GetAttemptCount() int32
- func (o *GetEvent200ResponseEventDeliveriesInner) GetAttemptCountOk() (*int32, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetCreatedAt() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetCreatedAtOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetDestinationId() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetDestinationIdOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetEventId() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetEventIdOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetId() int32
- func (o *GetEvent200ResponseEventDeliveriesInner) GetIdOk() (*int32, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetIsTest() bool
- func (o *GetEvent200ResponseEventDeliveriesInner) GetIsTestOk() (*bool, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetLastError() interface{}
- func (o *GetEvent200ResponseEventDeliveriesInner) GetLastErrorOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAt() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetNextAttemptAtOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformResponse() interface{}
- func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformResponseOk() (*interface{}, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceId() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetPlatformTraceIdOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerId() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetStatus() DeliveryStatus
- func (o *GetEvent200ResponseEventDeliveriesInner) GetStatusOk() (*DeliveryStatus, bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) GetUpdatedAt() string
- func (o *GetEvent200ResponseEventDeliveriesInner) GetUpdatedAtOk() (*string, bool)
- func (o GetEvent200ResponseEventDeliveriesInner) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetAttemptCount(v int32)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetCreatedAt(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetDestinationId(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetEventId(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetId(v int32)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetIsTest(v bool)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetLastError(v interface{})
- func (o *GetEvent200ResponseEventDeliveriesInner) SetNextAttemptAt(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetPlatformResponse(v interface{})
- func (o *GetEvent200ResponseEventDeliveriesInner) SetPlatformTraceId(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetSignalTrackerId(v string)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetStatus(v DeliveryStatus)
- func (o *GetEvent200ResponseEventDeliveriesInner) SetUpdatedAt(v string)
- func (o GetEvent200ResponseEventDeliveriesInner) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseEventDeliveriesInner) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseLineage
- func (o *GetEvent200ResponseLineage) GetChildren() []GetEvent200ResponseLineageChildrenInner
- func (o *GetEvent200ResponseLineage) GetChildrenOk() ([]GetEvent200ResponseLineageChildrenInner, bool)
- func (o *GetEvent200ResponseLineage) GetParent() GetEvent200ResponseLineageParent
- func (o *GetEvent200ResponseLineage) GetParentOk() (*GetEvent200ResponseLineageParent, bool)
- func (o GetEvent200ResponseLineage) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseLineage) SetChildren(v []GetEvent200ResponseLineageChildrenInner)
- func (o *GetEvent200ResponseLineage) SetParent(v GetEvent200ResponseLineageParent)
- func (o GetEvent200ResponseLineage) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseLineage) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseLineageChildrenInner
- func (o *GetEvent200ResponseLineageChildrenInner) GetActionSource() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetActionSourceOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetAttributionJoin() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetAttributionJoinOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetClickIds() interface{}
- func (o *GetEvent200ResponseLineageChildrenInner) GetClickIdsOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsent() interface{}
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsentBasis() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsentBasisOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersion() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsentNormalizationVersionOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetConsentOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetCreatedAt() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetCreatedAtOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetEnforcementScope() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetEnforcementScopeOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventClass() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventClassOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventName() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventNameOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventSource() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventSourceOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventTime() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetEventTimeOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetId() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetMeasurementClass() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetMeasurementClassOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetOrderId() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetOrderIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetParentEventId() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetParentEventIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetPayloadExpired() bool
- func (o *GetEvent200ResponseLineageChildrenInner) GetPayloadExpiredOk() (*bool, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetSession() interface{}
- func (o *GetEvent200ResponseLineageChildrenInner) GetSessionOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetSignalTrackerId() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetUserDataHashed() interface{}
- func (o *GetEvent200ResponseLineageChildrenInner) GetUserDataHashedOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueAmount() int32
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueAmountOk() (*int32, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueCurrency() string
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueCurrencyOk() (*string, bool)
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueData() interface{}
- func (o *GetEvent200ResponseLineageChildrenInner) GetValueDataOk() (*interface{}, bool)
- func (o GetEvent200ResponseLineageChildrenInner) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseLineageChildrenInner) SetActionSource(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetAttributionJoin(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetClickIds(v interface{})
- func (o *GetEvent200ResponseLineageChildrenInner) SetConsent(v interface{})
- func (o *GetEvent200ResponseLineageChildrenInner) SetConsentBasis(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetConsentNormalizationVersion(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetCreatedAt(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetEnforcementScope(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetEventClass(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetEventName(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetEventSource(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetEventTime(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetId(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetMeasurementClass(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetOrderId(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetParentEventId(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetPayloadExpired(v bool)
- func (o *GetEvent200ResponseLineageChildrenInner) SetSession(v interface{})
- func (o *GetEvent200ResponseLineageChildrenInner) SetSignalTrackerId(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetUserDataHashed(v interface{})
- func (o *GetEvent200ResponseLineageChildrenInner) SetValueAmount(v int32)
- func (o *GetEvent200ResponseLineageChildrenInner) SetValueCurrency(v string)
- func (o *GetEvent200ResponseLineageChildrenInner) SetValueData(v interface{})
- func (o GetEvent200ResponseLineageChildrenInner) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseLineageChildrenInner) UnmarshalJSON(data []byte) (err error)
- type GetEvent200ResponseLineageParent
- func (o *GetEvent200ResponseLineageParent) GetActionSource() string
- func (o *GetEvent200ResponseLineageParent) GetActionSourceOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetAttributionJoin() string
- func (o *GetEvent200ResponseLineageParent) GetAttributionJoinOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetClickIds() interface{}
- func (o *GetEvent200ResponseLineageParent) GetClickIdsOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageParent) GetConsent() interface{}
- func (o *GetEvent200ResponseLineageParent) GetConsentBasis() string
- func (o *GetEvent200ResponseLineageParent) GetConsentBasisOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetConsentNormalizationVersion() string
- func (o *GetEvent200ResponseLineageParent) GetConsentNormalizationVersionOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetConsentOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageParent) GetCreatedAt() string
- func (o *GetEvent200ResponseLineageParent) GetCreatedAtOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetEnforcementScope() string
- func (o *GetEvent200ResponseLineageParent) GetEnforcementScopeOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetEventClass() string
- func (o *GetEvent200ResponseLineageParent) GetEventClassOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetEventName() string
- func (o *GetEvent200ResponseLineageParent) GetEventNameOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetEventSource() string
- func (o *GetEvent200ResponseLineageParent) GetEventSourceOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetEventTime() string
- func (o *GetEvent200ResponseLineageParent) GetEventTimeOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetId() string
- func (o *GetEvent200ResponseLineageParent) GetIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetMeasurementClass() string
- func (o *GetEvent200ResponseLineageParent) GetMeasurementClassOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetOrderId() string
- func (o *GetEvent200ResponseLineageParent) GetOrderIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetParentEventId() string
- func (o *GetEvent200ResponseLineageParent) GetParentEventIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetPayloadExpired() bool
- func (o *GetEvent200ResponseLineageParent) GetPayloadExpiredOk() (*bool, bool)
- func (o *GetEvent200ResponseLineageParent) GetSession() interface{}
- func (o *GetEvent200ResponseLineageParent) GetSessionOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageParent) GetSignalTrackerId() string
- func (o *GetEvent200ResponseLineageParent) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetUserDataHashed() interface{}
- func (o *GetEvent200ResponseLineageParent) GetUserDataHashedOk() (*interface{}, bool)
- func (o *GetEvent200ResponseLineageParent) GetValueAmount() int32
- func (o *GetEvent200ResponseLineageParent) GetValueAmountOk() (*int32, bool)
- func (o *GetEvent200ResponseLineageParent) GetValueCurrency() string
- func (o *GetEvent200ResponseLineageParent) GetValueCurrencyOk() (*string, bool)
- func (o *GetEvent200ResponseLineageParent) GetValueData() interface{}
- func (o *GetEvent200ResponseLineageParent) GetValueDataOk() (*interface{}, bool)
- func (o GetEvent200ResponseLineageParent) MarshalJSON() ([]byte, error)
- func (o *GetEvent200ResponseLineageParent) SetActionSource(v string)
- func (o *GetEvent200ResponseLineageParent) SetAttributionJoin(v string)
- func (o *GetEvent200ResponseLineageParent) SetClickIds(v interface{})
- func (o *GetEvent200ResponseLineageParent) SetConsent(v interface{})
- func (o *GetEvent200ResponseLineageParent) SetConsentBasis(v string)
- func (o *GetEvent200ResponseLineageParent) SetConsentNormalizationVersion(v string)
- func (o *GetEvent200ResponseLineageParent) SetCreatedAt(v string)
- func (o *GetEvent200ResponseLineageParent) SetEnforcementScope(v string)
- func (o *GetEvent200ResponseLineageParent) SetEventClass(v string)
- func (o *GetEvent200ResponseLineageParent) SetEventName(v string)
- func (o *GetEvent200ResponseLineageParent) SetEventSource(v string)
- func (o *GetEvent200ResponseLineageParent) SetEventTime(v string)
- func (o *GetEvent200ResponseLineageParent) SetId(v string)
- func (o *GetEvent200ResponseLineageParent) SetMeasurementClass(v string)
- func (o *GetEvent200ResponseLineageParent) SetOrderId(v string)
- func (o *GetEvent200ResponseLineageParent) SetParentEventId(v string)
- func (o *GetEvent200ResponseLineageParent) SetPayloadExpired(v bool)
- func (o *GetEvent200ResponseLineageParent) SetSession(v interface{})
- func (o *GetEvent200ResponseLineageParent) SetSignalTrackerId(v string)
- func (o *GetEvent200ResponseLineageParent) SetUserDataHashed(v interface{})
- func (o *GetEvent200ResponseLineageParent) SetValueAmount(v int32)
- func (o *GetEvent200ResponseLineageParent) SetValueCurrency(v string)
- func (o *GetEvent200ResponseLineageParent) SetValueData(v interface{})
- func (o GetEvent200ResponseLineageParent) ToMap() (map[string]interface{}, error)
- func (o *GetEvent200ResponseLineageParent) UnmarshalJSON(data []byte) (err error)
- type GetReconciliationReport200Response
- func (o *GetReconciliationReport200Response) GetDate() string
- func (o *GetReconciliationReport200Response) GetDateOk() (*string, bool)
- func (o *GetReconciliationReport200Response) GetReports() []GetReconciliationReport200ResponseReportsInner
- func (o *GetReconciliationReport200Response) GetReportsOk() ([]GetReconciliationReport200ResponseReportsInner, bool)
- func (o GetReconciliationReport200Response) MarshalJSON() ([]byte, error)
- func (o *GetReconciliationReport200Response) SetDate(v string)
- func (o *GetReconciliationReport200Response) SetReports(v []GetReconciliationReport200ResponseReportsInner)
- func (o GetReconciliationReport200Response) ToMap() (map[string]interface{}, error)
- func (o *GetReconciliationReport200Response) UnmarshalJSON(data []byte) (err error)
- type GetReconciliationReport200ResponseReportsInner
- func (o *GetReconciliationReport200ResponseReportsInner) GetAcceptedCount() int32
- func (o *GetReconciliationReport200ResponseReportsInner) GetAcceptedCountOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetBuckets() map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue
- func (o *GetReconciliationReport200ResponseReportsInner) GetBucketsOk() (map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetCreatedAt() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetCreatedAtOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetDestination() SetDestinationTestMode200ResponseDestination
- func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationId() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationIdOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationOk() (*SetDestinationTestMode200ResponseDestination, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetEventCounts() GetReconciliationReport200ResponseReportsInnerEventCounts
- func (o *GetReconciliationReport200ResponseReportsInner) GetEventCountsOk() (*GetReconciliationReport200ResponseReportsInnerEventCounts, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetId() int32
- func (o *GetReconciliationReport200ResponseReportsInner) GetIdOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetMetaCount() int32
- func (o *GetReconciliationReport200ResponseReportsInner) GetMetaCountOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetObservedGap() int32
- func (o *GetReconciliationReport200ResponseReportsInner) GetObservedGapOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetReportDate() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetReportDateOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetSignalTrackerId() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetSignalTrackerIdOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetStatus() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetStatusOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidual() int32
- func (o *GetReconciliationReport200ResponseReportsInner) GetUnexplainedResidualOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInner) GetUpdatedAt() string
- func (o *GetReconciliationReport200ResponseReportsInner) GetUpdatedAtOk() (*string, bool)
- func (o GetReconciliationReport200ResponseReportsInner) MarshalJSON() ([]byte, error)
- func (o *GetReconciliationReport200ResponseReportsInner) SetAcceptedCount(v int32)
- func (o *GetReconciliationReport200ResponseReportsInner) SetBuckets(v map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue)
- func (o *GetReconciliationReport200ResponseReportsInner) SetCreatedAt(v string)
- func (o *GetReconciliationReport200ResponseReportsInner) SetDestination(v SetDestinationTestMode200ResponseDestination)
- func (o *GetReconciliationReport200ResponseReportsInner) SetDestinationId(v string)
- func (o *GetReconciliationReport200ResponseReportsInner) SetEventCounts(v GetReconciliationReport200ResponseReportsInnerEventCounts)
- func (o *GetReconciliationReport200ResponseReportsInner) SetId(v int32)
- func (o *GetReconciliationReport200ResponseReportsInner) SetMetaCount(v int32)
- func (o *GetReconciliationReport200ResponseReportsInner) SetObservedGap(v int32)
- func (o *GetReconciliationReport200ResponseReportsInner) SetReportDate(v string)
- func (o *GetReconciliationReport200ResponseReportsInner) SetSignalTrackerId(v string)
- func (o *GetReconciliationReport200ResponseReportsInner) SetStatus(v string)
- func (o *GetReconciliationReport200ResponseReportsInner) SetUnexplainedResidual(v int32)
- func (o *GetReconciliationReport200ResponseReportsInner) SetUpdatedAt(v string)
- func (o GetReconciliationReport200ResponseReportsInner) ToMap() (map[string]interface{}, error)
- func (o *GetReconciliationReport200ResponseReportsInner) UnmarshalJSON(data []byte) (err error)
- type GetReconciliationReport200ResponseReportsInnerBucketsValue
- func NewGetReconciliationReport200ResponseReportsInnerBucketsValue(count int32, basis string, explanation string) *GetReconciliationReport200ResponseReportsInnerBucketsValue
- func NewGetReconciliationReport200ResponseReportsInnerBucketsValueWithDefaults() *GetReconciliationReport200ResponseReportsInnerBucketsValue
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasis() string
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasisOk() (*string, bool)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCount() int32
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCountOk() (*int32, bool)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanation() string
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanationOk() (*string, bool)
- func (o GetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON() ([]byte, error)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetBasis(v string)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetCount(v int32)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetExplanation(v string)
- func (o GetReconciliationReport200ResponseReportsInnerBucketsValue) ToMap() (map[string]interface{}, error)
- func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON(data []byte) (err error)
- type GetReconciliationReport200ResponseReportsInnerEventCounts
- func NewGetReconciliationReport200ResponseReportsInnerEventCounts(accepted GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, ...) *GetReconciliationReport200ResponseReportsInnerEventCounts
- func NewGetReconciliationReport200ResponseReportsInnerEventCountsWithDefaults() *GetReconciliationReport200ResponseReportsInnerEventCounts
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetAccepted() GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetAcceptedOk() (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, bool)
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetMeta() GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetMetaOk() (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, bool)
- func (o GetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON() ([]byte, error)
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) SetAccepted(v GetReconciliationReport200ResponseReportsInnerEventCountsAccepted)
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) SetMeta(v GetReconciliationReport200ResponseReportsInnerEventCountsAccepted)
- func (o GetReconciliationReport200ResponseReportsInnerEventCounts) ToMap() (map[string]interface{}, error)
- func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON(data []byte) (err error)
- type GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
- type GetSandbox200Response
- func (o *GetSandbox200Response) GetAccountRequired() bool
- func (o *GetSandbox200Response) GetAccountRequiredOk() (*bool, bool)
- func (o *GetSandbox200Response) GetAuthenticationRequired() bool
- func (o *GetSandbox200Response) GetAuthenticationRequiredOk() (*bool, bool)
- func (o *GetSandbox200Response) GetDescription() string
- func (o *GetSandbox200Response) GetDescriptionOk() (*string, bool)
- func (o *GetSandbox200Response) GetEnvironment() string
- func (o *GetSandbox200Response) GetEnvironmentOk() (*string, bool)
- func (o *GetSandbox200Response) GetPersistsData() bool
- func (o *GetSandbox200Response) GetPersistsDataOk() (*bool, bool)
- func (o *GetSandbox200Response) GetProductionData() bool
- func (o *GetSandbox200Response) GetProductionDataOk() (*bool, bool)
- func (o *GetSandbox200Response) GetProviderDelivery() bool
- func (o *GetSandbox200Response) GetProviderDeliveryOk() (*bool, bool)
- func (o *GetSandbox200Response) GetSelfServeKey() GetSandbox200ResponseSelfServeKey
- func (o *GetSandbox200Response) GetSelfServeKeyOk() (*GetSandbox200ResponseSelfServeKey, bool)
- func (o *GetSandbox200Response) GetTry() GetSandbox200ResponseTry
- func (o *GetSandbox200Response) GetTryOk() (*GetSandbox200ResponseTry, bool)
- func (o GetSandbox200Response) MarshalJSON() ([]byte, error)
- func (o *GetSandbox200Response) SetAccountRequired(v bool)
- func (o *GetSandbox200Response) SetAuthenticationRequired(v bool)
- func (o *GetSandbox200Response) SetDescription(v string)
- func (o *GetSandbox200Response) SetEnvironment(v string)
- func (o *GetSandbox200Response) SetPersistsData(v bool)
- func (o *GetSandbox200Response) SetProductionData(v bool)
- func (o *GetSandbox200Response) SetProviderDelivery(v bool)
- func (o *GetSandbox200Response) SetSelfServeKey(v GetSandbox200ResponseSelfServeKey)
- func (o *GetSandbox200Response) SetTry(v GetSandbox200ResponseTry)
- func (o GetSandbox200Response) ToMap() (map[string]interface{}, error)
- func (o *GetSandbox200Response) UnmarshalJSON(data []byte) (err error)
- type GetSandbox200ResponseSelfServeKey
- func (o *GetSandbox200ResponseSelfServeKey) GetAuthenticationRequired() bool
- func (o *GetSandbox200ResponseSelfServeKey) GetAuthenticationRequiredOk() (*bool, bool)
- func (o *GetSandbox200ResponseSelfServeKey) GetDescription() string
- func (o *GetSandbox200ResponseSelfServeKey) GetDescriptionOk() (*string, bool)
- func (o *GetSandbox200ResponseSelfServeKey) GetMethod() string
- func (o *GetSandbox200ResponseSelfServeKey) GetMethodOk() (*string, bool)
- func (o *GetSandbox200ResponseSelfServeKey) GetUrl() string
- func (o *GetSandbox200ResponseSelfServeKey) GetUrlOk() (*string, bool)
- func (o GetSandbox200ResponseSelfServeKey) MarshalJSON() ([]byte, error)
- func (o *GetSandbox200ResponseSelfServeKey) SetAuthenticationRequired(v bool)
- func (o *GetSandbox200ResponseSelfServeKey) SetDescription(v string)
- func (o *GetSandbox200ResponseSelfServeKey) SetMethod(v string)
- func (o *GetSandbox200ResponseSelfServeKey) SetUrl(v string)
- func (o GetSandbox200ResponseSelfServeKey) ToMap() (map[string]interface{}, error)
- func (o *GetSandbox200ResponseSelfServeKey) UnmarshalJSON(data []byte) (err error)
- type GetSandbox200ResponseTry
- func (o *GetSandbox200ResponseTry) GetBody() GetSandbox200ResponseTryBody
- func (o *GetSandbox200ResponseTry) GetBodyOk() (*GetSandbox200ResponseTryBody, bool)
- func (o *GetSandbox200ResponseTry) GetContentType() string
- func (o *GetSandbox200ResponseTry) GetContentTypeOk() (*string, bool)
- func (o *GetSandbox200ResponseTry) GetMethod() string
- func (o *GetSandbox200ResponseTry) GetMethodOk() (*string, bool)
- func (o *GetSandbox200ResponseTry) GetUrl() string
- func (o *GetSandbox200ResponseTry) GetUrlOk() (*string, bool)
- func (o GetSandbox200ResponseTry) MarshalJSON() ([]byte, error)
- func (o *GetSandbox200ResponseTry) SetBody(v GetSandbox200ResponseTryBody)
- func (o *GetSandbox200ResponseTry) SetContentType(v string)
- func (o *GetSandbox200ResponseTry) SetMethod(v string)
- func (o *GetSandbox200ResponseTry) SetUrl(v string)
- func (o GetSandbox200ResponseTry) ToMap() (map[string]interface{}, error)
- func (o *GetSandbox200ResponseTry) UnmarshalJSON(data []byte) (err error)
- type GetSandbox200ResponseTryBody
- func (o *GetSandbox200ResponseTryBody) GetActionSource() string
- func (o *GetSandbox200ResponseTryBody) GetActionSourceOk() (*string, bool)
- func (o *GetSandbox200ResponseTryBody) GetEventId() string
- func (o *GetSandbox200ResponseTryBody) GetEventIdOk() (*string, bool)
- func (o *GetSandbox200ResponseTryBody) GetEventName() string
- func (o *GetSandbox200ResponseTryBody) GetEventNameOk() (*string, bool)
- func (o *GetSandbox200ResponseTryBody) GetValueData() GetSandbox200ResponseTryBodyValueData
- func (o *GetSandbox200ResponseTryBody) GetValueDataOk() (*GetSandbox200ResponseTryBodyValueData, bool)
- func (o GetSandbox200ResponseTryBody) MarshalJSON() ([]byte, error)
- func (o *GetSandbox200ResponseTryBody) SetActionSource(v string)
- func (o *GetSandbox200ResponseTryBody) SetEventId(v string)
- func (o *GetSandbox200ResponseTryBody) SetEventName(v string)
- func (o *GetSandbox200ResponseTryBody) SetValueData(v GetSandbox200ResponseTryBodyValueData)
- func (o GetSandbox200ResponseTryBody) ToMap() (map[string]interface{}, error)
- func (o *GetSandbox200ResponseTryBody) UnmarshalJSON(data []byte) (err error)
- type GetSandbox200ResponseTryBodyValueData
- func (o *GetSandbox200ResponseTryBodyValueData) GetCurrency() string
- func (o *GetSandbox200ResponseTryBodyValueData) GetCurrencyOk() (*string, bool)
- func (o *GetSandbox200ResponseTryBodyValueData) GetOrderId() string
- func (o *GetSandbox200ResponseTryBodyValueData) GetOrderIdOk() (*string, bool)
- func (o *GetSandbox200ResponseTryBodyValueData) GetValue() string
- func (o *GetSandbox200ResponseTryBodyValueData) GetValueOk() (*string, bool)
- func (o GetSandbox200ResponseTryBodyValueData) MarshalJSON() ([]byte, error)
- func (o *GetSandbox200ResponseTryBodyValueData) SetCurrency(v string)
- func (o *GetSandbox200ResponseTryBodyValueData) SetOrderId(v string)
- func (o *GetSandbox200ResponseTryBodyValueData) SetValue(v string)
- func (o GetSandbox200ResponseTryBodyValueData) ToMap() (map[string]interface{}, error)
- func (o *GetSandbox200ResponseTryBodyValueData) UnmarshalJSON(data []byte) (err error)
- type JurisdictionPolicyClass
- type ListEvents200Response
- func (o *ListEvents200Response) GetEvents() ListEvents200ResponseEvents
- func (o *ListEvents200Response) GetEventsOk() (*ListEvents200ResponseEvents, bool)
- func (o *ListEvents200Response) GetMetrics() ListEvents200ResponseMetrics
- func (o *ListEvents200Response) GetMetricsOk() (*ListEvents200ResponseMetrics, bool)
- func (o ListEvents200Response) MarshalJSON() ([]byte, error)
- func (o *ListEvents200Response) SetEvents(v ListEvents200ResponseEvents)
- func (o *ListEvents200Response) SetMetrics(v ListEvents200ResponseMetrics)
- func (o ListEvents200Response) ToMap() (map[string]interface{}, error)
- func (o *ListEvents200Response) UnmarshalJSON(data []byte) (err error)
- type ListEvents200ResponseEvents
- func (o *ListEvents200ResponseEvents) GetCurrentPage() int32
- func (o *ListEvents200ResponseEvents) GetCurrentPageOk() (*int32, bool)
- func (o *ListEvents200ResponseEvents) GetData() []GetEvent200ResponseEvent
- func (o *ListEvents200ResponseEvents) GetDataOk() ([]GetEvent200ResponseEvent, bool)
- func (o *ListEvents200ResponseEvents) GetFirstPageUrl() string
- func (o *ListEvents200ResponseEvents) GetFirstPageUrlOk() (*string, bool)
- func (o *ListEvents200ResponseEvents) GetFrom() int32
- func (o *ListEvents200ResponseEvents) GetFromOk() (*int32, bool)
- func (o *ListEvents200ResponseEvents) GetLastPage() int32
- func (o *ListEvents200ResponseEvents) GetLastPageOk() (*int32, bool)
- func (o *ListEvents200ResponseEvents) GetLastPageUrl() string
- func (o *ListEvents200ResponseEvents) GetLastPageUrlOk() (*string, bool)
- func (o *ListEvents200ResponseEvents) GetLinks() []ListEvents200ResponseEventsLinksInner
- func (o *ListEvents200ResponseEvents) GetLinksOk() ([]ListEvents200ResponseEventsLinksInner, bool)
- func (o *ListEvents200ResponseEvents) GetNextPageUrl() string
- func (o *ListEvents200ResponseEvents) GetNextPageUrlOk() (*string, bool)
- func (o *ListEvents200ResponseEvents) GetPath() string
- func (o *ListEvents200ResponseEvents) GetPathOk() (*string, bool)
- func (o *ListEvents200ResponseEvents) GetPerPage() int32
- func (o *ListEvents200ResponseEvents) GetPerPageOk() (*int32, bool)
- func (o *ListEvents200ResponseEvents) GetPrevPageUrl() string
- func (o *ListEvents200ResponseEvents) GetPrevPageUrlOk() (*string, bool)
- func (o *ListEvents200ResponseEvents) GetTo() int32
- func (o *ListEvents200ResponseEvents) GetToOk() (*int32, bool)
- func (o *ListEvents200ResponseEvents) GetTotal() int32
- func (o *ListEvents200ResponseEvents) GetTotalOk() (*int32, bool)
- func (o ListEvents200ResponseEvents) MarshalJSON() ([]byte, error)
- func (o *ListEvents200ResponseEvents) SetCurrentPage(v int32)
- func (o *ListEvents200ResponseEvents) SetData(v []GetEvent200ResponseEvent)
- func (o *ListEvents200ResponseEvents) SetFirstPageUrl(v string)
- func (o *ListEvents200ResponseEvents) SetFrom(v int32)
- func (o *ListEvents200ResponseEvents) SetLastPage(v int32)
- func (o *ListEvents200ResponseEvents) SetLastPageUrl(v string)
- func (o *ListEvents200ResponseEvents) SetLinks(v []ListEvents200ResponseEventsLinksInner)
- func (o *ListEvents200ResponseEvents) SetNextPageUrl(v string)
- func (o *ListEvents200ResponseEvents) SetPath(v string)
- func (o *ListEvents200ResponseEvents) SetPerPage(v int32)
- func (o *ListEvents200ResponseEvents) SetPrevPageUrl(v string)
- func (o *ListEvents200ResponseEvents) SetTo(v int32)
- func (o *ListEvents200ResponseEvents) SetTotal(v int32)
- func (o ListEvents200ResponseEvents) ToMap() (map[string]interface{}, error)
- func (o *ListEvents200ResponseEvents) UnmarshalJSON(data []byte) (err error)
- type ListEvents200ResponseEventsLinksInner
- func (o *ListEvents200ResponseEventsLinksInner) GetActive() bool
- func (o *ListEvents200ResponseEventsLinksInner) GetActiveOk() (*bool, bool)
- func (o *ListEvents200ResponseEventsLinksInner) GetLabel() string
- func (o *ListEvents200ResponseEventsLinksInner) GetLabelOk() (*string, bool)
- func (o *ListEvents200ResponseEventsLinksInner) GetUrl() string
- func (o *ListEvents200ResponseEventsLinksInner) GetUrlOk() (*string, bool)
- func (o ListEvents200ResponseEventsLinksInner) MarshalJSON() ([]byte, error)
- func (o *ListEvents200ResponseEventsLinksInner) SetActive(v bool)
- func (o *ListEvents200ResponseEventsLinksInner) SetLabel(v string)
- func (o *ListEvents200ResponseEventsLinksInner) SetUrl(v string)
- func (o ListEvents200ResponseEventsLinksInner) ToMap() (map[string]interface{}, error)
- func (o *ListEvents200ResponseEventsLinksInner) UnmarshalJSON(data []byte) (err error)
- type ListEvents200ResponseMetrics
- func (o *ListEvents200ResponseMetrics) GetAcceptanceRate() float32
- func (o *ListEvents200ResponseMetrics) GetAcceptanceRateOk() (*float32, bool)
- func (o *ListEvents200ResponseMetrics) GetAcceptanceRateWindow() string
- func (o *ListEvents200ResponseMetrics) GetAcceptanceRateWindowOk() (*string, bool)
- func (o *ListEvents200ResponseMetrics) GetAccepted() int32
- func (o *ListEvents200ResponseMetrics) GetAcceptedOk() (*int32, bool)
- func (o *ListEvents200ResponseMetrics) GetTotalDeliveries() int32
- func (o *ListEvents200ResponseMetrics) GetTotalDeliveriesOk() (*int32, bool)
- func (o ListEvents200ResponseMetrics) MarshalJSON() ([]byte, error)
- func (o *ListEvents200ResponseMetrics) SetAcceptanceRate(v float32)
- func (o *ListEvents200ResponseMetrics) SetAcceptanceRateWindow(v string)
- func (o *ListEvents200ResponseMetrics) SetAccepted(v int32)
- func (o *ListEvents200ResponseMetrics) SetTotalDeliveries(v int32)
- func (o ListEvents200ResponseMetrics) ToMap() (map[string]interface{}, error)
- func (o *ListEvents200ResponseMetrics) UnmarshalJSON(data []byte) (err error)
- type ListEventsByCursor200Response
- func (o *ListEventsByCursor200Response) GetEvents() ListEventsByCursor200ResponseEvents
- func (o *ListEventsByCursor200Response) GetEventsOk() (*ListEventsByCursor200ResponseEvents, bool)
- func (o *ListEventsByCursor200Response) GetMetrics() ListEvents200ResponseMetrics
- func (o *ListEventsByCursor200Response) GetMetricsOk() (*ListEvents200ResponseMetrics, bool)
- func (o ListEventsByCursor200Response) MarshalJSON() ([]byte, error)
- func (o *ListEventsByCursor200Response) SetEvents(v ListEventsByCursor200ResponseEvents)
- func (o *ListEventsByCursor200Response) SetMetrics(v ListEvents200ResponseMetrics)
- func (o ListEventsByCursor200Response) ToMap() (map[string]interface{}, error)
- func (o *ListEventsByCursor200Response) UnmarshalJSON(data []byte) (err error)
- type ListEventsByCursor200ResponseEvents
- func (o *ListEventsByCursor200ResponseEvents) GetData() []GetEvent200ResponseEvent
- func (o *ListEventsByCursor200ResponseEvents) GetDataOk() ([]GetEvent200ResponseEvent, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetNextCursor() string
- func (o *ListEventsByCursor200ResponseEvents) GetNextCursorOk() (*string, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetNextPageUrl() string
- func (o *ListEventsByCursor200ResponseEvents) GetNextPageUrlOk() (*string, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetPath() string
- func (o *ListEventsByCursor200ResponseEvents) GetPathOk() (*string, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetPerPage() int32
- func (o *ListEventsByCursor200ResponseEvents) GetPerPageOk() (*int32, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetPrevCursor() string
- func (o *ListEventsByCursor200ResponseEvents) GetPrevCursorOk() (*string, bool)
- func (o *ListEventsByCursor200ResponseEvents) GetPrevPageUrl() string
- func (o *ListEventsByCursor200ResponseEvents) GetPrevPageUrlOk() (*string, bool)
- func (o ListEventsByCursor200ResponseEvents) MarshalJSON() ([]byte, error)
- func (o *ListEventsByCursor200ResponseEvents) SetData(v []GetEvent200ResponseEvent)
- func (o *ListEventsByCursor200ResponseEvents) SetNextCursor(v string)
- func (o *ListEventsByCursor200ResponseEvents) SetNextPageUrl(v string)
- func (o *ListEventsByCursor200ResponseEvents) SetPath(v string)
- func (o *ListEventsByCursor200ResponseEvents) SetPerPage(v int32)
- func (o *ListEventsByCursor200ResponseEvents) SetPrevCursor(v string)
- func (o *ListEventsByCursor200ResponseEvents) SetPrevPageUrl(v string)
- func (o ListEventsByCursor200ResponseEvents) ToMap() (map[string]interface{}, error)
- func (o *ListEventsByCursor200ResponseEvents) UnmarshalJSON(data []byte) (err error)
- type MappedNullable
- type NullableBool
- type NullableCreateEvent200Response
- func (v NullableCreateEvent200Response) Get() *CreateEvent200Response
- func (v NullableCreateEvent200Response) IsSet() bool
- func (v NullableCreateEvent200Response) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEvent200Response) Set(val *CreateEvent200Response)
- func (v *NullableCreateEvent200Response) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEvent200Response) Unset()
- type NullableCreateEventRequest
- func (v NullableCreateEventRequest) Get() *CreateEventRequest
- func (v NullableCreateEventRequest) IsSet() bool
- func (v NullableCreateEventRequest) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEventRequest) Set(val *CreateEventRequest)
- func (v *NullableCreateEventRequest) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEventRequest) Unset()
- type NullableCreateEventRequestAnyOf
- func (v NullableCreateEventRequestAnyOf) Get() *CreateEventRequestAnyOf
- func (v NullableCreateEventRequestAnyOf) IsSet() bool
- func (v NullableCreateEventRequestAnyOf) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEventRequestAnyOf) Set(val *CreateEventRequestAnyOf)
- func (v *NullableCreateEventRequestAnyOf) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEventRequestAnyOf) Unset()
- type NullableCreateEventRequestAnyOf1
- func (v NullableCreateEventRequestAnyOf1) Get() *CreateEventRequestAnyOf1
- func (v NullableCreateEventRequestAnyOf1) IsSet() bool
- func (v NullableCreateEventRequestAnyOf1) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEventRequestAnyOf1) Set(val *CreateEventRequestAnyOf1)
- func (v *NullableCreateEventRequestAnyOf1) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEventRequestAnyOf1) Unset()
- type NullableCreateEventRequestAnyOfEventTime
- func (v NullableCreateEventRequestAnyOfEventTime) Get() *CreateEventRequestAnyOfEventTime
- func (v NullableCreateEventRequestAnyOfEventTime) IsSet() bool
- func (v NullableCreateEventRequestAnyOfEventTime) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEventRequestAnyOfEventTime) Set(val *CreateEventRequestAnyOfEventTime)
- func (v *NullableCreateEventRequestAnyOfEventTime) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEventRequestAnyOfEventTime) Unset()
- type NullableCreateEventRequestAnyOfValueData
- func (v NullableCreateEventRequestAnyOfValueData) Get() *CreateEventRequestAnyOfValueData
- func (v NullableCreateEventRequestAnyOfValueData) IsSet() bool
- func (v NullableCreateEventRequestAnyOfValueData) MarshalJSON() ([]byte, error)
- func (v *NullableCreateEventRequestAnyOfValueData) Set(val *CreateEventRequestAnyOfValueData)
- func (v *NullableCreateEventRequestAnyOfValueData) UnmarshalJSON(src []byte) error
- func (v *NullableCreateEventRequestAnyOfValueData) Unset()
- type NullableCreateSandboxKey201Response
- func (v NullableCreateSandboxKey201Response) Get() *CreateSandboxKey201Response
- func (v NullableCreateSandboxKey201Response) IsSet() bool
- func (v NullableCreateSandboxKey201Response) MarshalJSON() ([]byte, error)
- func (v *NullableCreateSandboxKey201Response) Set(val *CreateSandboxKey201Response)
- func (v *NullableCreateSandboxKey201Response) UnmarshalJSON(src []byte) error
- func (v *NullableCreateSandboxKey201Response) Unset()
- type NullableCreateSandboxKey201ResponseUse
- func (v NullableCreateSandboxKey201ResponseUse) Get() *CreateSandboxKey201ResponseUse
- func (v NullableCreateSandboxKey201ResponseUse) IsSet() bool
- func (v NullableCreateSandboxKey201ResponseUse) MarshalJSON() ([]byte, error)
- func (v *NullableCreateSandboxKey201ResponseUse) Set(val *CreateSandboxKey201ResponseUse)
- func (v *NullableCreateSandboxKey201ResponseUse) UnmarshalJSON(src []byte) error
- func (v *NullableCreateSandboxKey201ResponseUse) Unset()
- type NullableDeleteUserData200Response
- func (v NullableDeleteUserData200Response) Get() *DeleteUserData200Response
- func (v NullableDeleteUserData200Response) IsSet() bool
- func (v NullableDeleteUserData200Response) MarshalJSON() ([]byte, error)
- func (v *NullableDeleteUserData200Response) Set(val *DeleteUserData200Response)
- func (v *NullableDeleteUserData200Response) UnmarshalJSON(src []byte) error
- func (v *NullableDeleteUserData200Response) Unset()
- type NullableDeleteUserDataRequest
- func (v NullableDeleteUserDataRequest) Get() *DeleteUserDataRequest
- func (v NullableDeleteUserDataRequest) IsSet() bool
- func (v NullableDeleteUserDataRequest) MarshalJSON() ([]byte, error)
- func (v *NullableDeleteUserDataRequest) Set(val *DeleteUserDataRequest)
- func (v *NullableDeleteUserDataRequest) UnmarshalJSON(src []byte) error
- func (v *NullableDeleteUserDataRequest) Unset()
- type NullableDeliveryStatus
- func (v NullableDeliveryStatus) Get() *DeliveryStatus
- func (v NullableDeliveryStatus) IsSet() bool
- func (v NullableDeliveryStatus) MarshalJSON() ([]byte, error)
- func (v *NullableDeliveryStatus) Set(val *DeliveryStatus)
- func (v *NullableDeliveryStatus) UnmarshalJSON(src []byte) error
- func (v *NullableDeliveryStatus) Unset()
- type NullableDestination
- func (v NullableDestination) Get() *Destination
- func (v NullableDestination) IsSet() bool
- func (v NullableDestination) MarshalJSON() ([]byte, error)
- func (v *NullableDestination) Set(val *Destination)
- func (v *NullableDestination) UnmarshalJSON(src []byte) error
- func (v *NullableDestination) Unset()
- type NullableDestinationCredentialSource
- func (v NullableDestinationCredentialSource) Get() *DestinationCredentialSource
- func (v NullableDestinationCredentialSource) IsSet() bool
- func (v NullableDestinationCredentialSource) MarshalJSON() ([]byte, error)
- func (v *NullableDestinationCredentialSource) Set(val *DestinationCredentialSource)
- func (v *NullableDestinationCredentialSource) UnmarshalJSON(src []byte) error
- func (v *NullableDestinationCredentialSource) Unset()
- type NullableDestinationStatus
- func (v NullableDestinationStatus) Get() *DestinationStatus
- func (v NullableDestinationStatus) IsSet() bool
- func (v NullableDestinationStatus) MarshalJSON() ([]byte, error)
- func (v *NullableDestinationStatus) Set(val *DestinationStatus)
- func (v *NullableDestinationStatus) UnmarshalJSON(src []byte) error
- func (v *NullableDestinationStatus) Unset()
- type NullableDestinationType
- func (v NullableDestinationType) Get() *DestinationType
- func (v NullableDestinationType) IsSet() bool
- func (v NullableDestinationType) MarshalJSON() ([]byte, error)
- func (v *NullableDestinationType) Set(val *DestinationType)
- func (v *NullableDestinationType) UnmarshalJSON(src []byte) error
- func (v *NullableDestinationType) Unset()
- type NullableEmqSnapshot
- func (v NullableEmqSnapshot) Get() *EmqSnapshot
- func (v NullableEmqSnapshot) IsSet() bool
- func (v NullableEmqSnapshot) MarshalJSON() ([]byte, error)
- func (v *NullableEmqSnapshot) Set(val *EmqSnapshot)
- func (v *NullableEmqSnapshot) UnmarshalJSON(src []byte) error
- func (v *NullableEmqSnapshot) Unset()
- type NullableErrorMessage
- func (v NullableErrorMessage) Get() *ErrorMessage
- func (v NullableErrorMessage) IsSet() bool
- func (v NullableErrorMessage) MarshalJSON() ([]byte, error)
- func (v *NullableErrorMessage) Set(val *ErrorMessage)
- func (v *NullableErrorMessage) UnmarshalJSON(src []byte) error
- func (v *NullableErrorMessage) Unset()
- type NullableEvent
- type NullableFloat32
- type NullableFloat64
- type NullableGetEmqReport200Response
- func (v NullableGetEmqReport200Response) Get() *GetEmqReport200Response
- func (v NullableGetEmqReport200Response) IsSet() bool
- func (v NullableGetEmqReport200Response) MarshalJSON() ([]byte, error)
- func (v *NullableGetEmqReport200Response) Set(val *GetEmqReport200Response)
- func (v *NullableGetEmqReport200Response) UnmarshalJSON(src []byte) error
- func (v *NullableGetEmqReport200Response) Unset()
- type NullableGetEmqReport200ResponseSnapshotsInner
- func (v NullableGetEmqReport200ResponseSnapshotsInner) Get() *GetEmqReport200ResponseSnapshotsInner
- func (v NullableGetEmqReport200ResponseSnapshotsInner) IsSet() bool
- func (v NullableGetEmqReport200ResponseSnapshotsInner) MarshalJSON() ([]byte, error)
- func (v *NullableGetEmqReport200ResponseSnapshotsInner) Set(val *GetEmqReport200ResponseSnapshotsInner)
- func (v *NullableGetEmqReport200ResponseSnapshotsInner) UnmarshalJSON(src []byte) error
- func (v *NullableGetEmqReport200ResponseSnapshotsInner) Unset()
- type NullableGetEvent200Response
- func (v NullableGetEvent200Response) Get() *GetEvent200Response
- func (v NullableGetEvent200Response) IsSet() bool
- func (v NullableGetEvent200Response) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200Response) Set(val *GetEvent200Response)
- func (v *NullableGetEvent200Response) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200Response) Unset()
- type NullableGetEvent200ResponseDeliveriesInner
- func (v NullableGetEvent200ResponseDeliveriesInner) Get() *GetEvent200ResponseDeliveriesInner
- func (v NullableGetEvent200ResponseDeliveriesInner) IsSet() bool
- func (v NullableGetEvent200ResponseDeliveriesInner) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseDeliveriesInner) Set(val *GetEvent200ResponseDeliveriesInner)
- func (v *NullableGetEvent200ResponseDeliveriesInner) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseDeliveriesInner) Unset()
- type NullableGetEvent200ResponseEvent
- func (v NullableGetEvent200ResponseEvent) Get() *GetEvent200ResponseEvent
- func (v NullableGetEvent200ResponseEvent) IsSet() bool
- func (v NullableGetEvent200ResponseEvent) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseEvent) Set(val *GetEvent200ResponseEvent)
- func (v *NullableGetEvent200ResponseEvent) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseEvent) Unset()
- type NullableGetEvent200ResponseEventDeliveriesInner
- func (v NullableGetEvent200ResponseEventDeliveriesInner) Get() *GetEvent200ResponseEventDeliveriesInner
- func (v NullableGetEvent200ResponseEventDeliveriesInner) IsSet() bool
- func (v NullableGetEvent200ResponseEventDeliveriesInner) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseEventDeliveriesInner) Set(val *GetEvent200ResponseEventDeliveriesInner)
- func (v *NullableGetEvent200ResponseEventDeliveriesInner) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseEventDeliveriesInner) Unset()
- type NullableGetEvent200ResponseLineage
- func (v NullableGetEvent200ResponseLineage) Get() *GetEvent200ResponseLineage
- func (v NullableGetEvent200ResponseLineage) IsSet() bool
- func (v NullableGetEvent200ResponseLineage) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseLineage) Set(val *GetEvent200ResponseLineage)
- func (v *NullableGetEvent200ResponseLineage) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseLineage) Unset()
- type NullableGetEvent200ResponseLineageChildrenInner
- func (v NullableGetEvent200ResponseLineageChildrenInner) Get() *GetEvent200ResponseLineageChildrenInner
- func (v NullableGetEvent200ResponseLineageChildrenInner) IsSet() bool
- func (v NullableGetEvent200ResponseLineageChildrenInner) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseLineageChildrenInner) Set(val *GetEvent200ResponseLineageChildrenInner)
- func (v *NullableGetEvent200ResponseLineageChildrenInner) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseLineageChildrenInner) Unset()
- type NullableGetEvent200ResponseLineageParent
- func (v NullableGetEvent200ResponseLineageParent) Get() *GetEvent200ResponseLineageParent
- func (v NullableGetEvent200ResponseLineageParent) IsSet() bool
- func (v NullableGetEvent200ResponseLineageParent) MarshalJSON() ([]byte, error)
- func (v *NullableGetEvent200ResponseLineageParent) Set(val *GetEvent200ResponseLineageParent)
- func (v *NullableGetEvent200ResponseLineageParent) UnmarshalJSON(src []byte) error
- func (v *NullableGetEvent200ResponseLineageParent) Unset()
- type NullableGetReconciliationReport200Response
- func (v NullableGetReconciliationReport200Response) Get() *GetReconciliationReport200Response
- func (v NullableGetReconciliationReport200Response) IsSet() bool
- func (v NullableGetReconciliationReport200Response) MarshalJSON() ([]byte, error)
- func (v *NullableGetReconciliationReport200Response) Set(val *GetReconciliationReport200Response)
- func (v *NullableGetReconciliationReport200Response) UnmarshalJSON(src []byte) error
- func (v *NullableGetReconciliationReport200Response) Unset()
- type NullableGetReconciliationReport200ResponseReportsInner
- func (v NullableGetReconciliationReport200ResponseReportsInner) Get() *GetReconciliationReport200ResponseReportsInner
- func (v NullableGetReconciliationReport200ResponseReportsInner) IsSet() bool
- func (v NullableGetReconciliationReport200ResponseReportsInner) MarshalJSON() ([]byte, error)
- func (v *NullableGetReconciliationReport200ResponseReportsInner) Set(val *GetReconciliationReport200ResponseReportsInner)
- func (v *NullableGetReconciliationReport200ResponseReportsInner) UnmarshalJSON(src []byte) error
- func (v *NullableGetReconciliationReport200ResponseReportsInner) Unset()
- type NullableGetReconciliationReport200ResponseReportsInnerBucketsValue
- func (v NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Get() *GetReconciliationReport200ResponseReportsInnerBucketsValue
- func (v NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) IsSet() bool
- func (v NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON() ([]byte, error)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Set(val *GetReconciliationReport200ResponseReportsInnerBucketsValue)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON(src []byte) error
- func (v *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Unset()
- type NullableGetReconciliationReport200ResponseReportsInnerEventCounts
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Get() *GetReconciliationReport200ResponseReportsInnerEventCounts
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCounts) IsSet() bool
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON() ([]byte, error)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Set(val *GetReconciliationReport200ResponseReportsInnerEventCounts)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON(src []byte) error
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Unset()
- type NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Get() *GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) IsSet() bool
- func (v NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON() ([]byte, error)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Set(val *GetReconciliationReport200ResponseReportsInnerEventCountsAccepted)
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON(src []byte) error
- func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) Unset()
- type NullableGetSandbox200Response
- func (v NullableGetSandbox200Response) Get() *GetSandbox200Response
- func (v NullableGetSandbox200Response) IsSet() bool
- func (v NullableGetSandbox200Response) MarshalJSON() ([]byte, error)
- func (v *NullableGetSandbox200Response) Set(val *GetSandbox200Response)
- func (v *NullableGetSandbox200Response) UnmarshalJSON(src []byte) error
- func (v *NullableGetSandbox200Response) Unset()
- type NullableGetSandbox200ResponseSelfServeKey
- func (v NullableGetSandbox200ResponseSelfServeKey) Get() *GetSandbox200ResponseSelfServeKey
- func (v NullableGetSandbox200ResponseSelfServeKey) IsSet() bool
- func (v NullableGetSandbox200ResponseSelfServeKey) MarshalJSON() ([]byte, error)
- func (v *NullableGetSandbox200ResponseSelfServeKey) Set(val *GetSandbox200ResponseSelfServeKey)
- func (v *NullableGetSandbox200ResponseSelfServeKey) UnmarshalJSON(src []byte) error
- func (v *NullableGetSandbox200ResponseSelfServeKey) Unset()
- type NullableGetSandbox200ResponseTry
- func (v NullableGetSandbox200ResponseTry) Get() *GetSandbox200ResponseTry
- func (v NullableGetSandbox200ResponseTry) IsSet() bool
- func (v NullableGetSandbox200ResponseTry) MarshalJSON() ([]byte, error)
- func (v *NullableGetSandbox200ResponseTry) Set(val *GetSandbox200ResponseTry)
- func (v *NullableGetSandbox200ResponseTry) UnmarshalJSON(src []byte) error
- func (v *NullableGetSandbox200ResponseTry) Unset()
- type NullableGetSandbox200ResponseTryBody
- func (v NullableGetSandbox200ResponseTryBody) Get() *GetSandbox200ResponseTryBody
- func (v NullableGetSandbox200ResponseTryBody) IsSet() bool
- func (v NullableGetSandbox200ResponseTryBody) MarshalJSON() ([]byte, error)
- func (v *NullableGetSandbox200ResponseTryBody) Set(val *GetSandbox200ResponseTryBody)
- func (v *NullableGetSandbox200ResponseTryBody) UnmarshalJSON(src []byte) error
- func (v *NullableGetSandbox200ResponseTryBody) Unset()
- type NullableGetSandbox200ResponseTryBodyValueData
- func (v NullableGetSandbox200ResponseTryBodyValueData) Get() *GetSandbox200ResponseTryBodyValueData
- func (v NullableGetSandbox200ResponseTryBodyValueData) IsSet() bool
- func (v NullableGetSandbox200ResponseTryBodyValueData) MarshalJSON() ([]byte, error)
- func (v *NullableGetSandbox200ResponseTryBodyValueData) Set(val *GetSandbox200ResponseTryBodyValueData)
- func (v *NullableGetSandbox200ResponseTryBodyValueData) UnmarshalJSON(src []byte) error
- func (v *NullableGetSandbox200ResponseTryBodyValueData) Unset()
- type NullableInt
- type NullableInt32
- type NullableInt64
- type NullableJurisdictionPolicyClass
- func (v NullableJurisdictionPolicyClass) Get() *JurisdictionPolicyClass
- func (v NullableJurisdictionPolicyClass) IsSet() bool
- func (v NullableJurisdictionPolicyClass) MarshalJSON() ([]byte, error)
- func (v *NullableJurisdictionPolicyClass) Set(val *JurisdictionPolicyClass)
- func (v *NullableJurisdictionPolicyClass) UnmarshalJSON(src []byte) error
- func (v *NullableJurisdictionPolicyClass) Unset()
- type NullableListEvents200Response
- func (v NullableListEvents200Response) Get() *ListEvents200Response
- func (v NullableListEvents200Response) IsSet() bool
- func (v NullableListEvents200Response) MarshalJSON() ([]byte, error)
- func (v *NullableListEvents200Response) Set(val *ListEvents200Response)
- func (v *NullableListEvents200Response) UnmarshalJSON(src []byte) error
- func (v *NullableListEvents200Response) Unset()
- type NullableListEvents200ResponseEvents
- func (v NullableListEvents200ResponseEvents) Get() *ListEvents200ResponseEvents
- func (v NullableListEvents200ResponseEvents) IsSet() bool
- func (v NullableListEvents200ResponseEvents) MarshalJSON() ([]byte, error)
- func (v *NullableListEvents200ResponseEvents) Set(val *ListEvents200ResponseEvents)
- func (v *NullableListEvents200ResponseEvents) UnmarshalJSON(src []byte) error
- func (v *NullableListEvents200ResponseEvents) Unset()
- type NullableListEvents200ResponseEventsLinksInner
- func (v NullableListEvents200ResponseEventsLinksInner) Get() *ListEvents200ResponseEventsLinksInner
- func (v NullableListEvents200ResponseEventsLinksInner) IsSet() bool
- func (v NullableListEvents200ResponseEventsLinksInner) MarshalJSON() ([]byte, error)
- func (v *NullableListEvents200ResponseEventsLinksInner) Set(val *ListEvents200ResponseEventsLinksInner)
- func (v *NullableListEvents200ResponseEventsLinksInner) UnmarshalJSON(src []byte) error
- func (v *NullableListEvents200ResponseEventsLinksInner) Unset()
- type NullableListEvents200ResponseMetrics
- func (v NullableListEvents200ResponseMetrics) Get() *ListEvents200ResponseMetrics
- func (v NullableListEvents200ResponseMetrics) IsSet() bool
- func (v NullableListEvents200ResponseMetrics) MarshalJSON() ([]byte, error)
- func (v *NullableListEvents200ResponseMetrics) Set(val *ListEvents200ResponseMetrics)
- func (v *NullableListEvents200ResponseMetrics) UnmarshalJSON(src []byte) error
- func (v *NullableListEvents200ResponseMetrics) Unset()
- type NullableListEventsByCursor200Response
- func (v NullableListEventsByCursor200Response) Get() *ListEventsByCursor200Response
- func (v NullableListEventsByCursor200Response) IsSet() bool
- func (v NullableListEventsByCursor200Response) MarshalJSON() ([]byte, error)
- func (v *NullableListEventsByCursor200Response) Set(val *ListEventsByCursor200Response)
- func (v *NullableListEventsByCursor200Response) UnmarshalJSON(src []byte) error
- func (v *NullableListEventsByCursor200Response) Unset()
- type NullableListEventsByCursor200ResponseEvents
- func (v NullableListEventsByCursor200ResponseEvents) Get() *ListEventsByCursor200ResponseEvents
- func (v NullableListEventsByCursor200ResponseEvents) IsSet() bool
- func (v NullableListEventsByCursor200ResponseEvents) MarshalJSON() ([]byte, error)
- func (v *NullableListEventsByCursor200ResponseEvents) Set(val *ListEventsByCursor200ResponseEvents)
- func (v *NullableListEventsByCursor200ResponseEvents) UnmarshalJSON(src []byte) error
- func (v *NullableListEventsByCursor200ResponseEvents) Unset()
- type NullableReconciliationReport
- func (v NullableReconciliationReport) Get() *ReconciliationReport
- func (v NullableReconciliationReport) IsSet() bool
- func (v NullableReconciliationReport) MarshalJSON() ([]byte, error)
- func (v *NullableReconciliationReport) Set(val *ReconciliationReport)
- func (v *NullableReconciliationReport) UnmarshalJSON(src []byte) error
- func (v *NullableReconciliationReport) Unset()
- type NullableReplayDeliveries202Response
- func (v NullableReplayDeliveries202Response) Get() *ReplayDeliveries202Response
- func (v NullableReplayDeliveries202Response) IsSet() bool
- func (v NullableReplayDeliveries202Response) MarshalJSON() ([]byte, error)
- func (v *NullableReplayDeliveries202Response) Set(val *ReplayDeliveries202Response)
- func (v *NullableReplayDeliveries202Response) UnmarshalJSON(src []byte) error
- func (v *NullableReplayDeliveries202Response) Unset()
- type NullableReplayDeliveriesRequest
- func (v NullableReplayDeliveriesRequest) Get() *ReplayDeliveriesRequest
- func (v NullableReplayDeliveriesRequest) IsSet() bool
- func (v NullableReplayDeliveriesRequest) MarshalJSON() ([]byte, error)
- func (v *NullableReplayDeliveriesRequest) Set(val *ReplayDeliveriesRequest)
- func (v *NullableReplayDeliveriesRequest) UnmarshalJSON(src []byte) error
- func (v *NullableReplayDeliveriesRequest) Unset()
- type NullableSendTestPurchase200Response
- func (v NullableSendTestPurchase200Response) Get() *SendTestPurchase200Response
- func (v NullableSendTestPurchase200Response) IsSet() bool
- func (v NullableSendTestPurchase200Response) MarshalJSON() ([]byte, error)
- func (v *NullableSendTestPurchase200Response) Set(val *SendTestPurchase200Response)
- func (v *NullableSendTestPurchase200Response) UnmarshalJSON(src []byte) error
- func (v *NullableSendTestPurchase200Response) Unset()
- type NullableSendTestPurchase422Response
- func (v NullableSendTestPurchase422Response) Get() *SendTestPurchase422Response
- func (v NullableSendTestPurchase422Response) IsSet() bool
- func (v NullableSendTestPurchase422Response) MarshalJSON() ([]byte, error)
- func (v *NullableSendTestPurchase422Response) Set(val *SendTestPurchase422Response)
- func (v *NullableSendTestPurchase422Response) UnmarshalJSON(src []byte) error
- func (v *NullableSendTestPurchase422Response) Unset()
- type NullableSendTestPurchaseRequest
- func (v NullableSendTestPurchaseRequest) Get() *SendTestPurchaseRequest
- func (v NullableSendTestPurchaseRequest) IsSet() bool
- func (v NullableSendTestPurchaseRequest) MarshalJSON() ([]byte, error)
- func (v *NullableSendTestPurchaseRequest) Set(val *SendTestPurchaseRequest)
- func (v *NullableSendTestPurchaseRequest) UnmarshalJSON(src []byte) error
- func (v *NullableSendTestPurchaseRequest) Unset()
- type NullableSetDestinationTestMode200Response
- func (v NullableSetDestinationTestMode200Response) Get() *SetDestinationTestMode200Response
- func (v NullableSetDestinationTestMode200Response) IsSet() bool
- func (v NullableSetDestinationTestMode200Response) MarshalJSON() ([]byte, error)
- func (v *NullableSetDestinationTestMode200Response) Set(val *SetDestinationTestMode200Response)
- func (v *NullableSetDestinationTestMode200Response) UnmarshalJSON(src []byte) error
- func (v *NullableSetDestinationTestMode200Response) Unset()
- type NullableSetDestinationTestMode200ResponseDestination
- func (v NullableSetDestinationTestMode200ResponseDestination) Get() *SetDestinationTestMode200ResponseDestination
- func (v NullableSetDestinationTestMode200ResponseDestination) IsSet() bool
- func (v NullableSetDestinationTestMode200ResponseDestination) MarshalJSON() ([]byte, error)
- func (v *NullableSetDestinationTestMode200ResponseDestination) Set(val *SetDestinationTestMode200ResponseDestination)
- func (v *NullableSetDestinationTestMode200ResponseDestination) UnmarshalJSON(src []byte) error
- func (v *NullableSetDestinationTestMode200ResponseDestination) Unset()
- type NullableSetDestinationTestModeRequest
- func (v NullableSetDestinationTestModeRequest) Get() *SetDestinationTestModeRequest
- func (v NullableSetDestinationTestModeRequest) IsSet() bool
- func (v NullableSetDestinationTestModeRequest) MarshalJSON() ([]byte, error)
- func (v *NullableSetDestinationTestModeRequest) Set(val *SetDestinationTestModeRequest)
- func (v *NullableSetDestinationTestModeRequest) UnmarshalJSON(src []byte) error
- func (v *NullableSetDestinationTestModeRequest) Unset()
- type NullableString
- type NullableTime
- type NullableTrafficClass
- func (v NullableTrafficClass) Get() *TrafficClass
- func (v NullableTrafficClass) IsSet() bool
- func (v NullableTrafficClass) MarshalJSON() ([]byte, error)
- func (v *NullableTrafficClass) Set(val *TrafficClass)
- func (v *NullableTrafficClass) UnmarshalJSON(src []byte) error
- func (v *NullableTrafficClass) Unset()
- type NullableValidateSandboxEvent200Response
- func (v NullableValidateSandboxEvent200Response) Get() *ValidateSandboxEvent200Response
- func (v NullableValidateSandboxEvent200Response) IsSet() bool
- func (v NullableValidateSandboxEvent200Response) MarshalJSON() ([]byte, error)
- func (v *NullableValidateSandboxEvent200Response) Set(val *ValidateSandboxEvent200Response)
- func (v *NullableValidateSandboxEvent200Response) UnmarshalJSON(src []byte) error
- func (v *NullableValidateSandboxEvent200Response) Unset()
- type NullableValidateSandboxEventRequest
- func (v NullableValidateSandboxEventRequest) Get() *ValidateSandboxEventRequest
- func (v NullableValidateSandboxEventRequest) IsSet() bool
- func (v NullableValidateSandboxEventRequest) MarshalJSON() ([]byte, error)
- func (v *NullableValidateSandboxEventRequest) Set(val *ValidateSandboxEventRequest)
- func (v *NullableValidateSandboxEventRequest) UnmarshalJSON(src []byte) error
- func (v *NullableValidateSandboxEventRequest) Unset()
- type NullableValidateSandboxEventRequestValueData
- func (v NullableValidateSandboxEventRequestValueData) Get() *ValidateSandboxEventRequestValueData
- func (v NullableValidateSandboxEventRequestValueData) IsSet() bool
- func (v NullableValidateSandboxEventRequestValueData) MarshalJSON() ([]byte, error)
- func (v *NullableValidateSandboxEventRequestValueData) Set(val *ValidateSandboxEventRequestValueData)
- func (v *NullableValidateSandboxEventRequestValueData) UnmarshalJSON(src []byte) error
- func (v *NullableValidateSandboxEventRequestValueData) Unset()
- type NullableValidationError
- func (v NullableValidationError) Get() *ValidationError
- func (v NullableValidationError) IsSet() bool
- func (v NullableValidationError) MarshalJSON() ([]byte, error)
- func (v *NullableValidationError) Set(val *ValidationError)
- func (v *NullableValidationError) UnmarshalJSON(src []byte) error
- func (v *NullableValidationError) Unset()
- type OperationsAPIService
- func (a *OperationsAPIService) DeleteUserData(ctx context.Context) ApiDeleteUserDataRequest
- func (a *OperationsAPIService) DeleteUserDataExecute(r ApiDeleteUserDataRequest) (*DeleteUserData200Response, *http.Response, error)
- func (a *OperationsAPIService) GetEmqReport(ctx context.Context) ApiGetEmqReportRequest
- func (a *OperationsAPIService) GetEmqReportExecute(r ApiGetEmqReportRequest) (*GetEmqReport200Response, *http.Response, error)
- func (a *OperationsAPIService) GetReconciliationReport(ctx context.Context) ApiGetReconciliationReportRequest
- func (a *OperationsAPIService) GetReconciliationReportExecute(r ApiGetReconciliationReportRequest) (*GetReconciliationReport200Response, *http.Response, error)
- func (a *OperationsAPIService) ListEvents(ctx context.Context) ApiListEventsRequest
- func (a *OperationsAPIService) ListEventsByCursor(ctx context.Context) ApiListEventsByCursorRequest
- func (a *OperationsAPIService) ListEventsByCursorExecute(r ApiListEventsByCursorRequest) (*ListEventsByCursor200Response, *http.Response, error)
- func (a *OperationsAPIService) ListEventsExecute(r ApiListEventsRequest) (*ListEvents200Response, *http.Response, error)
- func (a *OperationsAPIService) ReplayDeliveries(ctx context.Context) ApiReplayDeliveriesRequest
- func (a *OperationsAPIService) ReplayDeliveriesExecute(r ApiReplayDeliveriesRequest) (*ReplayDeliveries202Response, *http.Response, error)
- func (a *OperationsAPIService) SendTestPurchase(ctx context.Context, destination string) ApiSendTestPurchaseRequest
- func (a *OperationsAPIService) SendTestPurchaseExecute(r ApiSendTestPurchaseRequest) (*SendTestPurchase200Response, *http.Response, error)
- func (a *OperationsAPIService) SetDestinationTestMode(ctx context.Context, destination string) ApiSetDestinationTestModeRequest
- func (a *OperationsAPIService) SetDestinationTestModeExecute(r ApiSetDestinationTestModeRequest) (*SetDestinationTestMode200Response, *http.Response, error)
- type ReconciliationReport
- func (o *ReconciliationReport) GetAcceptedCount() int32
- func (o *ReconciliationReport) GetAcceptedCountOk() (*int32, bool)
- func (o *ReconciliationReport) GetBuckets() []interface{}
- func (o *ReconciliationReport) GetBucketsOk() ([]interface{}, bool)
- func (o *ReconciliationReport) GetClaimedClicks() int32
- func (o *ReconciliationReport) GetClaimedClicksOk() (*int32, bool)
- func (o *ReconciliationReport) GetCreatedAt() time.Time
- func (o *ReconciliationReport) GetCreatedAtOk() (*time.Time, bool)
- func (o *ReconciliationReport) GetDestinationId() string
- func (o *ReconciliationReport) GetDestinationIdOk() (*string, bool)
- func (o *ReconciliationReport) GetEventCounts() []interface{}
- func (o *ReconciliationReport) GetEventCountsOk() ([]interface{}, bool)
- func (o *ReconciliationReport) GetId() int32
- func (o *ReconciliationReport) GetIdOk() (*int32, bool)
- func (o *ReconciliationReport) GetMetaCount() int32
- func (o *ReconciliationReport) GetMetaCountOk() (*int32, bool)
- func (o *ReconciliationReport) GetObservedGap() int32
- func (o *ReconciliationReport) GetObservedGapOk() (*int32, bool)
- func (o *ReconciliationReport) GetReportDate() time.Time
- func (o *ReconciliationReport) GetReportDateOk() (*time.Time, bool)
- func (o *ReconciliationReport) GetSignalTrackerId() string
- func (o *ReconciliationReport) GetSignalTrackerIdOk() (*string, bool)
- func (o *ReconciliationReport) GetStatus() string
- func (o *ReconciliationReport) GetStatusOk() (*string, bool)
- func (o *ReconciliationReport) GetUnexplainedResidual() int32
- func (o *ReconciliationReport) GetUnexplainedResidualOk() (*int32, bool)
- func (o *ReconciliationReport) GetUpdatedAt() time.Time
- func (o *ReconciliationReport) GetUpdatedAtOk() (*time.Time, bool)
- func (o ReconciliationReport) MarshalJSON() ([]byte, error)
- func (o *ReconciliationReport) SetAcceptedCount(v int32)
- func (o *ReconciliationReport) SetBuckets(v []interface{})
- func (o *ReconciliationReport) SetClaimedClicks(v int32)
- func (o *ReconciliationReport) SetCreatedAt(v time.Time)
- func (o *ReconciliationReport) SetDestinationId(v string)
- func (o *ReconciliationReport) SetEventCounts(v []interface{})
- func (o *ReconciliationReport) SetId(v int32)
- func (o *ReconciliationReport) SetMetaCount(v int32)
- func (o *ReconciliationReport) SetObservedGap(v int32)
- func (o *ReconciliationReport) SetReportDate(v time.Time)
- func (o *ReconciliationReport) SetSignalTrackerId(v string)
- func (o *ReconciliationReport) SetStatus(v string)
- func (o *ReconciliationReport) SetUnexplainedResidual(v int32)
- func (o *ReconciliationReport) SetUpdatedAt(v time.Time)
- func (o ReconciliationReport) ToMap() (map[string]interface{}, error)
- func (o *ReconciliationReport) UnmarshalJSON(data []byte) (err error)
- type ReplayDeliveries202Response
- func (o *ReplayDeliveries202Response) GetCapped() bool
- func (o *ReplayDeliveries202Response) GetCappedOk() (*bool, bool)
- func (o *ReplayDeliveries202Response) GetExpired() int32
- func (o *ReplayDeliveries202Response) GetExpiredOk() (*int32, bool)
- func (o *ReplayDeliveries202Response) GetPayloadExpired() int32
- func (o *ReplayDeliveries202Response) GetPayloadExpiredOk() (*int32, bool)
- func (o *ReplayDeliveries202Response) GetQueued() int32
- func (o *ReplayDeliveries202Response) GetQueuedOk() (*int32, bool)
- func (o ReplayDeliveries202Response) MarshalJSON() ([]byte, error)
- func (o *ReplayDeliveries202Response) SetCapped(v bool)
- func (o *ReplayDeliveries202Response) SetExpired(v int32)
- func (o *ReplayDeliveries202Response) SetPayloadExpired(v int32)
- func (o *ReplayDeliveries202Response) SetQueued(v int32)
- func (o ReplayDeliveries202Response) ToMap() (map[string]interface{}, error)
- func (o *ReplayDeliveries202Response) UnmarshalJSON(data []byte) (err error)
- type ReplayDeliveriesRequest
- func (o *ReplayDeliveriesRequest) GetDeliveryIds() []int32
- func (o *ReplayDeliveriesRequest) GetDeliveryIdsOk() ([]int32, bool)
- func (o *ReplayDeliveriesRequest) GetEventName() string
- func (o *ReplayDeliveriesRequest) GetEventNameOk() (*string, bool)
- func (o *ReplayDeliveriesRequest) GetLimit() int32
- func (o *ReplayDeliveriesRequest) GetLimitOk() (*int32, bool)
- func (o *ReplayDeliveriesRequest) HasDeliveryIds() bool
- func (o *ReplayDeliveriesRequest) HasEventName() bool
- func (o *ReplayDeliveriesRequest) HasLimit() bool
- func (o ReplayDeliveriesRequest) MarshalJSON() ([]byte, error)
- func (o *ReplayDeliveriesRequest) SetDeliveryIds(v []int32)
- func (o *ReplayDeliveriesRequest) SetEventName(v string)
- func (o *ReplayDeliveriesRequest) SetEventNameNil()
- func (o *ReplayDeliveriesRequest) SetLimit(v int32)
- func (o *ReplayDeliveriesRequest) SetLimitNil()
- func (o ReplayDeliveriesRequest) ToMap() (map[string]interface{}, error)
- func (o *ReplayDeliveriesRequest) UnmarshalJSON(data []byte) (err error)
- func (o *ReplayDeliveriesRequest) UnsetEventName()
- func (o *ReplayDeliveriesRequest) UnsetLimit()
- type SandboxAPIService
- func (a *SandboxAPIService) CreateSandboxKey(ctx context.Context) ApiCreateSandboxKeyRequest
- func (a *SandboxAPIService) CreateSandboxKeyExecute(r ApiCreateSandboxKeyRequest) (*CreateSandboxKey201Response, *http.Response, error)
- func (a *SandboxAPIService) GetSandbox(ctx context.Context) ApiGetSandboxRequest
- func (a *SandboxAPIService) GetSandboxExecute(r ApiGetSandboxRequest) (*GetSandbox200Response, *http.Response, error)
- func (a *SandboxAPIService) ValidateSandboxEvent(ctx context.Context) ApiValidateSandboxEventRequest
- func (a *SandboxAPIService) ValidateSandboxEventExecute(r ApiValidateSandboxEventRequest) (*ValidateSandboxEvent200Response, *http.Response, error)
- func (a *SandboxAPIService) ValidateSandboxEventWithKey(ctx context.Context) ApiValidateSandboxEventWithKeyRequest
- func (a *SandboxAPIService) ValidateSandboxEventWithKeyExecute(r ApiValidateSandboxEventWithKeyRequest) (*ValidateSandboxEvent200Response, *http.Response, error)
- type SendTestPurchase200Response
- func (o *SendTestPurchase200Response) GetEventId() string
- func (o *SendTestPurchase200Response) GetEventIdOk() (*string, bool)
- func (o *SendTestPurchase200Response) GetStatus() DeliveryStatus
- func (o *SendTestPurchase200Response) GetStatusOk() (*DeliveryStatus, bool)
- func (o *SendTestPurchase200Response) GetTraceId() string
- func (o *SendTestPurchase200Response) GetTraceIdOk() (*string, bool)
- func (o SendTestPurchase200Response) MarshalJSON() ([]byte, error)
- func (o *SendTestPurchase200Response) SetEventId(v string)
- func (o *SendTestPurchase200Response) SetStatus(v DeliveryStatus)
- func (o *SendTestPurchase200Response) SetTraceId(v string)
- func (o SendTestPurchase200Response) ToMap() (map[string]interface{}, error)
- func (o *SendTestPurchase200Response) UnmarshalJSON(data []byte) (err error)
- type SendTestPurchase422Response
- type SendTestPurchaseRequest
- func (o *SendTestPurchaseRequest) GetCurrency() string
- func (o *SendTestPurchaseRequest) GetCurrencyOk() (*string, bool)
- func (o *SendTestPurchaseRequest) GetOrderId() string
- func (o *SendTestPurchaseRequest) GetOrderIdOk() (*string, bool)
- func (o *SendTestPurchaseRequest) GetValue() string
- func (o *SendTestPurchaseRequest) GetValueOk() (*string, bool)
- func (o *SendTestPurchaseRequest) HasCurrency() bool
- func (o *SendTestPurchaseRequest) HasOrderId() bool
- func (o *SendTestPurchaseRequest) HasValue() bool
- func (o SendTestPurchaseRequest) MarshalJSON() ([]byte, error)
- func (o *SendTestPurchaseRequest) SetCurrency(v string)
- func (o *SendTestPurchaseRequest) SetCurrencyNil()
- func (o *SendTestPurchaseRequest) SetOrderId(v string)
- func (o *SendTestPurchaseRequest) SetOrderIdNil()
- func (o *SendTestPurchaseRequest) SetValue(v string)
- func (o *SendTestPurchaseRequest) SetValueNil()
- func (o SendTestPurchaseRequest) ToMap() (map[string]interface{}, error)
- func (o *SendTestPurchaseRequest) UnmarshalJSON(data []byte) (err error)
- func (o *SendTestPurchaseRequest) UnsetCurrency()
- func (o *SendTestPurchaseRequest) UnsetOrderId()
- func (o *SendTestPurchaseRequest) UnsetValue()
- type ServerConfiguration
- type ServerConfigurations
- type ServerVariable
- type SetDestinationTestMode200Response
- func (o *SetDestinationTestMode200Response) GetDestination() SetDestinationTestMode200ResponseDestination
- func (o *SetDestinationTestMode200Response) GetDestinationOk() (*SetDestinationTestMode200ResponseDestination, bool)
- func (o *SetDestinationTestMode200Response) GetTestMode() bool
- func (o *SetDestinationTestMode200Response) GetTestModeOk() (*bool, bool)
- func (o SetDestinationTestMode200Response) MarshalJSON() ([]byte, error)
- func (o *SetDestinationTestMode200Response) SetDestination(v SetDestinationTestMode200ResponseDestination)
- func (o *SetDestinationTestMode200Response) SetTestMode(v bool)
- func (o SetDestinationTestMode200Response) ToMap() (map[string]interface{}, error)
- func (o *SetDestinationTestMode200Response) UnmarshalJSON(data []byte) (err error)
- type SetDestinationTestMode200ResponseDestination
- func (o *SetDestinationTestMode200ResponseDestination) GetConfig() interface{}
- func (o *SetDestinationTestMode200ResponseDestination) GetConfigOk() (*interface{}, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetCreatedAt() string
- func (o *SetDestinationTestMode200ResponseDestination) GetCreatedAtOk() (*string, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetCredentialSource() DestinationCredentialSource
- func (o *SetDestinationTestMode200ResponseDestination) GetCredentialSourceOk() (*DestinationCredentialSource, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetId() string
- func (o *SetDestinationTestMode200ResponseDestination) GetIdOk() (*string, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountId() int32
- func (o *SetDestinationTestMode200ResponseDestination) GetPlatformAdAccountIdOk() (*int32, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetSignalTrackerId() string
- func (o *SetDestinationTestMode200ResponseDestination) GetSignalTrackerIdOk() (*string, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetStatus() DestinationStatus
- func (o *SetDestinationTestMode200ResponseDestination) GetStatusOk() (*DestinationStatus, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetType() DestinationType
- func (o *SetDestinationTestMode200ResponseDestination) GetTypeOk() (*DestinationType, bool)
- func (o *SetDestinationTestMode200ResponseDestination) GetUpdatedAt() string
- func (o *SetDestinationTestMode200ResponseDestination) GetUpdatedAtOk() (*string, bool)
- func (o SetDestinationTestMode200ResponseDestination) MarshalJSON() ([]byte, error)
- func (o *SetDestinationTestMode200ResponseDestination) SetConfig(v interface{})
- func (o *SetDestinationTestMode200ResponseDestination) SetCreatedAt(v string)
- func (o *SetDestinationTestMode200ResponseDestination) SetCredentialSource(v DestinationCredentialSource)
- func (o *SetDestinationTestMode200ResponseDestination) SetId(v string)
- func (o *SetDestinationTestMode200ResponseDestination) SetPlatformAdAccountId(v int32)
- func (o *SetDestinationTestMode200ResponseDestination) SetSignalTrackerId(v string)
- func (o *SetDestinationTestMode200ResponseDestination) SetStatus(v DestinationStatus)
- func (o *SetDestinationTestMode200ResponseDestination) SetType(v DestinationType)
- func (o *SetDestinationTestMode200ResponseDestination) SetUpdatedAt(v string)
- func (o SetDestinationTestMode200ResponseDestination) ToMap() (map[string]interface{}, error)
- func (o *SetDestinationTestMode200ResponseDestination) UnmarshalJSON(data []byte) (err error)
- type SetDestinationTestModeRequest
- func (o *SetDestinationTestModeRequest) GetEnabled() bool
- func (o *SetDestinationTestModeRequest) GetEnabledOk() (*bool, bool)
- func (o *SetDestinationTestModeRequest) GetTestEventCode() string
- func (o *SetDestinationTestModeRequest) GetTestEventCodeOk() (*string, bool)
- func (o *SetDestinationTestModeRequest) HasTestEventCode() bool
- func (o SetDestinationTestModeRequest) MarshalJSON() ([]byte, error)
- func (o *SetDestinationTestModeRequest) SetEnabled(v bool)
- func (o *SetDestinationTestModeRequest) SetTestEventCode(v string)
- func (o *SetDestinationTestModeRequest) SetTestEventCodeNil()
- func (o SetDestinationTestModeRequest) ToMap() (map[string]interface{}, error)
- func (o *SetDestinationTestModeRequest) UnmarshalJSON(data []byte) (err error)
- func (o *SetDestinationTestModeRequest) UnsetTestEventCode()
- type TrafficClass
- type ValidateSandboxEvent200Response
- func (o *ValidateSandboxEvent200Response) GetAccepted() bool
- func (o *ValidateSandboxEvent200Response) GetAcceptedOk() (*bool, bool)
- func (o *ValidateSandboxEvent200Response) GetEventId() string
- func (o *ValidateSandboxEvent200Response) GetEventIdOk() (*string, bool)
- func (o *ValidateSandboxEvent200Response) GetMessage() string
- func (o *ValidateSandboxEvent200Response) GetMessageOk() (*string, bool)
- func (o *ValidateSandboxEvent200Response) GetPersisted() bool
- func (o *ValidateSandboxEvent200Response) GetPersistedOk() (*bool, bool)
- func (o *ValidateSandboxEvent200Response) GetProviderDelivery() bool
- func (o *ValidateSandboxEvent200Response) GetProviderDeliveryOk() (*bool, bool)
- func (o *ValidateSandboxEvent200Response) GetSandbox() bool
- func (o *ValidateSandboxEvent200Response) GetSandboxOk() (*bool, bool)
- func (o *ValidateSandboxEvent200Response) GetStatus() string
- func (o *ValidateSandboxEvent200Response) GetStatusOk() (*string, bool)
- func (o ValidateSandboxEvent200Response) MarshalJSON() ([]byte, error)
- func (o *ValidateSandboxEvent200Response) SetAccepted(v bool)
- func (o *ValidateSandboxEvent200Response) SetEventId(v string)
- func (o *ValidateSandboxEvent200Response) SetMessage(v string)
- func (o *ValidateSandboxEvent200Response) SetPersisted(v bool)
- func (o *ValidateSandboxEvent200Response) SetProviderDelivery(v bool)
- func (o *ValidateSandboxEvent200Response) SetSandbox(v bool)
- func (o *ValidateSandboxEvent200Response) SetStatus(v string)
- func (o ValidateSandboxEvent200Response) ToMap() (map[string]interface{}, error)
- func (o *ValidateSandboxEvent200Response) UnmarshalJSON(data []byte) (err error)
- type ValidateSandboxEventRequest
- func (o *ValidateSandboxEventRequest) GetActionSource() string
- func (o *ValidateSandboxEventRequest) GetActionSourceOk() (*string, bool)
- func (o *ValidateSandboxEventRequest) GetEventId() string
- func (o *ValidateSandboxEventRequest) GetEventIdOk() (*string, bool)
- func (o *ValidateSandboxEventRequest) GetEventName() string
- func (o *ValidateSandboxEventRequest) GetEventNameOk() (*string, bool)
- func (o *ValidateSandboxEventRequest) GetValueData() ValidateSandboxEventRequestValueData
- func (o *ValidateSandboxEventRequest) GetValueDataOk() (*ValidateSandboxEventRequestValueData, bool)
- func (o *ValidateSandboxEventRequest) HasActionSource() bool
- func (o *ValidateSandboxEventRequest) HasEventId() bool
- func (o *ValidateSandboxEventRequest) HasValueData() bool
- func (o ValidateSandboxEventRequest) MarshalJSON() ([]byte, error)
- func (o *ValidateSandboxEventRequest) SetActionSource(v string)
- func (o *ValidateSandboxEventRequest) SetEventId(v string)
- func (o *ValidateSandboxEventRequest) SetEventName(v string)
- func (o *ValidateSandboxEventRequest) SetValueData(v ValidateSandboxEventRequestValueData)
- func (o ValidateSandboxEventRequest) ToMap() (map[string]interface{}, error)
- func (o *ValidateSandboxEventRequest) UnmarshalJSON(data []byte) (err error)
- type ValidateSandboxEventRequestValueData
- func (o *ValidateSandboxEventRequestValueData) GetCurrency() string
- func (o *ValidateSandboxEventRequestValueData) GetCurrencyOk() (*string, bool)
- func (o *ValidateSandboxEventRequestValueData) GetOrderId() string
- func (o *ValidateSandboxEventRequestValueData) GetOrderIdOk() (*string, bool)
- func (o *ValidateSandboxEventRequestValueData) GetValue() string
- func (o *ValidateSandboxEventRequestValueData) GetValueOk() (*string, bool)
- func (o *ValidateSandboxEventRequestValueData) HasCurrency() bool
- func (o *ValidateSandboxEventRequestValueData) HasOrderId() bool
- func (o *ValidateSandboxEventRequestValueData) HasValue() bool
- func (o ValidateSandboxEventRequestValueData) MarshalJSON() ([]byte, error)
- func (o *ValidateSandboxEventRequestValueData) SetCurrency(v string)
- func (o *ValidateSandboxEventRequestValueData) SetOrderId(v string)
- func (o *ValidateSandboxEventRequestValueData) SetValue(v string)
- func (o ValidateSandboxEventRequestValueData) ToMap() (map[string]interface{}, error)
- func (o *ValidateSandboxEventRequestValueData) UnmarshalJSON(data []byte) (err error)
- type ValidationError
- func (o *ValidationError) GetErrors() map[string][]string
- func (o *ValidationError) GetErrorsOk() (map[string][]string, bool)
- func (o *ValidationError) GetMessage() string
- func (o *ValidationError) GetMessageOk() (*string, bool)
- func (o ValidationError) MarshalJSON() ([]byte, error)
- func (o *ValidationError) SetErrors(v map[string][]string)
- func (o *ValidationError) SetMessage(v string)
- func (o ValidationError) ToMap() (map[string]interface{}, error)
- func (o *ValidationError) UnmarshalJSON(data []byte) (err error)
Examples ¶
Constants ¶
This section is empty.
Variables ¶
var ( JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) )
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") )
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
var AllowedDestinationCredentialSourceEnumValues = []DestinationCredentialSource{
"oauth_connection",
"managed_token",
"unknown_default_open_api",
}
All allowed values of DestinationCredentialSource enum
var AllowedDestinationStatusEnumValues = []DestinationStatus{
"active",
"inactive",
"unknown_default_open_api",
}
All allowed values of DestinationStatus enum
var AllowedDestinationTypeEnumValues = []DestinationType{
"meta",
"unknown_default_open_api",
}
All allowed values of DestinationType enum
var AllowedJurisdictionPolicyClassEnumValues = []JurisdictionPolicyClass{
"strict_eu",
"global",
"unknown_default_open_api",
}
All allowed values of JurisdictionPolicyClass enum
var AllowedTrafficClassEnumValues = []TrafficClass{
"valid",
"invalid",
"unknown_default_open_api",
}
All allowed values of TrafficClass enum
Functions ¶
func CacheExpires ¶
CacheExpires helper function to determine remaining time before repeating a request.
func PtrFloat32 ¶
PtrFloat32 is a helper routine that returns a pointer to given float value.
func PtrFloat64 ¶
PtrFloat64 is a helper routine that returns a pointer to given float 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 ¶
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 (r ApiCreateEventRequest) Execute() (*CreateEvent200Response, *http.Response, error)
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 ¶
func (r ApiCreateSandboxKeyRequest) Execute() (*CreateSandboxKey201Response, *http.Response, error)
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 ¶
func (r ApiDeleteUserDataRequest) Execute() (*DeleteUserData200Response, *http.Response, error)
type ApiGetEmqReportRequest ¶
type ApiGetEmqReportRequest struct {
ApiService *OperationsAPIService
// contains filtered or unexported fields
}
func (ApiGetEmqReportRequest) Execute ¶
func (r ApiGetEmqReportRequest) Execute() (*GetEmqReport200Response, *http.Response, error)
type ApiGetEventRequest ¶
type ApiGetEventRequest struct {
ApiService *EventAPIService
// contains filtered or unexported fields
}
func (ApiGetEventRequest) Execute ¶
func (r ApiGetEventRequest) Execute() (*GetEvent200Response, *http.Response, error)
type ApiGetReconciliationReportRequest ¶
type ApiGetReconciliationReportRequest struct {
ApiService *OperationsAPIService
// contains filtered or unexported fields
}
func (ApiGetReconciliationReportRequest) Date ¶
func (r ApiGetReconciliationReportRequest) Date(date string) ApiGetReconciliationReportRequest
func (ApiGetReconciliationReportRequest) Execute ¶
func (r ApiGetReconciliationReportRequest) Execute() (*GetReconciliationReport200Response, *http.Response, error)
type ApiGetSandboxRequest ¶
type ApiGetSandboxRequest struct {
ApiService *SandboxAPIService
// contains filtered or unexported fields
}
func (ApiGetSandboxRequest) Execute ¶
func (r ApiGetSandboxRequest) Execute() (*GetSandbox200Response, *http.Response, error)
type ApiListEventsByCursorRequest ¶
type ApiListEventsByCursorRequest struct {
ApiService *OperationsAPIService
// contains filtered or unexported fields
}
func (ApiListEventsByCursorRequest) Cursor ¶
func (r ApiListEventsByCursorRequest) Cursor(cursor string) ApiListEventsByCursorRequest
Opaque cursor returned by a previous response. Omit it on the first request.
func (ApiListEventsByCursorRequest) Execute ¶
func (r ApiListEventsByCursorRequest) Execute() (*ListEventsByCursor200Response, *http.Response, error)
func (ApiListEventsByCursorRequest) PerPage ¶
func (r ApiListEventsByCursorRequest) PerPage(perPage int32) ApiListEventsByCursorRequest
Events per cursor page, capped at 100.
type ApiListEventsRequest ¶
type ApiListEventsRequest struct {
ApiService *OperationsAPIService
// contains filtered or unexported fields
}
func (ApiListEventsRequest) Execute ¶
func (r ApiListEventsRequest) Execute() (*ListEvents200Response, *http.Response, error)
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 (r ApiReplayDeliveriesRequest) Execute() (*ReplayDeliveries202Response, *http.Response, error)
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 (r ApiSendTestPurchaseRequest) Execute() (*SendTestPurchase200Response, *http.Response, error)
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 (r ApiSetDestinationTestModeRequest) Execute() (*SetDestinationTestMode200Response, *http.Response, error)
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 (r ApiValidateSandboxEventRequest) Execute() (*ValidateSandboxEvent200Response, *http.Response, error)
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 (r ApiValidateSandboxEventWithKeyRequest) Execute() (*ValidateSandboxEvent200Response, *http.Response, error)
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 ¶
func (r ApiVerifySignalIngestionRequest) Execute() (*CreateEvent200Response, *http.Response, error)
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) ServerURLWithContext ¶
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 ¶
func (o *CreateEventRequestAnyOf) GetEventTime() CreateEventRequestAnyOfEventTime
GetEventTime returns the EventTime field value if set, zero value otherwise.
func (*CreateEventRequestAnyOf) GetEventTimeOk ¶
func (o *CreateEventRequestAnyOf) GetEventTimeOk() (*CreateEventRequestAnyOfEventTime, bool)
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 ¶
func (o *CreateEventRequestAnyOf) GetValueData() CreateEventRequestAnyOfValueData
GetValueData returns the ValueData field value if set, zero value otherwise.
func (*CreateEventRequestAnyOf) GetValueDataOk ¶
func (o *CreateEventRequestAnyOf) GetValueDataOk() (*CreateEventRequestAnyOfValueData, bool)
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 ¶
func (o *CreateEventRequestAnyOf) SetEventTime(v CreateEventRequestAnyOfEventTime)
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 ¶
func (o *CreateEventRequestAnyOf) SetValueData(v CreateEventRequestAnyOfValueData)
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 ¶
func (o *CreateEventRequestAnyOf1) GetEventTime() CreateEventRequestAnyOfEventTime
GetEventTime returns the EventTime field value if set, zero value otherwise.
func (*CreateEventRequestAnyOf1) GetEventTimeOk ¶
func (o *CreateEventRequestAnyOf1) GetEventTimeOk() (*CreateEventRequestAnyOfEventTime, bool)
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 ¶
func (o *CreateEventRequestAnyOf1) GetValueData() CreateEventRequestAnyOfValueData
GetValueData returns the ValueData field value if set, zero value otherwise.
func (*CreateEventRequestAnyOf1) GetValueDataOk ¶
func (o *CreateEventRequestAnyOf1) GetValueDataOk() (*CreateEventRequestAnyOfValueData, bool)
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 ¶
func (o *CreateEventRequestAnyOf1) SetEventTime(v CreateEventRequestAnyOfEventTime)
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 ¶
func (o *CreateEventRequestAnyOf1) SetValueData(v CreateEventRequestAnyOfValueData)
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 ¶
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 ¶
func (o *CreateEventRequestAnyOfValueData) GetValue() string
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 ¶
func (o *CreateEventRequestAnyOfValueData) SetValue(v string)
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 ¶
func (o *CreateSandboxKey201Response) GetUse() CreateSandboxKey201ResponseUse
GetUse returns the Use field value
func (*CreateSandboxKey201Response) GetUseOk ¶
func (o *CreateSandboxKey201Response) GetUseOk() (*CreateSandboxKey201ResponseUse, bool)
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 ¶
func (o *CreateSandboxKey201Response) SetUse(v CreateSandboxKey201ResponseUse)
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 ¶
func (o *CreateSandboxKey201ResponseUse) GetUrl() string
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 ¶
func (o *CreateSandboxKey201ResponseUse) SetUrl(v string)
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) 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) 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 ¶
func (v DestinationCredentialSource) Ptr() *DestinationCredentialSource
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 ¶
func (v DestinationStatus) Ptr() *DestinationStatus
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 ¶
func (v DestinationType) Ptr() *DestinationType
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) 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) 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) 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 ¶
GetActionSource returns the ActionSource field value
func (*Event) GetActionSourceOk ¶
GetActionSourceOk returns a tuple with the ActionSource field value and a boolean to check if the value has been set.
func (*Event) GetAttributionJoin ¶
GetAttributionJoin returns the AttributionJoin field value
func (*Event) GetAttributionJoinOk ¶
GetAttributionJoinOk returns a tuple with the AttributionJoin field value and a boolean to check if the value has been set.
func (*Event) GetClickIds ¶
GetClickIds returns the ClickIds field value
func (*Event) GetClickIdsOk ¶
GetClickIdsOk returns a tuple with the ClickIds field value and a boolean to check if the value has been set.
func (*Event) GetConsent ¶
GetConsent returns the Consent field value
func (*Event) GetConsentBasis ¶
GetConsentBasis returns the ConsentBasis field value
func (*Event) GetConsentBasisOk ¶
GetConsentBasisOk returns a tuple with the ConsentBasis field value and a boolean to check if the value has been set.
func (*Event) GetConsentNormalizationVersion ¶
GetConsentNormalizationVersion returns the ConsentNormalizationVersion field value
func (*Event) GetConsentNormalizationVersionOk ¶
GetConsentNormalizationVersionOk returns a tuple with the ConsentNormalizationVersion field value and a boolean to check if the value has been set.
func (*Event) GetConsentOk ¶
GetConsentOk returns a tuple with the Consent field value and a boolean to check if the value has been set.
func (*Event) GetCreatedAt ¶
GetCreatedAt returns the CreatedAt field value
func (*Event) GetCreatedAtOk ¶
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 ¶
GetDeliveriesOk returns a tuple with the Deliveries field value and a boolean to check if the value has been set.
func (*Event) GetEnforcementScope ¶
GetEnforcementScope returns the EnforcementScope field value
func (*Event) GetEnforcementScopeOk ¶
GetEnforcementScopeOk returns a tuple with the EnforcementScope field value and a boolean to check if the value has been set.
func (*Event) GetEventClass ¶
GetEventClass returns the EventClass field value
func (*Event) GetEventClassOk ¶
GetEventClassOk returns a tuple with the EventClass field value and a boolean to check if the value has been set.
func (*Event) GetEventName ¶
GetEventName returns the EventName field value
func (*Event) GetEventNameOk ¶
GetEventNameOk returns a tuple with the EventName field value and a boolean to check if the value has been set.
func (*Event) GetEventSource ¶
GetEventSource returns the EventSource field value
func (*Event) GetEventSourceOk ¶
GetEventSourceOk returns a tuple with the EventSource field value and a boolean to check if the value has been set.
func (*Event) GetEventTime ¶
GetEventTime returns the EventTime field value
func (*Event) GetEventTimeOk ¶
GetEventTimeOk returns a tuple with the EventTime field value and a boolean to check if the value has been set.
func (*Event) GetIdOk ¶
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*Event) GetMeasurementClass ¶
GetMeasurementClass returns the MeasurementClass field value
func (*Event) GetMeasurementClassOk ¶
GetMeasurementClassOk returns a tuple with the MeasurementClass field value and a boolean to check if the value has been set.
func (*Event) GetOrderId ¶
GetOrderId returns the OrderId field value If the value is explicit nil, the zero value for string will be returned
func (*Event) GetOrderIdOk ¶
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 ¶
GetParentEventId returns the ParentEventId field value If the value is explicit nil, the zero value for string will be returned
func (*Event) GetParentEventIdOk ¶
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 ¶
GetPayloadExpired returns the PayloadExpired field value
func (*Event) GetPayloadExpiredOk ¶
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 ¶
GetSession returns the Session field value
func (*Event) GetSessionOk ¶
GetSessionOk returns a tuple with the Session field value and a boolean to check if the value has been set.
func (*Event) GetSignalTrackerId ¶
GetSignalTrackerId returns the SignalTrackerId field value
func (*Event) GetSignalTrackerIdOk ¶
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 ¶
GetUserDataHashed returns the UserDataHashed field value
func (*Event) GetUserDataHashedOk ¶
GetUserDataHashedOk returns a tuple with the UserDataHashed field value and a boolean to check if the value has been set.
func (*Event) GetValueAmount ¶
GetValueAmount returns the ValueAmount field value If the value is explicit nil, the zero value for int32 will be returned
func (*Event) GetValueAmountOk ¶
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 ¶
GetValueCurrency returns the ValueCurrency field value If the value is explicit nil, the zero value for string will be returned
func (*Event) GetValueCurrencyOk ¶
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 ¶
GetValueData returns the ValueData field value
func (*Event) GetValueDataOk ¶
GetValueDataOk returns a tuple with the ValueData field value and a boolean to check if the value has been set.
func (Event) MarshalJSON ¶
func (*Event) SetActionSource ¶
SetActionSource sets field value
func (*Event) SetAttributionJoin ¶
SetAttributionJoin sets field value
func (*Event) SetConsentBasis ¶
SetConsentBasis sets field value
func (*Event) SetConsentNormalizationVersion ¶
SetConsentNormalizationVersion sets field value
func (*Event) SetCreatedAt ¶
SetCreatedAt sets field value
func (*Event) SetDeliveries ¶
func (o *Event) SetDeliveries(v []interface{})
SetDeliveries sets field value
func (*Event) SetEnforcementScope ¶
SetEnforcementScope sets field value
func (*Event) SetEventClass ¶
SetEventClass sets field value
func (*Event) SetEventSource ¶
SetEventSource sets field value
func (*Event) SetEventTime ¶
SetEventTime sets field value
func (*Event) SetMeasurementClass ¶
SetMeasurementClass sets field value
func (*Event) SetParentEventId ¶
SetParentEventId sets field value
func (*Event) SetPayloadExpired ¶
SetPayloadExpired sets field value
func (*Event) SetPolicyClass ¶
func (o *Event) SetPolicyClass(v JurisdictionPolicyClass)
SetPolicyClass sets field value
func (*Event) SetSignalTrackerId ¶
SetSignalTrackerId sets field value
func (*Event) SetTrafficClass ¶
func (o *Event) SetTrafficClass(v TrafficClass)
SetTrafficClass sets field value
func (*Event) SetUserDataHashed ¶
SetUserDataHashed sets field value
func (*Event) SetValueAmount ¶
SetValueAmount sets field value
func (*Event) SetValueCurrency ¶
SetValueCurrency sets field value
func (*Event) UnmarshalJSON ¶
type EventAPIService ¶
type EventAPIService service
EventAPIService EventAPI service
func (*EventAPIService) CreateEvent ¶
func (a *EventAPIService) CreateEvent(ctx context.Context) ApiCreateEventRequest
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 ¶
func (a *EventAPIService) CreateEventExecute(r ApiCreateEventRequest) (*CreateEvent200Response, *http.Response, error)
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 ¶
func (a *EventAPIService) GetEventExecute(r ApiGetEventRequest) (*GetEvent200Response, *http.Response, error)
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 ¶
func (a *EventAPIService) VerifySignalIngestionExecute(r ApiVerifySignalIngestionRequest) (*CreateEvent200Response, *http.Response, error)
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 ¶
func (o *GetEmqReport200Response) GetSnapshots() []GetEmqReport200ResponseSnapshotsInner
GetSnapshots returns the Snapshots field value
func (*GetEmqReport200Response) GetSnapshotsOk ¶
func (o *GetEmqReport200Response) GetSnapshotsOk() ([]GetEmqReport200ResponseSnapshotsInner, bool)
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 ¶
func (o *GetEmqReport200Response) SetSnapshots(v []GetEmqReport200ResponseSnapshotsInner)
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetAlerted() bool
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetCreatedAt() string
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetId() int32
GetId returns the Id field value
func (*GetEmqReport200ResponseSnapshotsInner) GetIdOk ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetIdOk() (*int32, bool)
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetScore() float32
GetScore returns the Score field value
func (*GetEmqReport200ResponseSnapshotsInner) GetScoreOk ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetScoreOk() (*float32, bool)
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) GetUpdatedAt() string
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) SetAlerted(v bool)
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) SetId(v int32)
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 ¶
func (o *GetEmqReport200ResponseSnapshotsInner) SetScore(v float32)
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 ¶
func NewGetEvent200Response(event GetEvent200ResponseEvent, lineage GetEvent200ResponseLineage, deliveries []GetEvent200ResponseDeliveriesInner) *GetEvent200Response
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 ¶
func (o *GetEvent200Response) GetDeliveries() []GetEvent200ResponseDeliveriesInner
GetDeliveries returns the Deliveries field value
func (*GetEvent200Response) GetDeliveriesOk ¶
func (o *GetEvent200Response) GetDeliveriesOk() ([]GetEvent200ResponseDeliveriesInner, bool)
GetDeliveriesOk returns a tuple with the Deliveries field value and a boolean to check if the value has been set.
func (*GetEvent200Response) GetEvent ¶
func (o *GetEvent200Response) GetEvent() GetEvent200ResponseEvent
GetEvent returns the Event field value
func (*GetEvent200Response) GetEventOk ¶
func (o *GetEvent200Response) GetEventOk() (*GetEvent200ResponseEvent, bool)
GetEventOk returns a tuple with the Event field value and a boolean to check if the value has been set.
func (*GetEvent200Response) GetLineage ¶
func (o *GetEvent200Response) GetLineage() GetEvent200ResponseLineage
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 ¶
func (o *GetEvent200Response) SetDeliveries(v []GetEvent200ResponseDeliveriesInner)
SetDeliveries sets field value
func (*GetEvent200Response) SetEvent ¶
func (o *GetEvent200Response) SetEvent(v GetEvent200ResponseEvent)
SetEvent sets field value
func (*GetEvent200Response) SetLineage ¶
func (o *GetEvent200Response) SetLineage(v GetEvent200ResponseLineage)
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 ¶
func (o *GetEvent200ResponseDeliveriesInner) GetEventId() string
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 ¶
func (o *GetEvent200ResponseDeliveriesInner) GetId() int32
GetId returns the Id field value
func (*GetEvent200ResponseDeliveriesInner) GetIdOk ¶
func (o *GetEvent200ResponseDeliveriesInner) GetIdOk() (*int32, bool)
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*GetEvent200ResponseDeliveriesInner) GetIsTest ¶
func (o *GetEvent200ResponseDeliveriesInner) GetIsTest() bool
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 ¶
func (o *GetEvent200ResponseDeliveriesInner) GetStatus() DeliveryStatus
GetStatus returns the Status field value
func (*GetEvent200ResponseDeliveriesInner) GetStatusOk ¶
func (o *GetEvent200ResponseDeliveriesInner) GetStatusOk() (*DeliveryStatus, bool)
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 ¶
func (o *GetEvent200ResponseDeliveriesInner) SetId(v int32)
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 ¶
func (o *GetEvent200ResponseDeliveriesInner) SetStatus(v DeliveryStatus)
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 ¶
func (o *GetEvent200ResponseEvent) GetDeliveries() []GetEvent200ResponseEventDeliveriesInner
GetDeliveries returns the Deliveries field value
func (*GetEvent200ResponseEvent) GetDeliveriesOk ¶
func (o *GetEvent200ResponseEvent) GetDeliveriesOk() ([]GetEvent200ResponseEventDeliveriesInner, bool)
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 ¶
func (o *GetEvent200ResponseEvent) SetDeliveries(v []GetEvent200ResponseEventDeliveriesInner)
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetCreatedAt() string
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetEventId() string
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetId() int32
GetId returns the Id field value
func (*GetEvent200ResponseEventDeliveriesInner) GetIdOk ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetIdOk() (*int32, bool)
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*GetEvent200ResponseEventDeliveriesInner) GetIsTest ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetIsTest() bool
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetStatus() DeliveryStatus
GetStatus returns the Status field value
func (*GetEvent200ResponseEventDeliveriesInner) GetStatusOk ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetStatusOk() (*DeliveryStatus, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*GetEvent200ResponseEventDeliveriesInner) GetUpdatedAt ¶
func (o *GetEvent200ResponseEventDeliveriesInner) GetUpdatedAt() string
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetCreatedAt(v string)
SetCreatedAt sets field value
func (*GetEvent200ResponseEventDeliveriesInner) SetDestinationId ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetDestinationId(v string)
SetDestinationId sets field value
func (*GetEvent200ResponseEventDeliveriesInner) SetEventId ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetEventId(v string)
SetEventId sets field value
func (*GetEvent200ResponseEventDeliveriesInner) SetId ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetId(v int32)
SetId sets field value
func (*GetEvent200ResponseEventDeliveriesInner) SetIsTest ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetIsTest(v bool)
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 ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetStatus(v DeliveryStatus)
SetStatus sets field value
func (*GetEvent200ResponseEventDeliveriesInner) SetUpdatedAt ¶
func (o *GetEvent200ResponseEventDeliveriesInner) SetUpdatedAt(v string)
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 ¶
func NewGetEvent200ResponseLineage(parent NullableGetEvent200ResponseLineageParent, children []GetEvent200ResponseLineageChildrenInner) *GetEvent200ResponseLineage
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 ¶
func (o *GetEvent200ResponseLineage) GetChildren() []GetEvent200ResponseLineageChildrenInner
GetChildren returns the Children field value
func (*GetEvent200ResponseLineage) GetChildrenOk ¶
func (o *GetEvent200ResponseLineage) GetChildrenOk() ([]GetEvent200ResponseLineageChildrenInner, bool)
GetChildrenOk returns a tuple with the Children field value and a boolean to check if the value has been set.
func (*GetEvent200ResponseLineage) GetParent ¶
func (o *GetEvent200ResponseLineage) GetParent() GetEvent200ResponseLineageParent
GetParent returns the Parent field value If the value is explicit nil, the zero value for GetEvent200ResponseLineageParent will be returned
func (*GetEvent200ResponseLineage) GetParentOk ¶
func (o *GetEvent200ResponseLineage) GetParentOk() (*GetEvent200ResponseLineageParent, bool)
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 ¶
func (o *GetEvent200ResponseLineage) SetChildren(v []GetEvent200ResponseLineageChildrenInner)
SetChildren sets field value
func (*GetEvent200ResponseLineage) SetParent ¶
func (o *GetEvent200ResponseLineage) SetParent(v GetEvent200ResponseLineageParent)
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetCreatedAt() string
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetEventClass() string
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetEventName() string
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetEventTime() string
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetId() string
GetId returns the Id field value
func (*GetEvent200ResponseLineageChildrenInner) GetIdOk ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetIdOk() (*string, bool)
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) GetOrderId() string
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetCreatedAt(v string)
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 ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetEventName(v string)
SetEventName sets field value
func (*GetEvent200ResponseLineageChildrenInner) SetEventSource ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetEventSource(v string)
SetEventSource sets field value
func (*GetEvent200ResponseLineageChildrenInner) SetEventTime ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetEventTime(v string)
SetEventTime sets field value
func (*GetEvent200ResponseLineageChildrenInner) SetId ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetId(v string)
SetId sets field value
func (*GetEvent200ResponseLineageChildrenInner) SetMeasurementClass ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetMeasurementClass(v string)
SetMeasurementClass sets field value
func (*GetEvent200ResponseLineageChildrenInner) SetOrderId ¶
func (o *GetEvent200ResponseLineageChildrenInner) SetOrderId(v string)
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 ¶
func (o *GetEvent200ResponseLineageParent) GetId() string
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 ¶
func (o *GetEvent200ResponseLineageParent) SetId(v string)
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 ¶
func (o *GetReconciliationReport200Response) GetDate() string
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 ¶
func (o *GetReconciliationReport200Response) GetReports() []GetReconciliationReport200ResponseReportsInner
GetReports returns the Reports field value
func (*GetReconciliationReport200Response) GetReportsOk ¶
func (o *GetReconciliationReport200Response) GetReportsOk() ([]GetReconciliationReport200ResponseReportsInner, bool)
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 ¶
func (o *GetReconciliationReport200Response) SetDate(v string)
SetDate sets field value
func (*GetReconciliationReport200Response) SetReports ¶
func (o *GetReconciliationReport200Response) SetReports(v []GetReconciliationReport200ResponseReportsInner)
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetAcceptedCount() int32
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetBuckets() map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue
GetBuckets returns the Buckets field value
func (*GetReconciliationReport200ResponseReportsInner) GetBucketsOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetBucketsOk() (map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue, bool)
GetBucketsOk returns a tuple with the Buckets field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetCreatedAt ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetCreatedAt() string
GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for string will be returned
func (*GetReconciliationReport200ResponseReportsInner) GetCreatedAtOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) 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 (*GetReconciliationReport200ResponseReportsInner) GetDestination ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetDestination() SetDestinationTestMode200ResponseDestination
GetDestination returns the Destination field value
func (*GetReconciliationReport200ResponseReportsInner) GetDestinationId ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationId() string
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetDestinationOk() (*SetDestinationTestMode200ResponseDestination, bool)
GetDestinationOk returns a tuple with the Destination field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetEventCounts ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetEventCounts() GetReconciliationReport200ResponseReportsInnerEventCounts
GetEventCounts returns the EventCounts field value
func (*GetReconciliationReport200ResponseReportsInner) GetEventCountsOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetEventCountsOk() (*GetReconciliationReport200ResponseReportsInnerEventCounts, bool)
GetEventCountsOk returns a tuple with the EventCounts field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetId ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetId() int32
GetId returns the Id field value
func (*GetReconciliationReport200ResponseReportsInner) GetIdOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetIdOk() (*int32, bool)
GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetMetaCount ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetMetaCount() int32
GetMetaCount returns the MetaCount field value
func (*GetReconciliationReport200ResponseReportsInner) GetMetaCountOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetMetaCountOk() (*int32, bool)
GetMetaCountOk returns a tuple with the MetaCount field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetObservedGap ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetObservedGap() int32
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetReportDate() string
GetReportDate returns the ReportDate field value
func (*GetReconciliationReport200ResponseReportsInner) GetReportDateOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetReportDateOk() (*string, bool)
GetReportDateOk returns a tuple with the ReportDate field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInner) GetSignalTrackerId ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetSignalTrackerId() string
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetStatus() string
GetStatus returns the Status field value
func (*GetReconciliationReport200ResponseReportsInner) GetStatusOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetStatusOk() (*string, bool)
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 ¶
func (o *GetReconciliationReport200ResponseReportsInner) GetUpdatedAt() string
GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned
func (*GetReconciliationReport200ResponseReportsInner) GetUpdatedAtOk ¶
func (o *GetReconciliationReport200ResponseReportsInner) 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 (GetReconciliationReport200ResponseReportsInner) MarshalJSON ¶
func (o GetReconciliationReport200ResponseReportsInner) MarshalJSON() ([]byte, error)
func (*GetReconciliationReport200ResponseReportsInner) SetAcceptedCount ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetAcceptedCount(v int32)
SetAcceptedCount sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetBuckets ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetBuckets(v map[string]GetReconciliationReport200ResponseReportsInnerBucketsValue)
SetBuckets sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetCreatedAt ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetCreatedAt(v string)
SetCreatedAt sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetDestination ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetDestination(v SetDestinationTestMode200ResponseDestination)
SetDestination sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetDestinationId ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetDestinationId(v string)
SetDestinationId sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetEventCounts ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetEventCounts(v GetReconciliationReport200ResponseReportsInnerEventCounts)
SetEventCounts sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetId ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetId(v int32)
SetId sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetMetaCount ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetMetaCount(v int32)
SetMetaCount sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetObservedGap ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetObservedGap(v int32)
SetObservedGap sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetReportDate ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetReportDate(v string)
SetReportDate sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetSignalTrackerId ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetSignalTrackerId(v string)
SetSignalTrackerId sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetStatus ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetStatus(v string)
SetStatus sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetUnexplainedResidual ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetUnexplainedResidual(v int32)
SetUnexplainedResidual sets field value
func (*GetReconciliationReport200ResponseReportsInner) SetUpdatedAt ¶
func (o *GetReconciliationReport200ResponseReportsInner) SetUpdatedAt(v string)
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 ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasis() string
GetBasis returns the Basis field value
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasisOk ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetBasisOk() (*string, bool)
GetBasisOk returns a tuple with the Basis field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCount ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCount() int32
GetCount returns the Count field value
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCountOk ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetCountOk() (*int32, bool)
GetCountOk returns a tuple with the Count field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanation ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanation() string
GetExplanation returns the Explanation field value
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanationOk ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) GetExplanationOk() (*string, bool)
GetExplanationOk returns a tuple with the Explanation field value and a boolean to check if the value has been set.
func (GetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON ¶
func (o GetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON() ([]byte, error)
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetBasis ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetBasis(v string)
SetBasis sets field value
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetCount ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetCount(v int32)
SetCount sets field value
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) SetExplanation ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) SetExplanation(v string)
SetExplanation sets field value
func (GetReconciliationReport200ResponseReportsInnerBucketsValue) ToMap ¶
func (o GetReconciliationReport200ResponseReportsInnerBucketsValue) ToMap() (map[string]interface{}, error)
func (*GetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON ¶
func (o *GetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON(data []byte) (err error)
type GetReconciliationReport200ResponseReportsInnerEventCounts ¶
type GetReconciliationReport200ResponseReportsInnerEventCounts struct {
Accepted GetReconciliationReport200ResponseReportsInnerEventCountsAccepted `json:"accepted"`
Meta GetReconciliationReport200ResponseReportsInnerEventCountsAccepted `json:"meta"`
AdditionalProperties map[string]interface{}
}
GetReconciliationReport200ResponseReportsInnerEventCounts struct for GetReconciliationReport200ResponseReportsInnerEventCounts
func NewGetReconciliationReport200ResponseReportsInnerEventCounts ¶
func NewGetReconciliationReport200ResponseReportsInnerEventCounts(accepted GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, meta GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) *GetReconciliationReport200ResponseReportsInnerEventCounts
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 ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetAccepted() GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
GetAccepted returns the Accepted field value
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetAcceptedOk ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetAcceptedOk() (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, bool)
GetAcceptedOk returns a tuple with the Accepted field value and a boolean to check if the value has been set.
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetMeta ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetMeta() GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
GetMeta returns the Meta field value
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) GetMetaOk ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) GetMetaOk() (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted, bool)
GetMetaOk returns a tuple with the Meta field value and a boolean to check if the value has been set.
func (GetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON ¶
func (o GetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON() ([]byte, error)
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) SetAccepted ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) SetAccepted(v GetReconciliationReport200ResponseReportsInnerEventCountsAccepted)
SetAccepted sets field value
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) SetMeta ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) SetMeta(v GetReconciliationReport200ResponseReportsInnerEventCountsAccepted)
SetMeta sets field value
func (GetReconciliationReport200ResponseReportsInnerEventCounts) ToMap ¶
func (o GetReconciliationReport200ResponseReportsInnerEventCounts) ToMap() (map[string]interface{}, error)
func (*GetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON ¶
func (o *GetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON(data []byte) (err error)
type GetReconciliationReport200ResponseReportsInnerEventCountsAccepted ¶
type GetReconciliationReport200ResponseReportsInnerEventCountsAccepted struct {
ArrayOfAny *[]interface{}
MapmapOfStringint32 *map[string]int32
}
GetReconciliationReport200ResponseReportsInnerEventCountsAccepted struct for GetReconciliationReport200ResponseReportsInnerEventCountsAccepted
func (GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON ¶
func (src GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON() ([]byte, error)
Marshal data from the first non-nil pointers in the struct to JSON
func (*GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON ¶
func (dst *GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON(data []byte) error
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 ¶
func (o *GetSandbox200Response) GetSelfServeKey() GetSandbox200ResponseSelfServeKey
GetSelfServeKey returns the SelfServeKey field value
func (*GetSandbox200Response) GetSelfServeKeyOk ¶
func (o *GetSandbox200Response) GetSelfServeKeyOk() (*GetSandbox200ResponseSelfServeKey, bool)
GetSelfServeKeyOk returns a tuple with the SelfServeKey field value and a boolean to check if the value has been set.
func (*GetSandbox200Response) GetTry ¶
func (o *GetSandbox200Response) GetTry() GetSandbox200ResponseTry
GetTry returns the Try field value
func (*GetSandbox200Response) GetTryOk ¶
func (o *GetSandbox200Response) GetTryOk() (*GetSandbox200ResponseTry, bool)
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 ¶
func (o *GetSandbox200Response) SetSelfServeKey(v GetSandbox200ResponseSelfServeKey)
SetSelfServeKey sets field value
func (*GetSandbox200Response) SetTry ¶
func (o *GetSandbox200Response) SetTry(v GetSandbox200ResponseTry)
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 ¶
func (o *GetSandbox200ResponseSelfServeKey) GetMethod() string
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 ¶
func (o *GetSandbox200ResponseSelfServeKey) GetUrl() string
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 ¶
func (o *GetSandbox200ResponseSelfServeKey) SetUrl(v string)
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 ¶
func (o *GetSandbox200ResponseTry) GetBody() GetSandbox200ResponseTryBody
GetBody returns the Body field value
func (*GetSandbox200ResponseTry) GetBodyOk ¶
func (o *GetSandbox200ResponseTry) GetBodyOk() (*GetSandbox200ResponseTryBody, bool)
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 ¶
func (o *GetSandbox200ResponseTry) SetBody(v GetSandbox200ResponseTryBody)
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 ¶
func (o *GetSandbox200ResponseTryBody) GetValueData() GetSandbox200ResponseTryBodyValueData
GetValueData returns the ValueData field value
func (*GetSandbox200ResponseTryBody) GetValueDataOk ¶
func (o *GetSandbox200ResponseTryBody) GetValueDataOk() (*GetSandbox200ResponseTryBodyValueData, bool)
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 ¶
func (o *GetSandbox200ResponseTryBody) SetValueData(v GetSandbox200ResponseTryBodyValueData)
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 ¶
func (o *GetSandbox200ResponseTryBodyValueData) GetCurrency() string
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 ¶
func (o *GetSandbox200ResponseTryBodyValueData) GetOrderId() string
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 ¶
func (o *GetSandbox200ResponseTryBodyValueData) GetValue() string
GetValue returns the Value field value
func (*GetSandbox200ResponseTryBodyValueData) GetValueOk ¶
func (o *GetSandbox200ResponseTryBodyValueData) GetValueOk() (*string, bool)
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 ¶
func (o *GetSandbox200ResponseTryBodyValueData) SetCurrency(v string)
SetCurrency sets field value
func (*GetSandbox200ResponseTryBodyValueData) SetOrderId ¶
func (o *GetSandbox200ResponseTryBodyValueData) SetOrderId(v string)
SetOrderId sets field value
func (*GetSandbox200ResponseTryBodyValueData) SetValue ¶
func (o *GetSandbox200ResponseTryBodyValueData) SetValue(v string)
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 ¶
func (v JurisdictionPolicyClass) Ptr() *JurisdictionPolicyClass
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 ¶
func (o *ListEvents200Response) GetEvents() ListEvents200ResponseEvents
GetEvents returns the Events field value
func (*ListEvents200Response) GetEventsOk ¶
func (o *ListEvents200Response) GetEventsOk() (*ListEvents200ResponseEvents, bool)
GetEventsOk returns a tuple with the Events field value and a boolean to check if the value has been set.
func (*ListEvents200Response) GetMetrics ¶
func (o *ListEvents200Response) GetMetrics() ListEvents200ResponseMetrics
GetMetrics returns the Metrics field value
func (*ListEvents200Response) GetMetricsOk ¶
func (o *ListEvents200Response) GetMetricsOk() (*ListEvents200ResponseMetrics, bool)
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 ¶
func (o *ListEvents200Response) SetEvents(v ListEvents200ResponseEvents)
SetEvents sets field value
func (*ListEvents200Response) SetMetrics ¶
func (o *ListEvents200Response) SetMetrics(v ListEvents200ResponseMetrics)
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 ¶
func (o *ListEvents200ResponseEvents) GetData() []GetEvent200ResponseEvent
GetData returns the Data field value
func (*ListEvents200ResponseEvents) GetDataOk ¶
func (o *ListEvents200ResponseEvents) GetDataOk() ([]GetEvent200ResponseEvent, bool)
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
func (*ListEvents200ResponseEvents) GetLinks ¶
func (o *ListEvents200ResponseEvents) GetLinks() []ListEvents200ResponseEventsLinksInner
GetLinks returns the Links field value
func (*ListEvents200ResponseEvents) GetLinksOk ¶
func (o *ListEvents200ResponseEvents) GetLinksOk() ([]ListEvents200ResponseEventsLinksInner, bool)
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 ¶
func (o *ListEvents200ResponseEvents) GetTo() int32
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 ¶
func (o *ListEvents200ResponseEvents) SetData(v []GetEvent200ResponseEvent)
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
func (*ListEvents200ResponseEvents) SetLinks ¶
func (o *ListEvents200ResponseEvents) SetLinks(v []ListEvents200ResponseEventsLinksInner)
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 ¶
func (o *ListEvents200ResponseEventsLinksInner) GetActive() bool
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 ¶
func (o *ListEvents200ResponseEventsLinksInner) GetLabel() string
GetLabel returns the Label field value
func (*ListEvents200ResponseEventsLinksInner) GetLabelOk ¶
func (o *ListEvents200ResponseEventsLinksInner) GetLabelOk() (*string, bool)
GetLabelOk returns a tuple with the Label field value and a boolean to check if the value has been set.
func (*ListEvents200ResponseEventsLinksInner) GetUrl ¶
func (o *ListEvents200ResponseEventsLinksInner) GetUrl() string
GetUrl returns the Url field value If the value is explicit nil, the zero value for string will be returned
func (*ListEvents200ResponseEventsLinksInner) GetUrlOk ¶
func (o *ListEvents200ResponseEventsLinksInner) GetUrlOk() (*string, bool)
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 ¶
func (o *ListEvents200ResponseEventsLinksInner) SetActive(v bool)
SetActive sets field value
func (*ListEvents200ResponseEventsLinksInner) SetLabel ¶
func (o *ListEvents200ResponseEventsLinksInner) SetLabel(v string)
SetLabel sets field value
func (*ListEvents200ResponseEventsLinksInner) SetUrl ¶
func (o *ListEvents200ResponseEventsLinksInner) SetUrl(v string)
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 ¶
func NewListEventsByCursor200Response(events ListEventsByCursor200ResponseEvents, metrics ListEvents200ResponseMetrics) *ListEventsByCursor200Response
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 ¶
func (o *ListEventsByCursor200Response) GetEvents() ListEventsByCursor200ResponseEvents
GetEvents returns the Events field value
func (*ListEventsByCursor200Response) GetEventsOk ¶
func (o *ListEventsByCursor200Response) GetEventsOk() (*ListEventsByCursor200ResponseEvents, bool)
GetEventsOk returns a tuple with the Events field value and a boolean to check if the value has been set.
func (*ListEventsByCursor200Response) GetMetrics ¶
func (o *ListEventsByCursor200Response) GetMetrics() ListEvents200ResponseMetrics
GetMetrics returns the Metrics field value
func (*ListEventsByCursor200Response) GetMetricsOk ¶
func (o *ListEventsByCursor200Response) GetMetricsOk() (*ListEvents200ResponseMetrics, bool)
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 ¶
func (o *ListEventsByCursor200Response) SetEvents(v ListEventsByCursor200ResponseEvents)
SetEvents sets field value
func (*ListEventsByCursor200Response) SetMetrics ¶
func (o *ListEventsByCursor200Response) SetMetrics(v ListEvents200ResponseMetrics)
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 ¶
func (o *ListEventsByCursor200ResponseEvents) GetData() []GetEvent200ResponseEvent
GetData returns the Data field value
func (*ListEventsByCursor200ResponseEvents) GetDataOk ¶
func (o *ListEventsByCursor200ResponseEvents) GetDataOk() ([]GetEvent200ResponseEvent, bool)
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 ¶
func (o *ListEventsByCursor200ResponseEvents) GetPath() string
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 ¶
func (o *ListEventsByCursor200ResponseEvents) GetPerPage() int32
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 ¶
func (o *ListEventsByCursor200ResponseEvents) SetData(v []GetEvent200ResponseEvent)
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 ¶
func (o *ListEventsByCursor200ResponseEvents) SetPath(v string)
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 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 NewNullableCreateEvent200Response ¶
func NewNullableCreateEvent200Response(val *CreateEvent200Response) *NullableCreateEvent200Response
func (NullableCreateEvent200Response) Get ¶
func (v NullableCreateEvent200Response) Get() *CreateEvent200Response
func (NullableCreateEvent200Response) IsSet ¶
func (v NullableCreateEvent200Response) IsSet() bool
func (NullableCreateEvent200Response) MarshalJSON ¶
func (v NullableCreateEvent200Response) MarshalJSON() ([]byte, error)
func (*NullableCreateEvent200Response) Set ¶
func (v *NullableCreateEvent200Response) Set(val *CreateEvent200Response)
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 (v NullableCreateEventRequest) Get() *CreateEventRequest
func (NullableCreateEventRequest) IsSet ¶
func (v NullableCreateEventRequest) IsSet() bool
func (NullableCreateEventRequest) MarshalJSON ¶
func (v NullableCreateEventRequest) MarshalJSON() ([]byte, error)
func (*NullableCreateEventRequest) Set ¶
func (v *NullableCreateEventRequest) Set(val *CreateEventRequest)
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 NewNullableCreateEventRequestAnyOf ¶
func NewNullableCreateEventRequestAnyOf(val *CreateEventRequestAnyOf) *NullableCreateEventRequestAnyOf
func (NullableCreateEventRequestAnyOf) Get ¶
func (v NullableCreateEventRequestAnyOf) Get() *CreateEventRequestAnyOf
func (NullableCreateEventRequestAnyOf) IsSet ¶
func (v NullableCreateEventRequestAnyOf) IsSet() bool
func (NullableCreateEventRequestAnyOf) MarshalJSON ¶
func (v NullableCreateEventRequestAnyOf) MarshalJSON() ([]byte, error)
func (*NullableCreateEventRequestAnyOf) Set ¶
func (v *NullableCreateEventRequestAnyOf) Set(val *CreateEventRequestAnyOf)
func (*NullableCreateEventRequestAnyOf) UnmarshalJSON ¶
func (v *NullableCreateEventRequestAnyOf) UnmarshalJSON(src []byte) error
func (*NullableCreateEventRequestAnyOf) Unset ¶
func (v *NullableCreateEventRequestAnyOf) Unset()
type NullableCreateEventRequestAnyOf1 ¶
type NullableCreateEventRequestAnyOf1 struct {
// contains filtered or unexported fields
}
func NewNullableCreateEventRequestAnyOf1 ¶
func NewNullableCreateEventRequestAnyOf1(val *CreateEventRequestAnyOf1) *NullableCreateEventRequestAnyOf1
func (NullableCreateEventRequestAnyOf1) Get ¶
func (v NullableCreateEventRequestAnyOf1) Get() *CreateEventRequestAnyOf1
func (NullableCreateEventRequestAnyOf1) IsSet ¶
func (v NullableCreateEventRequestAnyOf1) IsSet() bool
func (NullableCreateEventRequestAnyOf1) MarshalJSON ¶
func (v NullableCreateEventRequestAnyOf1) MarshalJSON() ([]byte, error)
func (*NullableCreateEventRequestAnyOf1) Set ¶
func (v *NullableCreateEventRequestAnyOf1) Set(val *CreateEventRequestAnyOf1)
func (*NullableCreateEventRequestAnyOf1) UnmarshalJSON ¶
func (v *NullableCreateEventRequestAnyOf1) UnmarshalJSON(src []byte) error
func (*NullableCreateEventRequestAnyOf1) Unset ¶
func (v *NullableCreateEventRequestAnyOf1) Unset()
type NullableCreateEventRequestAnyOfEventTime ¶
type NullableCreateEventRequestAnyOfEventTime struct {
// contains filtered or unexported fields
}
func NewNullableCreateEventRequestAnyOfEventTime ¶
func NewNullableCreateEventRequestAnyOfEventTime(val *CreateEventRequestAnyOfEventTime) *NullableCreateEventRequestAnyOfEventTime
func (NullableCreateEventRequestAnyOfEventTime) IsSet ¶
func (v NullableCreateEventRequestAnyOfEventTime) IsSet() bool
func (NullableCreateEventRequestAnyOfEventTime) MarshalJSON ¶
func (v NullableCreateEventRequestAnyOfEventTime) MarshalJSON() ([]byte, error)
func (*NullableCreateEventRequestAnyOfEventTime) Set ¶
func (v *NullableCreateEventRequestAnyOfEventTime) Set(val *CreateEventRequestAnyOfEventTime)
func (*NullableCreateEventRequestAnyOfEventTime) UnmarshalJSON ¶
func (v *NullableCreateEventRequestAnyOfEventTime) UnmarshalJSON(src []byte) error
func (*NullableCreateEventRequestAnyOfEventTime) Unset ¶
func (v *NullableCreateEventRequestAnyOfEventTime) Unset()
type NullableCreateEventRequestAnyOfValueData ¶
type NullableCreateEventRequestAnyOfValueData struct {
// contains filtered or unexported fields
}
func NewNullableCreateEventRequestAnyOfValueData ¶
func NewNullableCreateEventRequestAnyOfValueData(val *CreateEventRequestAnyOfValueData) *NullableCreateEventRequestAnyOfValueData
func (NullableCreateEventRequestAnyOfValueData) IsSet ¶
func (v NullableCreateEventRequestAnyOfValueData) IsSet() bool
func (NullableCreateEventRequestAnyOfValueData) MarshalJSON ¶
func (v NullableCreateEventRequestAnyOfValueData) MarshalJSON() ([]byte, error)
func (*NullableCreateEventRequestAnyOfValueData) Set ¶
func (v *NullableCreateEventRequestAnyOfValueData) Set(val *CreateEventRequestAnyOfValueData)
func (*NullableCreateEventRequestAnyOfValueData) UnmarshalJSON ¶
func (v *NullableCreateEventRequestAnyOfValueData) UnmarshalJSON(src []byte) error
func (*NullableCreateEventRequestAnyOfValueData) Unset ¶
func (v *NullableCreateEventRequestAnyOfValueData) Unset()
type NullableCreateSandboxKey201Response ¶
type NullableCreateSandboxKey201Response struct {
// contains filtered or unexported fields
}
func NewNullableCreateSandboxKey201Response ¶
func NewNullableCreateSandboxKey201Response(val *CreateSandboxKey201Response) *NullableCreateSandboxKey201Response
func (NullableCreateSandboxKey201Response) Get ¶
func (v NullableCreateSandboxKey201Response) Get() *CreateSandboxKey201Response
func (NullableCreateSandboxKey201Response) IsSet ¶
func (v NullableCreateSandboxKey201Response) IsSet() bool
func (NullableCreateSandboxKey201Response) MarshalJSON ¶
func (v NullableCreateSandboxKey201Response) MarshalJSON() ([]byte, error)
func (*NullableCreateSandboxKey201Response) Set ¶
func (v *NullableCreateSandboxKey201Response) Set(val *CreateSandboxKey201Response)
func (*NullableCreateSandboxKey201Response) UnmarshalJSON ¶
func (v *NullableCreateSandboxKey201Response) UnmarshalJSON(src []byte) error
func (*NullableCreateSandboxKey201Response) Unset ¶
func (v *NullableCreateSandboxKey201Response) Unset()
type NullableCreateSandboxKey201ResponseUse ¶
type NullableCreateSandboxKey201ResponseUse struct {
// contains filtered or unexported fields
}
func NewNullableCreateSandboxKey201ResponseUse ¶
func NewNullableCreateSandboxKey201ResponseUse(val *CreateSandboxKey201ResponseUse) *NullableCreateSandboxKey201ResponseUse
func (NullableCreateSandboxKey201ResponseUse) Get ¶
func (v NullableCreateSandboxKey201ResponseUse) Get() *CreateSandboxKey201ResponseUse
func (NullableCreateSandboxKey201ResponseUse) IsSet ¶
func (v NullableCreateSandboxKey201ResponseUse) IsSet() bool
func (NullableCreateSandboxKey201ResponseUse) MarshalJSON ¶
func (v NullableCreateSandboxKey201ResponseUse) MarshalJSON() ([]byte, error)
func (*NullableCreateSandboxKey201ResponseUse) Set ¶
func (v *NullableCreateSandboxKey201ResponseUse) Set(val *CreateSandboxKey201ResponseUse)
func (*NullableCreateSandboxKey201ResponseUse) UnmarshalJSON ¶
func (v *NullableCreateSandboxKey201ResponseUse) UnmarshalJSON(src []byte) error
func (*NullableCreateSandboxKey201ResponseUse) Unset ¶
func (v *NullableCreateSandboxKey201ResponseUse) Unset()
type NullableDeleteUserData200Response ¶
type NullableDeleteUserData200Response struct {
// contains filtered or unexported fields
}
func NewNullableDeleteUserData200Response ¶
func NewNullableDeleteUserData200Response(val *DeleteUserData200Response) *NullableDeleteUserData200Response
func (NullableDeleteUserData200Response) Get ¶
func (v NullableDeleteUserData200Response) Get() *DeleteUserData200Response
func (NullableDeleteUserData200Response) IsSet ¶
func (v NullableDeleteUserData200Response) IsSet() bool
func (NullableDeleteUserData200Response) MarshalJSON ¶
func (v NullableDeleteUserData200Response) MarshalJSON() ([]byte, error)
func (*NullableDeleteUserData200Response) Set ¶
func (v *NullableDeleteUserData200Response) Set(val *DeleteUserData200Response)
func (*NullableDeleteUserData200Response) UnmarshalJSON ¶
func (v *NullableDeleteUserData200Response) UnmarshalJSON(src []byte) error
func (*NullableDeleteUserData200Response) Unset ¶
func (v *NullableDeleteUserData200Response) Unset()
type NullableDeleteUserDataRequest ¶
type NullableDeleteUserDataRequest struct {
// contains filtered or unexported fields
}
func NewNullableDeleteUserDataRequest ¶
func NewNullableDeleteUserDataRequest(val *DeleteUserDataRequest) *NullableDeleteUserDataRequest
func (NullableDeleteUserDataRequest) Get ¶
func (v NullableDeleteUserDataRequest) Get() *DeleteUserDataRequest
func (NullableDeleteUserDataRequest) IsSet ¶
func (v NullableDeleteUserDataRequest) IsSet() bool
func (NullableDeleteUserDataRequest) MarshalJSON ¶
func (v NullableDeleteUserDataRequest) MarshalJSON() ([]byte, error)
func (*NullableDeleteUserDataRequest) Set ¶
func (v *NullableDeleteUserDataRequest) Set(val *DeleteUserDataRequest)
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 (v NullableDeliveryStatus) Get() *DeliveryStatus
func (NullableDeliveryStatus) IsSet ¶
func (v NullableDeliveryStatus) IsSet() bool
func (NullableDeliveryStatus) MarshalJSON ¶
func (v NullableDeliveryStatus) MarshalJSON() ([]byte, error)
func (*NullableDeliveryStatus) Set ¶
func (v *NullableDeliveryStatus) Set(val *DeliveryStatus)
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 (v NullableDestination) Get() *Destination
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 NewNullableDestinationCredentialSource ¶
func NewNullableDestinationCredentialSource(val *DestinationCredentialSource) *NullableDestinationCredentialSource
func (NullableDestinationCredentialSource) Get ¶
func (v NullableDestinationCredentialSource) Get() *DestinationCredentialSource
func (NullableDestinationCredentialSource) IsSet ¶
func (v NullableDestinationCredentialSource) IsSet() bool
func (NullableDestinationCredentialSource) MarshalJSON ¶
func (v NullableDestinationCredentialSource) MarshalJSON() ([]byte, error)
func (*NullableDestinationCredentialSource) Set ¶
func (v *NullableDestinationCredentialSource) Set(val *DestinationCredentialSource)
func (*NullableDestinationCredentialSource) UnmarshalJSON ¶
func (v *NullableDestinationCredentialSource) UnmarshalJSON(src []byte) error
func (*NullableDestinationCredentialSource) Unset ¶
func (v *NullableDestinationCredentialSource) Unset()
type NullableDestinationStatus ¶
type NullableDestinationStatus struct {
// contains filtered or unexported fields
}
func NewNullableDestinationStatus ¶
func NewNullableDestinationStatus(val *DestinationStatus) *NullableDestinationStatus
func (NullableDestinationStatus) Get ¶
func (v NullableDestinationStatus) Get() *DestinationStatus
func (NullableDestinationStatus) IsSet ¶
func (v NullableDestinationStatus) IsSet() bool
func (NullableDestinationStatus) MarshalJSON ¶
func (v NullableDestinationStatus) MarshalJSON() ([]byte, error)
func (*NullableDestinationStatus) Set ¶
func (v *NullableDestinationStatus) Set(val *DestinationStatus)
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 (v NullableDestinationType) Get() *DestinationType
func (NullableDestinationType) IsSet ¶
func (v NullableDestinationType) IsSet() bool
func (NullableDestinationType) MarshalJSON ¶
func (v NullableDestinationType) MarshalJSON() ([]byte, error)
func (*NullableDestinationType) Set ¶
func (v *NullableDestinationType) Set(val *DestinationType)
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 (v NullableEmqSnapshot) Get() *EmqSnapshot
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 (v NullableErrorMessage) Get() *ErrorMessage
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 NewNullableGetEmqReport200Response ¶
func NewNullableGetEmqReport200Response(val *GetEmqReport200Response) *NullableGetEmqReport200Response
func (NullableGetEmqReport200Response) Get ¶
func (v NullableGetEmqReport200Response) Get() *GetEmqReport200Response
func (NullableGetEmqReport200Response) IsSet ¶
func (v NullableGetEmqReport200Response) IsSet() bool
func (NullableGetEmqReport200Response) MarshalJSON ¶
func (v NullableGetEmqReport200Response) MarshalJSON() ([]byte, error)
func (*NullableGetEmqReport200Response) Set ¶
func (v *NullableGetEmqReport200Response) Set(val *GetEmqReport200Response)
func (*NullableGetEmqReport200Response) UnmarshalJSON ¶
func (v *NullableGetEmqReport200Response) UnmarshalJSON(src []byte) error
func (*NullableGetEmqReport200Response) Unset ¶
func (v *NullableGetEmqReport200Response) Unset()
type NullableGetEmqReport200ResponseSnapshotsInner ¶
type NullableGetEmqReport200ResponseSnapshotsInner struct {
// contains filtered or unexported fields
}
func NewNullableGetEmqReport200ResponseSnapshotsInner ¶
func NewNullableGetEmqReport200ResponseSnapshotsInner(val *GetEmqReport200ResponseSnapshotsInner) *NullableGetEmqReport200ResponseSnapshotsInner
func (NullableGetEmqReport200ResponseSnapshotsInner) IsSet ¶
func (v NullableGetEmqReport200ResponseSnapshotsInner) IsSet() bool
func (NullableGetEmqReport200ResponseSnapshotsInner) MarshalJSON ¶
func (v NullableGetEmqReport200ResponseSnapshotsInner) MarshalJSON() ([]byte, error)
func (*NullableGetEmqReport200ResponseSnapshotsInner) Set ¶
func (v *NullableGetEmqReport200ResponseSnapshotsInner) Set(val *GetEmqReport200ResponseSnapshotsInner)
func (*NullableGetEmqReport200ResponseSnapshotsInner) UnmarshalJSON ¶
func (v *NullableGetEmqReport200ResponseSnapshotsInner) UnmarshalJSON(src []byte) error
func (*NullableGetEmqReport200ResponseSnapshotsInner) Unset ¶
func (v *NullableGetEmqReport200ResponseSnapshotsInner) Unset()
type NullableGetEvent200Response ¶
type NullableGetEvent200Response struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200Response ¶
func NewNullableGetEvent200Response(val *GetEvent200Response) *NullableGetEvent200Response
func (NullableGetEvent200Response) Get ¶
func (v NullableGetEvent200Response) Get() *GetEvent200Response
func (NullableGetEvent200Response) IsSet ¶
func (v NullableGetEvent200Response) IsSet() bool
func (NullableGetEvent200Response) MarshalJSON ¶
func (v NullableGetEvent200Response) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200Response) Set ¶
func (v *NullableGetEvent200Response) Set(val *GetEvent200Response)
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 NewNullableGetEvent200ResponseDeliveriesInner ¶
func NewNullableGetEvent200ResponseDeliveriesInner(val *GetEvent200ResponseDeliveriesInner) *NullableGetEvent200ResponseDeliveriesInner
func (NullableGetEvent200ResponseDeliveriesInner) IsSet ¶
func (v NullableGetEvent200ResponseDeliveriesInner) IsSet() bool
func (NullableGetEvent200ResponseDeliveriesInner) MarshalJSON ¶
func (v NullableGetEvent200ResponseDeliveriesInner) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseDeliveriesInner) Set ¶
func (v *NullableGetEvent200ResponseDeliveriesInner) Set(val *GetEvent200ResponseDeliveriesInner)
func (*NullableGetEvent200ResponseDeliveriesInner) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseDeliveriesInner) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseDeliveriesInner) Unset ¶
func (v *NullableGetEvent200ResponseDeliveriesInner) Unset()
type NullableGetEvent200ResponseEvent ¶
type NullableGetEvent200ResponseEvent struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200ResponseEvent ¶
func NewNullableGetEvent200ResponseEvent(val *GetEvent200ResponseEvent) *NullableGetEvent200ResponseEvent
func (NullableGetEvent200ResponseEvent) Get ¶
func (v NullableGetEvent200ResponseEvent) Get() *GetEvent200ResponseEvent
func (NullableGetEvent200ResponseEvent) IsSet ¶
func (v NullableGetEvent200ResponseEvent) IsSet() bool
func (NullableGetEvent200ResponseEvent) MarshalJSON ¶
func (v NullableGetEvent200ResponseEvent) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseEvent) Set ¶
func (v *NullableGetEvent200ResponseEvent) Set(val *GetEvent200ResponseEvent)
func (*NullableGetEvent200ResponseEvent) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseEvent) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseEvent) Unset ¶
func (v *NullableGetEvent200ResponseEvent) Unset()
type NullableGetEvent200ResponseEventDeliveriesInner ¶
type NullableGetEvent200ResponseEventDeliveriesInner struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200ResponseEventDeliveriesInner ¶
func NewNullableGetEvent200ResponseEventDeliveriesInner(val *GetEvent200ResponseEventDeliveriesInner) *NullableGetEvent200ResponseEventDeliveriesInner
func (NullableGetEvent200ResponseEventDeliveriesInner) IsSet ¶
func (v NullableGetEvent200ResponseEventDeliveriesInner) IsSet() bool
func (NullableGetEvent200ResponseEventDeliveriesInner) MarshalJSON ¶
func (v NullableGetEvent200ResponseEventDeliveriesInner) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseEventDeliveriesInner) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseEventDeliveriesInner) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseEventDeliveriesInner) Unset ¶
func (v *NullableGetEvent200ResponseEventDeliveriesInner) Unset()
type NullableGetEvent200ResponseLineage ¶
type NullableGetEvent200ResponseLineage struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200ResponseLineage ¶
func NewNullableGetEvent200ResponseLineage(val *GetEvent200ResponseLineage) *NullableGetEvent200ResponseLineage
func (NullableGetEvent200ResponseLineage) Get ¶
func (v NullableGetEvent200ResponseLineage) Get() *GetEvent200ResponseLineage
func (NullableGetEvent200ResponseLineage) IsSet ¶
func (v NullableGetEvent200ResponseLineage) IsSet() bool
func (NullableGetEvent200ResponseLineage) MarshalJSON ¶
func (v NullableGetEvent200ResponseLineage) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseLineage) Set ¶
func (v *NullableGetEvent200ResponseLineage) Set(val *GetEvent200ResponseLineage)
func (*NullableGetEvent200ResponseLineage) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseLineage) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseLineage) Unset ¶
func (v *NullableGetEvent200ResponseLineage) Unset()
type NullableGetEvent200ResponseLineageChildrenInner ¶
type NullableGetEvent200ResponseLineageChildrenInner struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200ResponseLineageChildrenInner ¶
func NewNullableGetEvent200ResponseLineageChildrenInner(val *GetEvent200ResponseLineageChildrenInner) *NullableGetEvent200ResponseLineageChildrenInner
func (NullableGetEvent200ResponseLineageChildrenInner) IsSet ¶
func (v NullableGetEvent200ResponseLineageChildrenInner) IsSet() bool
func (NullableGetEvent200ResponseLineageChildrenInner) MarshalJSON ¶
func (v NullableGetEvent200ResponseLineageChildrenInner) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseLineageChildrenInner) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseLineageChildrenInner) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseLineageChildrenInner) Unset ¶
func (v *NullableGetEvent200ResponseLineageChildrenInner) Unset()
type NullableGetEvent200ResponseLineageParent ¶
type NullableGetEvent200ResponseLineageParent struct {
// contains filtered or unexported fields
}
func NewNullableGetEvent200ResponseLineageParent ¶
func NewNullableGetEvent200ResponseLineageParent(val *GetEvent200ResponseLineageParent) *NullableGetEvent200ResponseLineageParent
func (NullableGetEvent200ResponseLineageParent) IsSet ¶
func (v NullableGetEvent200ResponseLineageParent) IsSet() bool
func (NullableGetEvent200ResponseLineageParent) MarshalJSON ¶
func (v NullableGetEvent200ResponseLineageParent) MarshalJSON() ([]byte, error)
func (*NullableGetEvent200ResponseLineageParent) Set ¶
func (v *NullableGetEvent200ResponseLineageParent) Set(val *GetEvent200ResponseLineageParent)
func (*NullableGetEvent200ResponseLineageParent) UnmarshalJSON ¶
func (v *NullableGetEvent200ResponseLineageParent) UnmarshalJSON(src []byte) error
func (*NullableGetEvent200ResponseLineageParent) Unset ¶
func (v *NullableGetEvent200ResponseLineageParent) Unset()
type NullableGetReconciliationReport200Response ¶
type NullableGetReconciliationReport200Response struct {
// contains filtered or unexported fields
}
func NewNullableGetReconciliationReport200Response ¶
func NewNullableGetReconciliationReport200Response(val *GetReconciliationReport200Response) *NullableGetReconciliationReport200Response
func (NullableGetReconciliationReport200Response) IsSet ¶
func (v NullableGetReconciliationReport200Response) IsSet() bool
func (NullableGetReconciliationReport200Response) MarshalJSON ¶
func (v NullableGetReconciliationReport200Response) MarshalJSON() ([]byte, error)
func (*NullableGetReconciliationReport200Response) Set ¶
func (v *NullableGetReconciliationReport200Response) Set(val *GetReconciliationReport200Response)
func (*NullableGetReconciliationReport200Response) UnmarshalJSON ¶
func (v *NullableGetReconciliationReport200Response) UnmarshalJSON(src []byte) error
func (*NullableGetReconciliationReport200Response) Unset ¶
func (v *NullableGetReconciliationReport200Response) Unset()
type NullableGetReconciliationReport200ResponseReportsInner ¶
type NullableGetReconciliationReport200ResponseReportsInner struct {
// contains filtered or unexported fields
}
func NewNullableGetReconciliationReport200ResponseReportsInner ¶
func NewNullableGetReconciliationReport200ResponseReportsInner(val *GetReconciliationReport200ResponseReportsInner) *NullableGetReconciliationReport200ResponseReportsInner
func (NullableGetReconciliationReport200ResponseReportsInner) IsSet ¶
func (v NullableGetReconciliationReport200ResponseReportsInner) IsSet() bool
func (NullableGetReconciliationReport200ResponseReportsInner) MarshalJSON ¶
func (v NullableGetReconciliationReport200ResponseReportsInner) MarshalJSON() ([]byte, error)
func (*NullableGetReconciliationReport200ResponseReportsInner) UnmarshalJSON ¶
func (v *NullableGetReconciliationReport200ResponseReportsInner) UnmarshalJSON(src []byte) error
func (*NullableGetReconciliationReport200ResponseReportsInner) Unset ¶
func (v *NullableGetReconciliationReport200ResponseReportsInner) Unset()
type NullableGetReconciliationReport200ResponseReportsInnerBucketsValue ¶
type NullableGetReconciliationReport200ResponseReportsInnerBucketsValue struct {
// contains filtered or unexported fields
}
func NewNullableGetReconciliationReport200ResponseReportsInnerBucketsValue ¶
func NewNullableGetReconciliationReport200ResponseReportsInnerBucketsValue(val *GetReconciliationReport200ResponseReportsInnerBucketsValue) *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue
func (NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) IsSet ¶
func (v NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) IsSet() bool
func (NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON ¶
func (v NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) MarshalJSON() ([]byte, error)
func (*NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON ¶
func (v *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) UnmarshalJSON(src []byte) error
func (*NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Unset ¶
func (v *NullableGetReconciliationReport200ResponseReportsInnerBucketsValue) Unset()
type NullableGetReconciliationReport200ResponseReportsInnerEventCounts ¶
type NullableGetReconciliationReport200ResponseReportsInnerEventCounts struct {
// contains filtered or unexported fields
}
func NewNullableGetReconciliationReport200ResponseReportsInnerEventCounts ¶
func NewNullableGetReconciliationReport200ResponseReportsInnerEventCounts(val *GetReconciliationReport200ResponseReportsInnerEventCounts) *NullableGetReconciliationReport200ResponseReportsInnerEventCounts
func (NullableGetReconciliationReport200ResponseReportsInnerEventCounts) IsSet ¶
func (v NullableGetReconciliationReport200ResponseReportsInnerEventCounts) IsSet() bool
func (NullableGetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON ¶
func (v NullableGetReconciliationReport200ResponseReportsInnerEventCounts) MarshalJSON() ([]byte, error)
func (*NullableGetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON ¶
func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCounts) UnmarshalJSON(src []byte) error
func (*NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Unset ¶
func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCounts) Unset()
type NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted ¶
type NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted struct {
// contains filtered or unexported fields
}
func NewNullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted ¶
func NewNullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted(val *GetReconciliationReport200ResponseReportsInnerEventCountsAccepted) *NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted
func (NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON ¶
func (v NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) MarshalJSON() ([]byte, error)
func (*NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON ¶
func (v *NullableGetReconciliationReport200ResponseReportsInnerEventCountsAccepted) UnmarshalJSON(src []byte) error
type NullableGetSandbox200Response ¶
type NullableGetSandbox200Response struct {
// contains filtered or unexported fields
}
func NewNullableGetSandbox200Response ¶
func NewNullableGetSandbox200Response(val *GetSandbox200Response) *NullableGetSandbox200Response
func (NullableGetSandbox200Response) Get ¶
func (v NullableGetSandbox200Response) Get() *GetSandbox200Response
func (NullableGetSandbox200Response) IsSet ¶
func (v NullableGetSandbox200Response) IsSet() bool
func (NullableGetSandbox200Response) MarshalJSON ¶
func (v NullableGetSandbox200Response) MarshalJSON() ([]byte, error)
func (*NullableGetSandbox200Response) Set ¶
func (v *NullableGetSandbox200Response) Set(val *GetSandbox200Response)
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 NewNullableGetSandbox200ResponseSelfServeKey ¶
func NewNullableGetSandbox200ResponseSelfServeKey(val *GetSandbox200ResponseSelfServeKey) *NullableGetSandbox200ResponseSelfServeKey
func (NullableGetSandbox200ResponseSelfServeKey) IsSet ¶
func (v NullableGetSandbox200ResponseSelfServeKey) IsSet() bool
func (NullableGetSandbox200ResponseSelfServeKey) MarshalJSON ¶
func (v NullableGetSandbox200ResponseSelfServeKey) MarshalJSON() ([]byte, error)
func (*NullableGetSandbox200ResponseSelfServeKey) Set ¶
func (v *NullableGetSandbox200ResponseSelfServeKey) Set(val *GetSandbox200ResponseSelfServeKey)
func (*NullableGetSandbox200ResponseSelfServeKey) UnmarshalJSON ¶
func (v *NullableGetSandbox200ResponseSelfServeKey) UnmarshalJSON(src []byte) error
func (*NullableGetSandbox200ResponseSelfServeKey) Unset ¶
func (v *NullableGetSandbox200ResponseSelfServeKey) Unset()
type NullableGetSandbox200ResponseTry ¶
type NullableGetSandbox200ResponseTry struct {
// contains filtered or unexported fields
}
func NewNullableGetSandbox200ResponseTry ¶
func NewNullableGetSandbox200ResponseTry(val *GetSandbox200ResponseTry) *NullableGetSandbox200ResponseTry
func (NullableGetSandbox200ResponseTry) Get ¶
func (v NullableGetSandbox200ResponseTry) Get() *GetSandbox200ResponseTry
func (NullableGetSandbox200ResponseTry) IsSet ¶
func (v NullableGetSandbox200ResponseTry) IsSet() bool
func (NullableGetSandbox200ResponseTry) MarshalJSON ¶
func (v NullableGetSandbox200ResponseTry) MarshalJSON() ([]byte, error)
func (*NullableGetSandbox200ResponseTry) Set ¶
func (v *NullableGetSandbox200ResponseTry) Set(val *GetSandbox200ResponseTry)
func (*NullableGetSandbox200ResponseTry) UnmarshalJSON ¶
func (v *NullableGetSandbox200ResponseTry) UnmarshalJSON(src []byte) error
func (*NullableGetSandbox200ResponseTry) Unset ¶
func (v *NullableGetSandbox200ResponseTry) Unset()
type NullableGetSandbox200ResponseTryBody ¶
type NullableGetSandbox200ResponseTryBody struct {
// contains filtered or unexported fields
}
func NewNullableGetSandbox200ResponseTryBody ¶
func NewNullableGetSandbox200ResponseTryBody(val *GetSandbox200ResponseTryBody) *NullableGetSandbox200ResponseTryBody
func (NullableGetSandbox200ResponseTryBody) Get ¶
func (v NullableGetSandbox200ResponseTryBody) Get() *GetSandbox200ResponseTryBody
func (NullableGetSandbox200ResponseTryBody) IsSet ¶
func (v NullableGetSandbox200ResponseTryBody) IsSet() bool
func (NullableGetSandbox200ResponseTryBody) MarshalJSON ¶
func (v NullableGetSandbox200ResponseTryBody) MarshalJSON() ([]byte, error)
func (*NullableGetSandbox200ResponseTryBody) Set ¶
func (v *NullableGetSandbox200ResponseTryBody) Set(val *GetSandbox200ResponseTryBody)
func (*NullableGetSandbox200ResponseTryBody) UnmarshalJSON ¶
func (v *NullableGetSandbox200ResponseTryBody) UnmarshalJSON(src []byte) error
func (*NullableGetSandbox200ResponseTryBody) Unset ¶
func (v *NullableGetSandbox200ResponseTryBody) Unset()
type NullableGetSandbox200ResponseTryBodyValueData ¶
type NullableGetSandbox200ResponseTryBodyValueData struct {
// contains filtered or unexported fields
}
func NewNullableGetSandbox200ResponseTryBodyValueData ¶
func NewNullableGetSandbox200ResponseTryBodyValueData(val *GetSandbox200ResponseTryBodyValueData) *NullableGetSandbox200ResponseTryBodyValueData
func (NullableGetSandbox200ResponseTryBodyValueData) IsSet ¶
func (v NullableGetSandbox200ResponseTryBodyValueData) IsSet() bool
func (NullableGetSandbox200ResponseTryBodyValueData) MarshalJSON ¶
func (v NullableGetSandbox200ResponseTryBodyValueData) MarshalJSON() ([]byte, error)
func (*NullableGetSandbox200ResponseTryBodyValueData) Set ¶
func (v *NullableGetSandbox200ResponseTryBodyValueData) Set(val *GetSandbox200ResponseTryBodyValueData)
func (*NullableGetSandbox200ResponseTryBodyValueData) UnmarshalJSON ¶
func (v *NullableGetSandbox200ResponseTryBodyValueData) UnmarshalJSON(src []byte) error
func (*NullableGetSandbox200ResponseTryBodyValueData) Unset ¶
func (v *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 NewNullableJurisdictionPolicyClass ¶
func NewNullableJurisdictionPolicyClass(val *JurisdictionPolicyClass) *NullableJurisdictionPolicyClass
func (NullableJurisdictionPolicyClass) Get ¶
func (v NullableJurisdictionPolicyClass) Get() *JurisdictionPolicyClass
func (NullableJurisdictionPolicyClass) IsSet ¶
func (v NullableJurisdictionPolicyClass) IsSet() bool
func (NullableJurisdictionPolicyClass) MarshalJSON ¶
func (v NullableJurisdictionPolicyClass) MarshalJSON() ([]byte, error)
func (*NullableJurisdictionPolicyClass) Set ¶
func (v *NullableJurisdictionPolicyClass) Set(val *JurisdictionPolicyClass)
func (*NullableJurisdictionPolicyClass) UnmarshalJSON ¶
func (v *NullableJurisdictionPolicyClass) UnmarshalJSON(src []byte) error
func (*NullableJurisdictionPolicyClass) Unset ¶
func (v *NullableJurisdictionPolicyClass) Unset()
type NullableListEvents200Response ¶
type NullableListEvents200Response struct {
// contains filtered or unexported fields
}
func NewNullableListEvents200Response ¶
func NewNullableListEvents200Response(val *ListEvents200Response) *NullableListEvents200Response
func (NullableListEvents200Response) Get ¶
func (v NullableListEvents200Response) Get() *ListEvents200Response
func (NullableListEvents200Response) IsSet ¶
func (v NullableListEvents200Response) IsSet() bool
func (NullableListEvents200Response) MarshalJSON ¶
func (v NullableListEvents200Response) MarshalJSON() ([]byte, error)
func (*NullableListEvents200Response) Set ¶
func (v *NullableListEvents200Response) Set(val *ListEvents200Response)
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 NewNullableListEvents200ResponseEvents ¶
func NewNullableListEvents200ResponseEvents(val *ListEvents200ResponseEvents) *NullableListEvents200ResponseEvents
func (NullableListEvents200ResponseEvents) Get ¶
func (v NullableListEvents200ResponseEvents) Get() *ListEvents200ResponseEvents
func (NullableListEvents200ResponseEvents) IsSet ¶
func (v NullableListEvents200ResponseEvents) IsSet() bool
func (NullableListEvents200ResponseEvents) MarshalJSON ¶
func (v NullableListEvents200ResponseEvents) MarshalJSON() ([]byte, error)
func (*NullableListEvents200ResponseEvents) Set ¶
func (v *NullableListEvents200ResponseEvents) Set(val *ListEvents200ResponseEvents)
func (*NullableListEvents200ResponseEvents) UnmarshalJSON ¶
func (v *NullableListEvents200ResponseEvents) UnmarshalJSON(src []byte) error
func (*NullableListEvents200ResponseEvents) Unset ¶
func (v *NullableListEvents200ResponseEvents) Unset()
type NullableListEvents200ResponseEventsLinksInner ¶
type NullableListEvents200ResponseEventsLinksInner struct {
// contains filtered or unexported fields
}
func NewNullableListEvents200ResponseEventsLinksInner ¶
func NewNullableListEvents200ResponseEventsLinksInner(val *ListEvents200ResponseEventsLinksInner) *NullableListEvents200ResponseEventsLinksInner
func (NullableListEvents200ResponseEventsLinksInner) IsSet ¶
func (v NullableListEvents200ResponseEventsLinksInner) IsSet() bool
func (NullableListEvents200ResponseEventsLinksInner) MarshalJSON ¶
func (v NullableListEvents200ResponseEventsLinksInner) MarshalJSON() ([]byte, error)
func (*NullableListEvents200ResponseEventsLinksInner) Set ¶
func (v *NullableListEvents200ResponseEventsLinksInner) Set(val *ListEvents200ResponseEventsLinksInner)
func (*NullableListEvents200ResponseEventsLinksInner) UnmarshalJSON ¶
func (v *NullableListEvents200ResponseEventsLinksInner) UnmarshalJSON(src []byte) error
func (*NullableListEvents200ResponseEventsLinksInner) Unset ¶
func (v *NullableListEvents200ResponseEventsLinksInner) Unset()
type NullableListEvents200ResponseMetrics ¶
type NullableListEvents200ResponseMetrics struct {
// contains filtered or unexported fields
}
func NewNullableListEvents200ResponseMetrics ¶
func NewNullableListEvents200ResponseMetrics(val *ListEvents200ResponseMetrics) *NullableListEvents200ResponseMetrics
func (NullableListEvents200ResponseMetrics) Get ¶
func (v NullableListEvents200ResponseMetrics) Get() *ListEvents200ResponseMetrics
func (NullableListEvents200ResponseMetrics) IsSet ¶
func (v NullableListEvents200ResponseMetrics) IsSet() bool
func (NullableListEvents200ResponseMetrics) MarshalJSON ¶
func (v NullableListEvents200ResponseMetrics) MarshalJSON() ([]byte, error)
func (*NullableListEvents200ResponseMetrics) Set ¶
func (v *NullableListEvents200ResponseMetrics) Set(val *ListEvents200ResponseMetrics)
func (*NullableListEvents200ResponseMetrics) UnmarshalJSON ¶
func (v *NullableListEvents200ResponseMetrics) UnmarshalJSON(src []byte) error
func (*NullableListEvents200ResponseMetrics) Unset ¶
func (v *NullableListEvents200ResponseMetrics) Unset()
type NullableListEventsByCursor200Response ¶
type NullableListEventsByCursor200Response struct {
// contains filtered or unexported fields
}
func NewNullableListEventsByCursor200Response ¶
func NewNullableListEventsByCursor200Response(val *ListEventsByCursor200Response) *NullableListEventsByCursor200Response
func (NullableListEventsByCursor200Response) Get ¶
func (v NullableListEventsByCursor200Response) Get() *ListEventsByCursor200Response
func (NullableListEventsByCursor200Response) IsSet ¶
func (v NullableListEventsByCursor200Response) IsSet() bool
func (NullableListEventsByCursor200Response) MarshalJSON ¶
func (v NullableListEventsByCursor200Response) MarshalJSON() ([]byte, error)
func (*NullableListEventsByCursor200Response) Set ¶
func (v *NullableListEventsByCursor200Response) Set(val *ListEventsByCursor200Response)
func (*NullableListEventsByCursor200Response) UnmarshalJSON ¶
func (v *NullableListEventsByCursor200Response) UnmarshalJSON(src []byte) error
func (*NullableListEventsByCursor200Response) Unset ¶
func (v *NullableListEventsByCursor200Response) Unset()
type NullableListEventsByCursor200ResponseEvents ¶
type NullableListEventsByCursor200ResponseEvents struct {
// contains filtered or unexported fields
}
func NewNullableListEventsByCursor200ResponseEvents ¶
func NewNullableListEventsByCursor200ResponseEvents(val *ListEventsByCursor200ResponseEvents) *NullableListEventsByCursor200ResponseEvents
func (NullableListEventsByCursor200ResponseEvents) IsSet ¶
func (v NullableListEventsByCursor200ResponseEvents) IsSet() bool
func (NullableListEventsByCursor200ResponseEvents) MarshalJSON ¶
func (v NullableListEventsByCursor200ResponseEvents) MarshalJSON() ([]byte, error)
func (*NullableListEventsByCursor200ResponseEvents) Set ¶
func (v *NullableListEventsByCursor200ResponseEvents) Set(val *ListEventsByCursor200ResponseEvents)
func (*NullableListEventsByCursor200ResponseEvents) UnmarshalJSON ¶
func (v *NullableListEventsByCursor200ResponseEvents) UnmarshalJSON(src []byte) error
func (*NullableListEventsByCursor200ResponseEvents) Unset ¶
func (v *NullableListEventsByCursor200ResponseEvents) Unset()
type NullableReconciliationReport ¶
type NullableReconciliationReport struct {
// contains filtered or unexported fields
}
func NewNullableReconciliationReport ¶
func NewNullableReconciliationReport(val *ReconciliationReport) *NullableReconciliationReport
func (NullableReconciliationReport) Get ¶
func (v NullableReconciliationReport) Get() *ReconciliationReport
func (NullableReconciliationReport) IsSet ¶
func (v NullableReconciliationReport) IsSet() bool
func (NullableReconciliationReport) MarshalJSON ¶
func (v NullableReconciliationReport) MarshalJSON() ([]byte, error)
func (*NullableReconciliationReport) Set ¶
func (v *NullableReconciliationReport) Set(val *ReconciliationReport)
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 NewNullableReplayDeliveries202Response ¶
func NewNullableReplayDeliveries202Response(val *ReplayDeliveries202Response) *NullableReplayDeliveries202Response
func (NullableReplayDeliveries202Response) Get ¶
func (v NullableReplayDeliveries202Response) Get() *ReplayDeliveries202Response
func (NullableReplayDeliveries202Response) IsSet ¶
func (v NullableReplayDeliveries202Response) IsSet() bool
func (NullableReplayDeliveries202Response) MarshalJSON ¶
func (v NullableReplayDeliveries202Response) MarshalJSON() ([]byte, error)
func (*NullableReplayDeliveries202Response) Set ¶
func (v *NullableReplayDeliveries202Response) Set(val *ReplayDeliveries202Response)
func (*NullableReplayDeliveries202Response) UnmarshalJSON ¶
func (v *NullableReplayDeliveries202Response) UnmarshalJSON(src []byte) error
func (*NullableReplayDeliveries202Response) Unset ¶
func (v *NullableReplayDeliveries202Response) Unset()
type NullableReplayDeliveriesRequest ¶
type NullableReplayDeliveriesRequest struct {
// contains filtered or unexported fields
}
func NewNullableReplayDeliveriesRequest ¶
func NewNullableReplayDeliveriesRequest(val *ReplayDeliveriesRequest) *NullableReplayDeliveriesRequest
func (NullableReplayDeliveriesRequest) Get ¶
func (v NullableReplayDeliveriesRequest) Get() *ReplayDeliveriesRequest
func (NullableReplayDeliveriesRequest) IsSet ¶
func (v NullableReplayDeliveriesRequest) IsSet() bool
func (NullableReplayDeliveriesRequest) MarshalJSON ¶
func (v NullableReplayDeliveriesRequest) MarshalJSON() ([]byte, error)
func (*NullableReplayDeliveriesRequest) Set ¶
func (v *NullableReplayDeliveriesRequest) Set(val *ReplayDeliveriesRequest)
func (*NullableReplayDeliveriesRequest) UnmarshalJSON ¶
func (v *NullableReplayDeliveriesRequest) UnmarshalJSON(src []byte) error
func (*NullableReplayDeliveriesRequest) Unset ¶
func (v *NullableReplayDeliveriesRequest) Unset()
type NullableSendTestPurchase200Response ¶
type NullableSendTestPurchase200Response struct {
// contains filtered or unexported fields
}
func NewNullableSendTestPurchase200Response ¶
func NewNullableSendTestPurchase200Response(val *SendTestPurchase200Response) *NullableSendTestPurchase200Response
func (NullableSendTestPurchase200Response) Get ¶
func (v NullableSendTestPurchase200Response) Get() *SendTestPurchase200Response
func (NullableSendTestPurchase200Response) IsSet ¶
func (v NullableSendTestPurchase200Response) IsSet() bool
func (NullableSendTestPurchase200Response) MarshalJSON ¶
func (v NullableSendTestPurchase200Response) MarshalJSON() ([]byte, error)
func (*NullableSendTestPurchase200Response) Set ¶
func (v *NullableSendTestPurchase200Response) Set(val *SendTestPurchase200Response)
func (*NullableSendTestPurchase200Response) UnmarshalJSON ¶
func (v *NullableSendTestPurchase200Response) UnmarshalJSON(src []byte) error
func (*NullableSendTestPurchase200Response) Unset ¶
func (v *NullableSendTestPurchase200Response) Unset()
type NullableSendTestPurchase422Response ¶
type NullableSendTestPurchase422Response struct {
// contains filtered or unexported fields
}
func NewNullableSendTestPurchase422Response ¶
func NewNullableSendTestPurchase422Response(val *SendTestPurchase422Response) *NullableSendTestPurchase422Response
func (NullableSendTestPurchase422Response) Get ¶
func (v NullableSendTestPurchase422Response) Get() *SendTestPurchase422Response
func (NullableSendTestPurchase422Response) IsSet ¶
func (v NullableSendTestPurchase422Response) IsSet() bool
func (NullableSendTestPurchase422Response) MarshalJSON ¶
func (v NullableSendTestPurchase422Response) MarshalJSON() ([]byte, error)
func (*NullableSendTestPurchase422Response) Set ¶
func (v *NullableSendTestPurchase422Response) Set(val *SendTestPurchase422Response)
func (*NullableSendTestPurchase422Response) UnmarshalJSON ¶
func (v *NullableSendTestPurchase422Response) UnmarshalJSON(src []byte) error
func (*NullableSendTestPurchase422Response) Unset ¶
func (v *NullableSendTestPurchase422Response) Unset()
type NullableSendTestPurchaseRequest ¶
type NullableSendTestPurchaseRequest struct {
// contains filtered or unexported fields
}
func NewNullableSendTestPurchaseRequest ¶
func NewNullableSendTestPurchaseRequest(val *SendTestPurchaseRequest) *NullableSendTestPurchaseRequest
func (NullableSendTestPurchaseRequest) Get ¶
func (v NullableSendTestPurchaseRequest) Get() *SendTestPurchaseRequest
func (NullableSendTestPurchaseRequest) IsSet ¶
func (v NullableSendTestPurchaseRequest) IsSet() bool
func (NullableSendTestPurchaseRequest) MarshalJSON ¶
func (v NullableSendTestPurchaseRequest) MarshalJSON() ([]byte, error)
func (*NullableSendTestPurchaseRequest) Set ¶
func (v *NullableSendTestPurchaseRequest) Set(val *SendTestPurchaseRequest)
func (*NullableSendTestPurchaseRequest) UnmarshalJSON ¶
func (v *NullableSendTestPurchaseRequest) UnmarshalJSON(src []byte) error
func (*NullableSendTestPurchaseRequest) Unset ¶
func (v *NullableSendTestPurchaseRequest) Unset()
type NullableSetDestinationTestMode200Response ¶
type NullableSetDestinationTestMode200Response struct {
// contains filtered or unexported fields
}
func NewNullableSetDestinationTestMode200Response ¶
func NewNullableSetDestinationTestMode200Response(val *SetDestinationTestMode200Response) *NullableSetDestinationTestMode200Response
func (NullableSetDestinationTestMode200Response) IsSet ¶
func (v NullableSetDestinationTestMode200Response) IsSet() bool
func (NullableSetDestinationTestMode200Response) MarshalJSON ¶
func (v NullableSetDestinationTestMode200Response) MarshalJSON() ([]byte, error)
func (*NullableSetDestinationTestMode200Response) Set ¶
func (v *NullableSetDestinationTestMode200Response) Set(val *SetDestinationTestMode200Response)
func (*NullableSetDestinationTestMode200Response) UnmarshalJSON ¶
func (v *NullableSetDestinationTestMode200Response) UnmarshalJSON(src []byte) error
func (*NullableSetDestinationTestMode200Response) Unset ¶
func (v *NullableSetDestinationTestMode200Response) Unset()
type NullableSetDestinationTestMode200ResponseDestination ¶
type NullableSetDestinationTestMode200ResponseDestination struct {
// contains filtered or unexported fields
}
func NewNullableSetDestinationTestMode200ResponseDestination ¶
func NewNullableSetDestinationTestMode200ResponseDestination(val *SetDestinationTestMode200ResponseDestination) *NullableSetDestinationTestMode200ResponseDestination
func (NullableSetDestinationTestMode200ResponseDestination) IsSet ¶
func (v NullableSetDestinationTestMode200ResponseDestination) IsSet() bool
func (NullableSetDestinationTestMode200ResponseDestination) MarshalJSON ¶
func (v NullableSetDestinationTestMode200ResponseDestination) MarshalJSON() ([]byte, error)
func (*NullableSetDestinationTestMode200ResponseDestination) UnmarshalJSON ¶
func (v *NullableSetDestinationTestMode200ResponseDestination) UnmarshalJSON(src []byte) error
func (*NullableSetDestinationTestMode200ResponseDestination) Unset ¶
func (v *NullableSetDestinationTestMode200ResponseDestination) Unset()
type NullableSetDestinationTestModeRequest ¶
type NullableSetDestinationTestModeRequest struct {
// contains filtered or unexported fields
}
func NewNullableSetDestinationTestModeRequest ¶
func NewNullableSetDestinationTestModeRequest(val *SetDestinationTestModeRequest) *NullableSetDestinationTestModeRequest
func (NullableSetDestinationTestModeRequest) Get ¶
func (v NullableSetDestinationTestModeRequest) Get() *SetDestinationTestModeRequest
func (NullableSetDestinationTestModeRequest) IsSet ¶
func (v NullableSetDestinationTestModeRequest) IsSet() bool
func (NullableSetDestinationTestModeRequest) MarshalJSON ¶
func (v NullableSetDestinationTestModeRequest) MarshalJSON() ([]byte, error)
func (*NullableSetDestinationTestModeRequest) Set ¶
func (v *NullableSetDestinationTestModeRequest) Set(val *SetDestinationTestModeRequest)
func (*NullableSetDestinationTestModeRequest) UnmarshalJSON ¶
func (v *NullableSetDestinationTestModeRequest) UnmarshalJSON(src []byte) error
func (*NullableSetDestinationTestModeRequest) Unset ¶
func (v *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 (v NullableTrafficClass) Get() *TrafficClass
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 NewNullableValidateSandboxEvent200Response ¶
func NewNullableValidateSandboxEvent200Response(val *ValidateSandboxEvent200Response) *NullableValidateSandboxEvent200Response
func (NullableValidateSandboxEvent200Response) IsSet ¶
func (v NullableValidateSandboxEvent200Response) IsSet() bool
func (NullableValidateSandboxEvent200Response) MarshalJSON ¶
func (v NullableValidateSandboxEvent200Response) MarshalJSON() ([]byte, error)
func (*NullableValidateSandboxEvent200Response) Set ¶
func (v *NullableValidateSandboxEvent200Response) Set(val *ValidateSandboxEvent200Response)
func (*NullableValidateSandboxEvent200Response) UnmarshalJSON ¶
func (v *NullableValidateSandboxEvent200Response) UnmarshalJSON(src []byte) error
func (*NullableValidateSandboxEvent200Response) Unset ¶
func (v *NullableValidateSandboxEvent200Response) Unset()
type NullableValidateSandboxEventRequest ¶
type NullableValidateSandboxEventRequest struct {
// contains filtered or unexported fields
}
func NewNullableValidateSandboxEventRequest ¶
func NewNullableValidateSandboxEventRequest(val *ValidateSandboxEventRequest) *NullableValidateSandboxEventRequest
func (NullableValidateSandboxEventRequest) Get ¶
func (v NullableValidateSandboxEventRequest) Get() *ValidateSandboxEventRequest
func (NullableValidateSandboxEventRequest) IsSet ¶
func (v NullableValidateSandboxEventRequest) IsSet() bool
func (NullableValidateSandboxEventRequest) MarshalJSON ¶
func (v NullableValidateSandboxEventRequest) MarshalJSON() ([]byte, error)
func (*NullableValidateSandboxEventRequest) Set ¶
func (v *NullableValidateSandboxEventRequest) Set(val *ValidateSandboxEventRequest)
func (*NullableValidateSandboxEventRequest) UnmarshalJSON ¶
func (v *NullableValidateSandboxEventRequest) UnmarshalJSON(src []byte) error
func (*NullableValidateSandboxEventRequest) Unset ¶
func (v *NullableValidateSandboxEventRequest) Unset()
type NullableValidateSandboxEventRequestValueData ¶
type NullableValidateSandboxEventRequestValueData struct {
// contains filtered or unexported fields
}
func NewNullableValidateSandboxEventRequestValueData ¶
func NewNullableValidateSandboxEventRequestValueData(val *ValidateSandboxEventRequestValueData) *NullableValidateSandboxEventRequestValueData
func (NullableValidateSandboxEventRequestValueData) IsSet ¶
func (v NullableValidateSandboxEventRequestValueData) IsSet() bool
func (NullableValidateSandboxEventRequestValueData) MarshalJSON ¶
func (v NullableValidateSandboxEventRequestValueData) MarshalJSON() ([]byte, error)
func (*NullableValidateSandboxEventRequestValueData) Set ¶
func (v *NullableValidateSandboxEventRequestValueData) Set(val *ValidateSandboxEventRequestValueData)
func (*NullableValidateSandboxEventRequestValueData) UnmarshalJSON ¶
func (v *NullableValidateSandboxEventRequestValueData) UnmarshalJSON(src []byte) error
func (*NullableValidateSandboxEventRequestValueData) Unset ¶
func (v *NullableValidateSandboxEventRequestValueData) Unset()
type NullableValidationError ¶
type NullableValidationError struct {
// contains filtered or unexported fields
}
func NewNullableValidationError ¶
func NewNullableValidationError(val *ValidationError) *NullableValidationError
func (NullableValidationError) Get ¶
func (v NullableValidationError) Get() *ValidationError
func (NullableValidationError) IsSet ¶
func (v NullableValidationError) IsSet() bool
func (NullableValidationError) MarshalJSON ¶
func (v NullableValidationError) MarshalJSON() ([]byte, error)
func (*NullableValidationError) Set ¶
func (v *NullableValidationError) Set(val *ValidationError)
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 ¶
func (a *OperationsAPIService) DeleteUserData(ctx context.Context) ApiDeleteUserDataRequest
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 ¶
func (a *OperationsAPIService) DeleteUserDataExecute(r ApiDeleteUserDataRequest) (*DeleteUserData200Response, *http.Response, error)
Execute executes the request
@return DeleteUserData200Response
func (*OperationsAPIService) GetEmqReport ¶
func (a *OperationsAPIService) GetEmqReport(ctx context.Context) ApiGetEmqReportRequest
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 ¶
func (a *OperationsAPIService) GetEmqReportExecute(r ApiGetEmqReportRequest) (*GetEmqReport200Response, *http.Response, error)
Execute executes the request
@return GetEmqReport200Response
func (*OperationsAPIService) GetReconciliationReport ¶
func (a *OperationsAPIService) GetReconciliationReport(ctx context.Context) ApiGetReconciliationReportRequest
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 ¶
func (a *OperationsAPIService) GetReconciliationReportExecute(r ApiGetReconciliationReportRequest) (*GetReconciliationReport200Response, *http.Response, error)
Execute executes the request
@return GetReconciliationReport200Response
func (*OperationsAPIService) ListEvents ¶
func (a *OperationsAPIService) ListEvents(ctx context.Context) ApiListEventsRequest
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 ¶
func (a *OperationsAPIService) ListEventsByCursor(ctx context.Context) ApiListEventsByCursorRequest
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 ¶
func (a *OperationsAPIService) ListEventsByCursorExecute(r ApiListEventsByCursorRequest) (*ListEventsByCursor200Response, *http.Response, error)
Execute executes the request
@return ListEventsByCursor200Response
func (*OperationsAPIService) ListEventsExecute ¶
func (a *OperationsAPIService) ListEventsExecute(r ApiListEventsRequest) (*ListEvents200Response, *http.Response, error)
Execute executes the request
@return ListEvents200Response
func (*OperationsAPIService) ReplayDeliveries ¶
func (a *OperationsAPIService) ReplayDeliveries(ctx context.Context) ApiReplayDeliveriesRequest
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 ¶
func (a *OperationsAPIService) ReplayDeliveriesExecute(r ApiReplayDeliveriesRequest) (*ReplayDeliveries202Response, *http.Response, error)
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 ¶
func (a *OperationsAPIService) SendTestPurchaseExecute(r ApiSendTestPurchaseRequest) (*SendTestPurchase200Response, *http.Response, error)
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 ¶
func (a *OperationsAPIService) SetDestinationTestModeExecute(r ApiSetDestinationTestModeRequest) (*SetDestinationTestMode200Response, *http.Response, error)
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 ¶
func (a *SandboxAPIService) CreateSandboxKey(ctx context.Context) ApiCreateSandboxKeyRequest
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 ¶
func (a *SandboxAPIService) CreateSandboxKeyExecute(r ApiCreateSandboxKeyRequest) (*CreateSandboxKey201Response, *http.Response, error)
Execute executes the request
@return CreateSandboxKey201Response
func (*SandboxAPIService) GetSandbox ¶
func (a *SandboxAPIService) GetSandbox(ctx context.Context) ApiGetSandboxRequest
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 ¶
func (a *SandboxAPIService) GetSandboxExecute(r ApiGetSandboxRequest) (*GetSandbox200Response, *http.Response, error)
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 ¶
func (a *SandboxAPIService) ValidateSandboxEventExecute(r ApiValidateSandboxEventRequest) (*ValidateSandboxEvent200Response, *http.Response, error)
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 ¶
func (a *SandboxAPIService) ValidateSandboxEventWithKeyExecute(r ApiValidateSandboxEventWithKeyRequest) (*ValidateSandboxEvent200Response, *http.Response, error)
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 ¶
func (o *SendTestPurchase200Response) GetStatus() DeliveryStatus
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 ¶
func (o *SendTestPurchase200Response) SetStatus(v DeliveryStatus)
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
type ServerVariable ¶
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 ¶
func (o *SetDestinationTestMode200Response) GetDestination() SetDestinationTestMode200ResponseDestination
GetDestination returns the Destination field value
func (*SetDestinationTestMode200Response) GetDestinationOk ¶
func (o *SetDestinationTestMode200Response) GetDestinationOk() (*SetDestinationTestMode200ResponseDestination, bool)
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 ¶
func (o *SetDestinationTestMode200Response) SetDestination(v SetDestinationTestMode200ResponseDestination)
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 ¶
func (o *SetDestinationTestMode200ResponseDestination) GetCreatedAt() string
GetCreatedAt returns the CreatedAt field value If the value is explicit nil, the zero value for string will be returned
func (*SetDestinationTestMode200ResponseDestination) GetCreatedAtOk ¶
func (o *SetDestinationTestMode200ResponseDestination) 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 (*SetDestinationTestMode200ResponseDestination) GetCredentialSource ¶
func (o *SetDestinationTestMode200ResponseDestination) GetCredentialSource() DestinationCredentialSource
GetCredentialSource returns the CredentialSource field value
func (*SetDestinationTestMode200ResponseDestination) GetCredentialSourceOk ¶
func (o *SetDestinationTestMode200ResponseDestination) GetCredentialSourceOk() (*DestinationCredentialSource, bool)
GetCredentialSourceOk returns a tuple with the CredentialSource field value and a boolean to check if the value has been set.
func (*SetDestinationTestMode200ResponseDestination) GetId ¶
func (o *SetDestinationTestMode200ResponseDestination) GetId() string
GetId returns the Id field value
func (*SetDestinationTestMode200ResponseDestination) GetIdOk ¶
func (o *SetDestinationTestMode200ResponseDestination) GetIdOk() (*string, bool)
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 ¶
func (o *SetDestinationTestMode200ResponseDestination) GetStatus() DestinationStatus
GetStatus returns the Status field value
func (*SetDestinationTestMode200ResponseDestination) GetStatusOk ¶
func (o *SetDestinationTestMode200ResponseDestination) GetStatusOk() (*DestinationStatus, bool)
GetStatusOk returns a tuple with the Status field value and a boolean to check if the value has been set.
func (*SetDestinationTestMode200ResponseDestination) GetType ¶
func (o *SetDestinationTestMode200ResponseDestination) GetType() DestinationType
GetType returns the Type field value
func (*SetDestinationTestMode200ResponseDestination) GetTypeOk ¶
func (o *SetDestinationTestMode200ResponseDestination) GetTypeOk() (*DestinationType, bool)
GetTypeOk returns a tuple with the Type field value and a boolean to check if the value has been set.
func (*SetDestinationTestMode200ResponseDestination) GetUpdatedAt ¶
func (o *SetDestinationTestMode200ResponseDestination) GetUpdatedAt() string
GetUpdatedAt returns the UpdatedAt field value If the value is explicit nil, the zero value for string will be returned
func (*SetDestinationTestMode200ResponseDestination) GetUpdatedAtOk ¶
func (o *SetDestinationTestMode200ResponseDestination) 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 (SetDestinationTestMode200ResponseDestination) MarshalJSON ¶
func (o SetDestinationTestMode200ResponseDestination) MarshalJSON() ([]byte, error)
func (*SetDestinationTestMode200ResponseDestination) SetConfig ¶
func (o *SetDestinationTestMode200ResponseDestination) SetConfig(v interface{})
SetConfig sets field value
func (*SetDestinationTestMode200ResponseDestination) SetCreatedAt ¶
func (o *SetDestinationTestMode200ResponseDestination) SetCreatedAt(v string)
SetCreatedAt sets field value
func (*SetDestinationTestMode200ResponseDestination) SetCredentialSource ¶
func (o *SetDestinationTestMode200ResponseDestination) SetCredentialSource(v DestinationCredentialSource)
SetCredentialSource sets field value
func (*SetDestinationTestMode200ResponseDestination) SetId ¶
func (o *SetDestinationTestMode200ResponseDestination) SetId(v string)
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 ¶
func (o *SetDestinationTestMode200ResponseDestination) SetStatus(v DestinationStatus)
SetStatus sets field value
func (*SetDestinationTestMode200ResponseDestination) SetType ¶
func (o *SetDestinationTestMode200ResponseDestination) SetType(v DestinationType)
SetType sets field value
func (*SetDestinationTestMode200ResponseDestination) SetUpdatedAt ¶
func (o *SetDestinationTestMode200ResponseDestination) SetUpdatedAt(v string)
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 ¶
func (o *ValidateSandboxEventRequest) GetValueData() ValidateSandboxEventRequestValueData
GetValueData returns the ValueData field value if set, zero value otherwise.
func (*ValidateSandboxEventRequest) GetValueDataOk ¶
func (o *ValidateSandboxEventRequest) GetValueDataOk() (*ValidateSandboxEventRequestValueData, bool)
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 ¶
func (o *ValidateSandboxEventRequest) SetValueData(v ValidateSandboxEventRequestValueData)
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 ¶
func (o *ValidateSandboxEventRequestValueData) GetCurrency() string
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 ¶
func (o *ValidateSandboxEventRequestValueData) GetOrderId() string
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 ¶
func (o *ValidateSandboxEventRequestValueData) GetValue() string
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 ¶
func (o *ValidateSandboxEventRequestValueData) HasOrderId() bool
HasOrderId returns a boolean if a field has been set.
func (*ValidateSandboxEventRequestValueData) HasValue ¶
func (o *ValidateSandboxEventRequestValueData) HasValue() bool
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 ¶
func (o *ValidateSandboxEventRequestValueData) SetOrderId(v string)
SetOrderId gets a reference to the given string and assigns it to the OrderId field.
func (*ValidateSandboxEventRequestValueData) SetValue ¶
func (o *ValidateSandboxEventRequestValueData) SetValue(v string)
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
¶
- api_event.go
- api_operations.go
- api_sandbox.go
- client.go
- configuration.go
- doc.go
- model_create_event_200_response.go
- model_create_event_request.go
- model_create_event_request_any_of.go
- model_create_event_request_any_of_1.go
- model_create_event_request_any_of_event_time.go
- model_create_event_request_any_of_value_data.go
- model_create_sandbox_key_201_response.go
- model_create_sandbox_key_201_response_use.go
- model_delete_user_data_200_response.go
- model_delete_user_data_request.go
- model_delivery_status.go
- model_destination.go
- model_destination_credential_source.go
- model_destination_status.go
- model_destination_type.go
- model_emq_snapshot.go
- model_error_message.go
- model_event.go
- model_get_emq_report_200_response.go
- model_get_emq_report_200_response_snapshots_inner.go
- model_get_event_200_response.go
- model_get_event_200_response_deliveries_inner.go
- model_get_event_200_response_event.go
- model_get_event_200_response_event_deliveries_inner.go
- model_get_event_200_response_lineage.go
- model_get_event_200_response_lineage_children_inner.go
- model_get_event_200_response_lineage_parent.go
- model_get_reconciliation_report_200_response.go
- model_get_reconciliation_report_200_response_reports_inner.go
- model_get_reconciliation_report_200_response_reports_inner_buckets_value.go
- model_get_reconciliation_report_200_response_reports_inner_event_counts.go
- model_get_reconciliation_report_200_response_reports_inner_event_counts_accepted.go
- model_get_sandbox_200_response.go
- model_get_sandbox_200_response_self_serve_key.go
- model_get_sandbox_200_response_try.go
- model_get_sandbox_200_response_try_body.go
- model_get_sandbox_200_response_try_body_value_data.go
- model_jurisdiction_policy_class.go
- model_list_events_200_response.go
- model_list_events_200_response_events.go
- model_list_events_200_response_events_links_inner.go
- model_list_events_200_response_metrics.go
- model_list_events_by_cursor_200_response.go
- model_list_events_by_cursor_200_response_events.go
- model_reconciliation_report.go
- model_replay_deliveries_202_response.go
- model_replay_deliveries_request.go
- model_send_test_purchase_200_response.go
- model_send_test_purchase_422_response.go
- model_send_test_purchase_request.go
- model_set_destination_test_mode_200_response.go
- model_set_destination_test_mode_200_response_destination.go
- model_set_destination_test_mode_request.go
- model_traffic_class.go
- model_validate_sandbox_event_200_response.go
- model_validate_sandbox_event_request.go
- model_validate_sandbox_event_request_value_data.go
- model_validation_error.go
- response.go
- utils.go