operations

package
v0.11.2 Latest Latest
Warning

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

Go to latest
Published: Mar 20, 2024 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type GetCampaignsCampaignIDRequest

type GetCampaignsCampaignIDRequest struct {
	CampaignID string `pathParam:"style=simple,explode=false,name=campaignId"`
}

func (*GetCampaignsCampaignIDRequest) GetCampaignID

func (o *GetCampaignsCampaignIDRequest) GetCampaignID() string

type GetCampaignsCampaignIDResponse

type GetCampaignsCampaignIDResponse struct {
	// Campaign found
	Campaign *shared.Campaign
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
}

func (*GetCampaignsCampaignIDResponse) GetCampaign

func (*GetCampaignsCampaignIDResponse) GetContentType

func (o *GetCampaignsCampaignIDResponse) GetContentType() string

func (*GetCampaignsCampaignIDResponse) GetErrorResponse

func (o *GetCampaignsCampaignIDResponse) GetErrorResponse() *shared.ErrorResponse

func (*GetCampaignsCampaignIDResponse) GetRawResponse

func (o *GetCampaignsCampaignIDResponse) GetRawResponse() *http.Response

func (*GetCampaignsCampaignIDResponse) GetStatusCode

func (o *GetCampaignsCampaignIDResponse) GetStatusCode() int

type PostCampaignsCampaignIDSendRequest

type PostCampaignsCampaignIDSendRequest struct {
	CampaignSendingRequest shared.CampaignSendingRequest `request:"mediaType=application/json"`
	CampaignID             string                        `pathParam:"style=simple,explode=false,name=campaignId"`
}

func (*PostCampaignsCampaignIDSendRequest) GetCampaignID

func (o *PostCampaignsCampaignIDSendRequest) GetCampaignID() string

func (*PostCampaignsCampaignIDSendRequest) GetCampaignSendingRequest

func (o *PostCampaignsCampaignIDSendRequest) GetCampaignSendingRequest() shared.CampaignSendingRequest

type PostCampaignsCampaignIDSendResponse

type PostCampaignsCampaignIDSendResponse struct {
	// Campaign sent successfully
	CampaignSending *shared.CampaignSending
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
}

func (*PostCampaignsCampaignIDSendResponse) GetCampaignSending

func (*PostCampaignsCampaignIDSendResponse) GetContentType

func (o *PostCampaignsCampaignIDSendResponse) GetContentType() string

func (*PostCampaignsCampaignIDSendResponse) GetErrorResponse

func (*PostCampaignsCampaignIDSendResponse) GetRawResponse

func (o *PostCampaignsCampaignIDSendResponse) GetRawResponse() *http.Response

func (*PostCampaignsCampaignIDSendResponse) GetStatusCode

func (o *PostCampaignsCampaignIDSendResponse) GetStatusCode() int

type PostCampaignsResponse

type PostCampaignsResponse struct {
	// Campaign created successfully
	Campaign *shared.Campaign
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
}

func (*PostCampaignsResponse) GetCampaign

func (o *PostCampaignsResponse) GetCampaign() *shared.Campaign

func (*PostCampaignsResponse) GetContentType

func (o *PostCampaignsResponse) GetContentType() string

func (*PostCampaignsResponse) GetErrorResponse

func (o *PostCampaignsResponse) GetErrorResponse() *shared.ErrorResponse

func (*PostCampaignsResponse) GetRawResponse

func (o *PostCampaignsResponse) GetRawResponse() *http.Response

func (*PostCampaignsResponse) GetStatusCode

func (o *PostCampaignsResponse) GetStatusCode() int

type PostSubscribeResponse

type PostSubscribeResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Subscribed successfully
	Subscription *shared.Subscription
}

func (*PostSubscribeResponse) GetContentType

func (o *PostSubscribeResponse) GetContentType() string

func (*PostSubscribeResponse) GetErrorResponse

func (o *PostSubscribeResponse) GetErrorResponse() *shared.ErrorResponse

func (*PostSubscribeResponse) GetRawResponse

func (o *PostSubscribeResponse) GetRawResponse() *http.Response

func (*PostSubscribeResponse) GetStatusCode

func (o *PostSubscribeResponse) GetStatusCode() int

func (*PostSubscribeResponse) GetSubscription

func (o *PostSubscribeResponse) GetSubscription() *shared.Subscription

type PostUnsubscribeResponse

type PostUnsubscribeResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Unsubscribed successfully
	Subscription *shared.Subscription
}

func (*PostUnsubscribeResponse) GetContentType

func (o *PostUnsubscribeResponse) GetContentType() string

func (*PostUnsubscribeResponse) GetErrorResponse

func (o *PostUnsubscribeResponse) GetErrorResponse() *shared.ErrorResponse

func (*PostUnsubscribeResponse) GetRawResponse

func (o *PostUnsubscribeResponse) GetRawResponse() *http.Response

func (*PostUnsubscribeResponse) GetStatusCode

func (o *PostUnsubscribeResponse) GetStatusCode() int

func (*PostUnsubscribeResponse) GetSubscription

func (o *PostUnsubscribeResponse) GetSubscription() *shared.Subscription

type PutCampaignsCampaignIDRequest

type PutCampaignsCampaignIDRequest struct {
	CampaignRequest shared.CampaignRequest `request:"mediaType=application/json"`
	CampaignID      string                 `pathParam:"style=simple,explode=false,name=campaignId"`
}

func (*PutCampaignsCampaignIDRequest) GetCampaignID

func (o *PutCampaignsCampaignIDRequest) GetCampaignID() string

func (*PutCampaignsCampaignIDRequest) GetCampaignRequest

func (o *PutCampaignsCampaignIDRequest) GetCampaignRequest() shared.CampaignRequest

type PutCampaignsCampaignIDResponse

type PutCampaignsCampaignIDResponse struct {
	// Campaign updated successfully
	Campaign *shared.Campaign
	// HTTP response content type for this operation
	ContentType string
	// Error
	ErrorResponse *shared.ErrorResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
}

func (*PutCampaignsCampaignIDResponse) GetCampaign

func (*PutCampaignsCampaignIDResponse) GetContentType

func (o *PutCampaignsCampaignIDResponse) GetContentType() string

func (*PutCampaignsCampaignIDResponse) GetErrorResponse

func (o *PutCampaignsCampaignIDResponse) GetErrorResponse() *shared.ErrorResponse

func (*PutCampaignsCampaignIDResponse) GetRawResponse

func (o *PutCampaignsCampaignIDResponse) GetRawResponse() *http.Response

func (*PutCampaignsCampaignIDResponse) GetStatusCode

func (o *PutCampaignsCampaignIDResponse) GetStatusCode() int

Jump to

Keyboard shortcuts

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