user_interface

package
v0.2.0 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2020 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for user interface API

func (*Client) PostUIAutopilotWaypoint

PostUIAutopilotWaypoint sets autopilot waypoint

Set a solar system as autopilot waypoint

---

func (*Client) PostUIOpenwindowContract

PostUIOpenwindowContract opens contract window

Open the contract window inside the client

---

func (*Client) PostUIOpenwindowInformation

PostUIOpenwindowInformation opens information window

Open the information window for a character, corporation or alliance inside the client

---

func (*Client) PostUIOpenwindowMarketdetails

PostUIOpenwindowMarketdetails opens market details

Open the market details window for a specific typeID inside the client

---

func (*Client) PostUIOpenwindowNewmail

PostUIOpenwindowNewmail opens new mail window

Open the New Mail window, according to settings from the request if applicable

---

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

type ClientService

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new user interface API client.

type PostUIAutopilotWaypointBadRequest

type PostUIAutopilotWaypointBadRequest struct {
	Payload *esimodels.BadRequest
}

PostUIAutopilotWaypointBadRequest handles this case with default header values.

Bad request

func NewPostUIAutopilotWaypointBadRequest

func NewPostUIAutopilotWaypointBadRequest() *PostUIAutopilotWaypointBadRequest

NewPostUIAutopilotWaypointBadRequest creates a PostUIAutopilotWaypointBadRequest with default headers values

func (*PostUIAutopilotWaypointBadRequest) Error

func (*PostUIAutopilotWaypointBadRequest) GetPayload

type PostUIAutopilotWaypointEnhanceYourCalm

type PostUIAutopilotWaypointEnhanceYourCalm struct {
	Payload *esimodels.ErrorLimited
}

PostUIAutopilotWaypointEnhanceYourCalm handles this case with default header values.

Error limited

func NewPostUIAutopilotWaypointEnhanceYourCalm

func NewPostUIAutopilotWaypointEnhanceYourCalm() *PostUIAutopilotWaypointEnhanceYourCalm

NewPostUIAutopilotWaypointEnhanceYourCalm creates a PostUIAutopilotWaypointEnhanceYourCalm with default headers values

func (*PostUIAutopilotWaypointEnhanceYourCalm) Error

func (*PostUIAutopilotWaypointEnhanceYourCalm) GetPayload

type PostUIAutopilotWaypointForbidden

type PostUIAutopilotWaypointForbidden struct {
	Payload *esimodels.Forbidden
}

PostUIAutopilotWaypointForbidden handles this case with default header values.

Forbidden

func NewPostUIAutopilotWaypointForbidden

func NewPostUIAutopilotWaypointForbidden() *PostUIAutopilotWaypointForbidden

NewPostUIAutopilotWaypointForbidden creates a PostUIAutopilotWaypointForbidden with default headers values

func (*PostUIAutopilotWaypointForbidden) Error

func (*PostUIAutopilotWaypointForbidden) GetPayload

type PostUIAutopilotWaypointGatewayTimeout

type PostUIAutopilotWaypointGatewayTimeout struct {
	Payload *esimodels.GatewayTimeout
}

PostUIAutopilotWaypointGatewayTimeout handles this case with default header values.

Gateway timeout

func NewPostUIAutopilotWaypointGatewayTimeout

func NewPostUIAutopilotWaypointGatewayTimeout() *PostUIAutopilotWaypointGatewayTimeout

NewPostUIAutopilotWaypointGatewayTimeout creates a PostUIAutopilotWaypointGatewayTimeout with default headers values

func (*PostUIAutopilotWaypointGatewayTimeout) Error

func (*PostUIAutopilotWaypointGatewayTimeout) GetPayload

type PostUIAutopilotWaypointInternalServerError

type PostUIAutopilotWaypointInternalServerError struct {
	Payload *esimodels.InternalServerError
}

PostUIAutopilotWaypointInternalServerError handles this case with default header values.

Internal server error

func NewPostUIAutopilotWaypointInternalServerError

func NewPostUIAutopilotWaypointInternalServerError() *PostUIAutopilotWaypointInternalServerError

NewPostUIAutopilotWaypointInternalServerError creates a PostUIAutopilotWaypointInternalServerError with default headers values

func (*PostUIAutopilotWaypointInternalServerError) Error

func (*PostUIAutopilotWaypointInternalServerError) GetPayload

type PostUIAutopilotWaypointNoContent

type PostUIAutopilotWaypointNoContent struct {
}

PostUIAutopilotWaypointNoContent handles this case with default header values.

Open window request received

func NewPostUIAutopilotWaypointNoContent

func NewPostUIAutopilotWaypointNoContent() *PostUIAutopilotWaypointNoContent

NewPostUIAutopilotWaypointNoContent creates a PostUIAutopilotWaypointNoContent with default headers values

func (*PostUIAutopilotWaypointNoContent) Error

type PostUIAutopilotWaypointParams

type PostUIAutopilotWaypointParams struct {

	/*AddToBeginning
	  Whether this solar system should be added to the beginning of all waypoints

	*/
	AddToBeginning bool
	/*ClearOtherWaypoints
	  Whether clean other waypoints beforing adding this one

	*/
	ClearOtherWaypoints bool
	/*Datasource
	  The server name you would like data from

	*/
	Datasource *string
	/*DestinationID
	  The destination to travel to, can be solar system, station or structure's id

	*/
	DestinationID int64
	/*Token
	  Access token to use if unable to set a header

	*/
	Token *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUIAutopilotWaypointParams contains all the parameters to send to the API endpoint for the post ui autopilot waypoint operation typically these are written to a http.Request

func NewPostUIAutopilotWaypointParams

func NewPostUIAutopilotWaypointParams() *PostUIAutopilotWaypointParams

NewPostUIAutopilotWaypointParams creates a new PostUIAutopilotWaypointParams object with the default values initialized.

func NewPostUIAutopilotWaypointParamsWithContext

func NewPostUIAutopilotWaypointParamsWithContext(ctx context.Context) *PostUIAutopilotWaypointParams

NewPostUIAutopilotWaypointParamsWithContext creates a new PostUIAutopilotWaypointParams object with the default values initialized, and the ability to set a context for a request

func NewPostUIAutopilotWaypointParamsWithHTTPClient

func NewPostUIAutopilotWaypointParamsWithHTTPClient(client *http.Client) *PostUIAutopilotWaypointParams

NewPostUIAutopilotWaypointParamsWithHTTPClient creates a new PostUIAutopilotWaypointParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostUIAutopilotWaypointParamsWithTimeout

func NewPostUIAutopilotWaypointParamsWithTimeout(timeout time.Duration) *PostUIAutopilotWaypointParams

NewPostUIAutopilotWaypointParamsWithTimeout creates a new PostUIAutopilotWaypointParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostUIAutopilotWaypointParams) SetAddToBeginning

func (o *PostUIAutopilotWaypointParams) SetAddToBeginning(addToBeginning bool)

SetAddToBeginning adds the addToBeginning to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetClearOtherWaypoints

func (o *PostUIAutopilotWaypointParams) SetClearOtherWaypoints(clearOtherWaypoints bool)

SetClearOtherWaypoints adds the clearOtherWaypoints to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetContext

func (o *PostUIAutopilotWaypointParams) SetContext(ctx context.Context)

SetContext adds the context to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetDatasource

func (o *PostUIAutopilotWaypointParams) SetDatasource(datasource *string)

SetDatasource adds the datasource to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetDestinationID

func (o *PostUIAutopilotWaypointParams) SetDestinationID(destinationID int64)

SetDestinationID adds the destinationId to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetHTTPClient

func (o *PostUIAutopilotWaypointParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetTimeout

func (o *PostUIAutopilotWaypointParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) SetToken

func (o *PostUIAutopilotWaypointParams) SetToken(token *string)

SetToken adds the token to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithAddToBeginning

func (o *PostUIAutopilotWaypointParams) WithAddToBeginning(addToBeginning bool) *PostUIAutopilotWaypointParams

WithAddToBeginning adds the addToBeginning to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithClearOtherWaypoints

func (o *PostUIAutopilotWaypointParams) WithClearOtherWaypoints(clearOtherWaypoints bool) *PostUIAutopilotWaypointParams

WithClearOtherWaypoints adds the clearOtherWaypoints to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithContext

WithContext adds the context to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithDatasource

func (o *PostUIAutopilotWaypointParams) WithDatasource(datasource *string) *PostUIAutopilotWaypointParams

WithDatasource adds the datasource to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithDestinationID

func (o *PostUIAutopilotWaypointParams) WithDestinationID(destinationID int64) *PostUIAutopilotWaypointParams

WithDestinationID adds the destinationID to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithTimeout

WithTimeout adds the timeout to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WithToken

WithToken adds the token to the post ui autopilot waypoint params

func (*PostUIAutopilotWaypointParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUIAutopilotWaypointReader

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

PostUIAutopilotWaypointReader is a Reader for the PostUIAutopilotWaypoint structure.

func (*PostUIAutopilotWaypointReader) ReadResponse

func (o *PostUIAutopilotWaypointReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUIAutopilotWaypointServiceUnavailable

type PostUIAutopilotWaypointServiceUnavailable struct {
	Payload *esimodels.ServiceUnavailable
}

PostUIAutopilotWaypointServiceUnavailable handles this case with default header values.

Service unavailable

func NewPostUIAutopilotWaypointServiceUnavailable

func NewPostUIAutopilotWaypointServiceUnavailable() *PostUIAutopilotWaypointServiceUnavailable

NewPostUIAutopilotWaypointServiceUnavailable creates a PostUIAutopilotWaypointServiceUnavailable with default headers values

func (*PostUIAutopilotWaypointServiceUnavailable) Error

func (*PostUIAutopilotWaypointServiceUnavailable) GetPayload

type PostUIAutopilotWaypointUnauthorized

type PostUIAutopilotWaypointUnauthorized struct {
	Payload *esimodels.Unauthorized
}

PostUIAutopilotWaypointUnauthorized handles this case with default header values.

Unauthorized

func NewPostUIAutopilotWaypointUnauthorized

func NewPostUIAutopilotWaypointUnauthorized() *PostUIAutopilotWaypointUnauthorized

NewPostUIAutopilotWaypointUnauthorized creates a PostUIAutopilotWaypointUnauthorized with default headers values

func (*PostUIAutopilotWaypointUnauthorized) Error

func (*PostUIAutopilotWaypointUnauthorized) GetPayload

type PostUIOpenwindowContractBadRequest

type PostUIOpenwindowContractBadRequest struct {
	Payload *esimodels.BadRequest
}

PostUIOpenwindowContractBadRequest handles this case with default header values.

Bad request

func NewPostUIOpenwindowContractBadRequest

func NewPostUIOpenwindowContractBadRequest() *PostUIOpenwindowContractBadRequest

NewPostUIOpenwindowContractBadRequest creates a PostUIOpenwindowContractBadRequest with default headers values

func (*PostUIOpenwindowContractBadRequest) Error

func (*PostUIOpenwindowContractBadRequest) GetPayload

type PostUIOpenwindowContractEnhanceYourCalm

type PostUIOpenwindowContractEnhanceYourCalm struct {
	Payload *esimodels.ErrorLimited
}

PostUIOpenwindowContractEnhanceYourCalm handles this case with default header values.

Error limited

func NewPostUIOpenwindowContractEnhanceYourCalm

func NewPostUIOpenwindowContractEnhanceYourCalm() *PostUIOpenwindowContractEnhanceYourCalm

NewPostUIOpenwindowContractEnhanceYourCalm creates a PostUIOpenwindowContractEnhanceYourCalm with default headers values

func (*PostUIOpenwindowContractEnhanceYourCalm) Error

func (*PostUIOpenwindowContractEnhanceYourCalm) GetPayload

type PostUIOpenwindowContractForbidden

type PostUIOpenwindowContractForbidden struct {
	Payload *esimodels.Forbidden
}

PostUIOpenwindowContractForbidden handles this case with default header values.

Forbidden

func NewPostUIOpenwindowContractForbidden

func NewPostUIOpenwindowContractForbidden() *PostUIOpenwindowContractForbidden

NewPostUIOpenwindowContractForbidden creates a PostUIOpenwindowContractForbidden with default headers values

func (*PostUIOpenwindowContractForbidden) Error

func (*PostUIOpenwindowContractForbidden) GetPayload

type PostUIOpenwindowContractGatewayTimeout

type PostUIOpenwindowContractGatewayTimeout struct {
	Payload *esimodels.GatewayTimeout
}

PostUIOpenwindowContractGatewayTimeout handles this case with default header values.

Gateway timeout

func NewPostUIOpenwindowContractGatewayTimeout

func NewPostUIOpenwindowContractGatewayTimeout() *PostUIOpenwindowContractGatewayTimeout

NewPostUIOpenwindowContractGatewayTimeout creates a PostUIOpenwindowContractGatewayTimeout with default headers values

func (*PostUIOpenwindowContractGatewayTimeout) Error

func (*PostUIOpenwindowContractGatewayTimeout) GetPayload

type PostUIOpenwindowContractInternalServerError

type PostUIOpenwindowContractInternalServerError struct {
	Payload *esimodels.InternalServerError
}

PostUIOpenwindowContractInternalServerError handles this case with default header values.

Internal server error

func NewPostUIOpenwindowContractInternalServerError

func NewPostUIOpenwindowContractInternalServerError() *PostUIOpenwindowContractInternalServerError

NewPostUIOpenwindowContractInternalServerError creates a PostUIOpenwindowContractInternalServerError with default headers values

func (*PostUIOpenwindowContractInternalServerError) Error

func (*PostUIOpenwindowContractInternalServerError) GetPayload

type PostUIOpenwindowContractNoContent

type PostUIOpenwindowContractNoContent struct {
}

PostUIOpenwindowContractNoContent handles this case with default header values.

Open window request received

func NewPostUIOpenwindowContractNoContent

func NewPostUIOpenwindowContractNoContent() *PostUIOpenwindowContractNoContent

NewPostUIOpenwindowContractNoContent creates a PostUIOpenwindowContractNoContent with default headers values

func (*PostUIOpenwindowContractNoContent) Error

type PostUIOpenwindowContractParams

type PostUIOpenwindowContractParams struct {

	/*ContractID
	  The contract to open

	*/
	ContractID int32
	/*Datasource
	  The server name you would like data from

	*/
	Datasource *string
	/*Token
	  Access token to use if unable to set a header

	*/
	Token *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUIOpenwindowContractParams contains all the parameters to send to the API endpoint for the post ui openwindow contract operation typically these are written to a http.Request

func NewPostUIOpenwindowContractParams

func NewPostUIOpenwindowContractParams() *PostUIOpenwindowContractParams

NewPostUIOpenwindowContractParams creates a new PostUIOpenwindowContractParams object with the default values initialized.

func NewPostUIOpenwindowContractParamsWithContext

func NewPostUIOpenwindowContractParamsWithContext(ctx context.Context) *PostUIOpenwindowContractParams

NewPostUIOpenwindowContractParamsWithContext creates a new PostUIOpenwindowContractParams object with the default values initialized, and the ability to set a context for a request

func NewPostUIOpenwindowContractParamsWithHTTPClient

func NewPostUIOpenwindowContractParamsWithHTTPClient(client *http.Client) *PostUIOpenwindowContractParams

NewPostUIOpenwindowContractParamsWithHTTPClient creates a new PostUIOpenwindowContractParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostUIOpenwindowContractParamsWithTimeout

func NewPostUIOpenwindowContractParamsWithTimeout(timeout time.Duration) *PostUIOpenwindowContractParams

NewPostUIOpenwindowContractParamsWithTimeout creates a new PostUIOpenwindowContractParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostUIOpenwindowContractParams) SetContext

func (o *PostUIOpenwindowContractParams) SetContext(ctx context.Context)

SetContext adds the context to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) SetContractID

func (o *PostUIOpenwindowContractParams) SetContractID(contractID int32)

SetContractID adds the contractId to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) SetDatasource

func (o *PostUIOpenwindowContractParams) SetDatasource(datasource *string)

SetDatasource adds the datasource to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) SetHTTPClient

func (o *PostUIOpenwindowContractParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) SetTimeout

func (o *PostUIOpenwindowContractParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) SetToken

func (o *PostUIOpenwindowContractParams) SetToken(token *string)

SetToken adds the token to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithContext

WithContext adds the context to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithContractID

WithContractID adds the contractID to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithDatasource

WithDatasource adds the datasource to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithTimeout

WithTimeout adds the timeout to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WithToken

WithToken adds the token to the post ui openwindow contract params

func (*PostUIOpenwindowContractParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUIOpenwindowContractReader

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

PostUIOpenwindowContractReader is a Reader for the PostUIOpenwindowContract structure.

func (*PostUIOpenwindowContractReader) ReadResponse

func (o *PostUIOpenwindowContractReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUIOpenwindowContractServiceUnavailable

type PostUIOpenwindowContractServiceUnavailable struct {
	Payload *esimodels.ServiceUnavailable
}

PostUIOpenwindowContractServiceUnavailable handles this case with default header values.

Service unavailable

func NewPostUIOpenwindowContractServiceUnavailable

func NewPostUIOpenwindowContractServiceUnavailable() *PostUIOpenwindowContractServiceUnavailable

NewPostUIOpenwindowContractServiceUnavailable creates a PostUIOpenwindowContractServiceUnavailable with default headers values

func (*PostUIOpenwindowContractServiceUnavailable) Error

func (*PostUIOpenwindowContractServiceUnavailable) GetPayload

type PostUIOpenwindowContractUnauthorized

type PostUIOpenwindowContractUnauthorized struct {
	Payload *esimodels.Unauthorized
}

PostUIOpenwindowContractUnauthorized handles this case with default header values.

Unauthorized

func NewPostUIOpenwindowContractUnauthorized

func NewPostUIOpenwindowContractUnauthorized() *PostUIOpenwindowContractUnauthorized

NewPostUIOpenwindowContractUnauthorized creates a PostUIOpenwindowContractUnauthorized with default headers values

func (*PostUIOpenwindowContractUnauthorized) Error

func (*PostUIOpenwindowContractUnauthorized) GetPayload

type PostUIOpenwindowInformationBadRequest

type PostUIOpenwindowInformationBadRequest struct {
	Payload *esimodels.BadRequest
}

PostUIOpenwindowInformationBadRequest handles this case with default header values.

Bad request

func NewPostUIOpenwindowInformationBadRequest

func NewPostUIOpenwindowInformationBadRequest() *PostUIOpenwindowInformationBadRequest

NewPostUIOpenwindowInformationBadRequest creates a PostUIOpenwindowInformationBadRequest with default headers values

func (*PostUIOpenwindowInformationBadRequest) Error

func (*PostUIOpenwindowInformationBadRequest) GetPayload

type PostUIOpenwindowInformationEnhanceYourCalm

type PostUIOpenwindowInformationEnhanceYourCalm struct {
	Payload *esimodels.ErrorLimited
}

PostUIOpenwindowInformationEnhanceYourCalm handles this case with default header values.

Error limited

func NewPostUIOpenwindowInformationEnhanceYourCalm

func NewPostUIOpenwindowInformationEnhanceYourCalm() *PostUIOpenwindowInformationEnhanceYourCalm

NewPostUIOpenwindowInformationEnhanceYourCalm creates a PostUIOpenwindowInformationEnhanceYourCalm with default headers values

func (*PostUIOpenwindowInformationEnhanceYourCalm) Error

func (*PostUIOpenwindowInformationEnhanceYourCalm) GetPayload

type PostUIOpenwindowInformationForbidden

type PostUIOpenwindowInformationForbidden struct {
	Payload *esimodels.Forbidden
}

PostUIOpenwindowInformationForbidden handles this case with default header values.

Forbidden

func NewPostUIOpenwindowInformationForbidden

func NewPostUIOpenwindowInformationForbidden() *PostUIOpenwindowInformationForbidden

NewPostUIOpenwindowInformationForbidden creates a PostUIOpenwindowInformationForbidden with default headers values

func (*PostUIOpenwindowInformationForbidden) Error

func (*PostUIOpenwindowInformationForbidden) GetPayload

type PostUIOpenwindowInformationGatewayTimeout

type PostUIOpenwindowInformationGatewayTimeout struct {
	Payload *esimodels.GatewayTimeout
}

PostUIOpenwindowInformationGatewayTimeout handles this case with default header values.

Gateway timeout

func NewPostUIOpenwindowInformationGatewayTimeout

func NewPostUIOpenwindowInformationGatewayTimeout() *PostUIOpenwindowInformationGatewayTimeout

NewPostUIOpenwindowInformationGatewayTimeout creates a PostUIOpenwindowInformationGatewayTimeout with default headers values

func (*PostUIOpenwindowInformationGatewayTimeout) Error

func (*PostUIOpenwindowInformationGatewayTimeout) GetPayload

type PostUIOpenwindowInformationInternalServerError

type PostUIOpenwindowInformationInternalServerError struct {
	Payload *esimodels.InternalServerError
}

PostUIOpenwindowInformationInternalServerError handles this case with default header values.

Internal server error

func NewPostUIOpenwindowInformationInternalServerError

func NewPostUIOpenwindowInformationInternalServerError() *PostUIOpenwindowInformationInternalServerError

NewPostUIOpenwindowInformationInternalServerError creates a PostUIOpenwindowInformationInternalServerError with default headers values

func (*PostUIOpenwindowInformationInternalServerError) Error

func (*PostUIOpenwindowInformationInternalServerError) GetPayload

type PostUIOpenwindowInformationNoContent

type PostUIOpenwindowInformationNoContent struct {
}

PostUIOpenwindowInformationNoContent handles this case with default header values.

Open window request received

func NewPostUIOpenwindowInformationNoContent

func NewPostUIOpenwindowInformationNoContent() *PostUIOpenwindowInformationNoContent

NewPostUIOpenwindowInformationNoContent creates a PostUIOpenwindowInformationNoContent with default headers values

func (*PostUIOpenwindowInformationNoContent) Error

type PostUIOpenwindowInformationParams

type PostUIOpenwindowInformationParams struct {

	/*Datasource
	  The server name you would like data from

	*/
	Datasource *string
	/*TargetID
	  The target to open

	*/
	TargetID int32
	/*Token
	  Access token to use if unable to set a header

	*/
	Token *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUIOpenwindowInformationParams contains all the parameters to send to the API endpoint for the post ui openwindow information operation typically these are written to a http.Request

func NewPostUIOpenwindowInformationParams

func NewPostUIOpenwindowInformationParams() *PostUIOpenwindowInformationParams

NewPostUIOpenwindowInformationParams creates a new PostUIOpenwindowInformationParams object with the default values initialized.

func NewPostUIOpenwindowInformationParamsWithContext

func NewPostUIOpenwindowInformationParamsWithContext(ctx context.Context) *PostUIOpenwindowInformationParams

NewPostUIOpenwindowInformationParamsWithContext creates a new PostUIOpenwindowInformationParams object with the default values initialized, and the ability to set a context for a request

func NewPostUIOpenwindowInformationParamsWithHTTPClient

func NewPostUIOpenwindowInformationParamsWithHTTPClient(client *http.Client) *PostUIOpenwindowInformationParams

NewPostUIOpenwindowInformationParamsWithHTTPClient creates a new PostUIOpenwindowInformationParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostUIOpenwindowInformationParamsWithTimeout

func NewPostUIOpenwindowInformationParamsWithTimeout(timeout time.Duration) *PostUIOpenwindowInformationParams

NewPostUIOpenwindowInformationParamsWithTimeout creates a new PostUIOpenwindowInformationParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostUIOpenwindowInformationParams) SetContext

SetContext adds the context to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) SetDatasource

func (o *PostUIOpenwindowInformationParams) SetDatasource(datasource *string)

SetDatasource adds the datasource to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) SetHTTPClient

func (o *PostUIOpenwindowInformationParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) SetTargetID

func (o *PostUIOpenwindowInformationParams) SetTargetID(targetID int32)

SetTargetID adds the targetId to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) SetTimeout

func (o *PostUIOpenwindowInformationParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) SetToken

func (o *PostUIOpenwindowInformationParams) SetToken(token *string)

SetToken adds the token to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithContext

WithContext adds the context to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithDatasource

WithDatasource adds the datasource to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithTargetID

WithTargetID adds the targetID to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithTimeout

WithTimeout adds the timeout to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WithToken

WithToken adds the token to the post ui openwindow information params

func (*PostUIOpenwindowInformationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUIOpenwindowInformationReader

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

PostUIOpenwindowInformationReader is a Reader for the PostUIOpenwindowInformation structure.

func (*PostUIOpenwindowInformationReader) ReadResponse

func (o *PostUIOpenwindowInformationReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUIOpenwindowInformationServiceUnavailable

type PostUIOpenwindowInformationServiceUnavailable struct {
	Payload *esimodels.ServiceUnavailable
}

PostUIOpenwindowInformationServiceUnavailable handles this case with default header values.

Service unavailable

func NewPostUIOpenwindowInformationServiceUnavailable

func NewPostUIOpenwindowInformationServiceUnavailable() *PostUIOpenwindowInformationServiceUnavailable

NewPostUIOpenwindowInformationServiceUnavailable creates a PostUIOpenwindowInformationServiceUnavailable with default headers values

func (*PostUIOpenwindowInformationServiceUnavailable) Error

func (*PostUIOpenwindowInformationServiceUnavailable) GetPayload

type PostUIOpenwindowInformationUnauthorized

type PostUIOpenwindowInformationUnauthorized struct {
	Payload *esimodels.Unauthorized
}

PostUIOpenwindowInformationUnauthorized handles this case with default header values.

Unauthorized

func NewPostUIOpenwindowInformationUnauthorized

func NewPostUIOpenwindowInformationUnauthorized() *PostUIOpenwindowInformationUnauthorized

NewPostUIOpenwindowInformationUnauthorized creates a PostUIOpenwindowInformationUnauthorized with default headers values

func (*PostUIOpenwindowInformationUnauthorized) Error

func (*PostUIOpenwindowInformationUnauthorized) GetPayload

type PostUIOpenwindowMarketdetailsBadRequest

type PostUIOpenwindowMarketdetailsBadRequest struct {
	Payload *esimodels.BadRequest
}

PostUIOpenwindowMarketdetailsBadRequest handles this case with default header values.

Bad request

func NewPostUIOpenwindowMarketdetailsBadRequest

func NewPostUIOpenwindowMarketdetailsBadRequest() *PostUIOpenwindowMarketdetailsBadRequest

NewPostUIOpenwindowMarketdetailsBadRequest creates a PostUIOpenwindowMarketdetailsBadRequest with default headers values

func (*PostUIOpenwindowMarketdetailsBadRequest) Error

func (*PostUIOpenwindowMarketdetailsBadRequest) GetPayload

type PostUIOpenwindowMarketdetailsEnhanceYourCalm

type PostUIOpenwindowMarketdetailsEnhanceYourCalm struct {
	Payload *esimodels.ErrorLimited
}

PostUIOpenwindowMarketdetailsEnhanceYourCalm handles this case with default header values.

Error limited

func NewPostUIOpenwindowMarketdetailsEnhanceYourCalm

func NewPostUIOpenwindowMarketdetailsEnhanceYourCalm() *PostUIOpenwindowMarketdetailsEnhanceYourCalm

NewPostUIOpenwindowMarketdetailsEnhanceYourCalm creates a PostUIOpenwindowMarketdetailsEnhanceYourCalm with default headers values

func (*PostUIOpenwindowMarketdetailsEnhanceYourCalm) Error

func (*PostUIOpenwindowMarketdetailsEnhanceYourCalm) GetPayload

type PostUIOpenwindowMarketdetailsForbidden

type PostUIOpenwindowMarketdetailsForbidden struct {
	Payload *esimodels.Forbidden
}

PostUIOpenwindowMarketdetailsForbidden handles this case with default header values.

Forbidden

func NewPostUIOpenwindowMarketdetailsForbidden

func NewPostUIOpenwindowMarketdetailsForbidden() *PostUIOpenwindowMarketdetailsForbidden

NewPostUIOpenwindowMarketdetailsForbidden creates a PostUIOpenwindowMarketdetailsForbidden with default headers values

func (*PostUIOpenwindowMarketdetailsForbidden) Error

func (*PostUIOpenwindowMarketdetailsForbidden) GetPayload

type PostUIOpenwindowMarketdetailsGatewayTimeout

type PostUIOpenwindowMarketdetailsGatewayTimeout struct {
	Payload *esimodels.GatewayTimeout
}

PostUIOpenwindowMarketdetailsGatewayTimeout handles this case with default header values.

Gateway timeout

func NewPostUIOpenwindowMarketdetailsGatewayTimeout

func NewPostUIOpenwindowMarketdetailsGatewayTimeout() *PostUIOpenwindowMarketdetailsGatewayTimeout

NewPostUIOpenwindowMarketdetailsGatewayTimeout creates a PostUIOpenwindowMarketdetailsGatewayTimeout with default headers values

func (*PostUIOpenwindowMarketdetailsGatewayTimeout) Error

func (*PostUIOpenwindowMarketdetailsGatewayTimeout) GetPayload

type PostUIOpenwindowMarketdetailsInternalServerError

type PostUIOpenwindowMarketdetailsInternalServerError struct {
	Payload *esimodels.InternalServerError
}

PostUIOpenwindowMarketdetailsInternalServerError handles this case with default header values.

Internal server error

func NewPostUIOpenwindowMarketdetailsInternalServerError

func NewPostUIOpenwindowMarketdetailsInternalServerError() *PostUIOpenwindowMarketdetailsInternalServerError

NewPostUIOpenwindowMarketdetailsInternalServerError creates a PostUIOpenwindowMarketdetailsInternalServerError with default headers values

func (*PostUIOpenwindowMarketdetailsInternalServerError) Error

func (*PostUIOpenwindowMarketdetailsInternalServerError) GetPayload

type PostUIOpenwindowMarketdetailsNoContent

type PostUIOpenwindowMarketdetailsNoContent struct {
}

PostUIOpenwindowMarketdetailsNoContent handles this case with default header values.

Open window request received

func NewPostUIOpenwindowMarketdetailsNoContent

func NewPostUIOpenwindowMarketdetailsNoContent() *PostUIOpenwindowMarketdetailsNoContent

NewPostUIOpenwindowMarketdetailsNoContent creates a PostUIOpenwindowMarketdetailsNoContent with default headers values

func (*PostUIOpenwindowMarketdetailsNoContent) Error

type PostUIOpenwindowMarketdetailsParams

type PostUIOpenwindowMarketdetailsParams struct {

	/*Datasource
	  The server name you would like data from

	*/
	Datasource *string
	/*Token
	  Access token to use if unable to set a header

	*/
	Token *string
	/*TypeID
	  The item type to open in market window

	*/
	TypeID int32

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUIOpenwindowMarketdetailsParams contains all the parameters to send to the API endpoint for the post ui openwindow marketdetails operation typically these are written to a http.Request

func NewPostUIOpenwindowMarketdetailsParams

func NewPostUIOpenwindowMarketdetailsParams() *PostUIOpenwindowMarketdetailsParams

NewPostUIOpenwindowMarketdetailsParams creates a new PostUIOpenwindowMarketdetailsParams object with the default values initialized.

func NewPostUIOpenwindowMarketdetailsParamsWithContext

func NewPostUIOpenwindowMarketdetailsParamsWithContext(ctx context.Context) *PostUIOpenwindowMarketdetailsParams

NewPostUIOpenwindowMarketdetailsParamsWithContext creates a new PostUIOpenwindowMarketdetailsParams object with the default values initialized, and the ability to set a context for a request

func NewPostUIOpenwindowMarketdetailsParamsWithHTTPClient

func NewPostUIOpenwindowMarketdetailsParamsWithHTTPClient(client *http.Client) *PostUIOpenwindowMarketdetailsParams

NewPostUIOpenwindowMarketdetailsParamsWithHTTPClient creates a new PostUIOpenwindowMarketdetailsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostUIOpenwindowMarketdetailsParamsWithTimeout

func NewPostUIOpenwindowMarketdetailsParamsWithTimeout(timeout time.Duration) *PostUIOpenwindowMarketdetailsParams

NewPostUIOpenwindowMarketdetailsParamsWithTimeout creates a new PostUIOpenwindowMarketdetailsParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostUIOpenwindowMarketdetailsParams) SetContext

SetContext adds the context to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) SetDatasource

func (o *PostUIOpenwindowMarketdetailsParams) SetDatasource(datasource *string)

SetDatasource adds the datasource to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) SetHTTPClient

func (o *PostUIOpenwindowMarketdetailsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) SetTimeout

func (o *PostUIOpenwindowMarketdetailsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) SetToken

func (o *PostUIOpenwindowMarketdetailsParams) SetToken(token *string)

SetToken adds the token to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) SetTypeID

func (o *PostUIOpenwindowMarketdetailsParams) SetTypeID(typeID int32)

SetTypeID adds the typeId to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithContext

WithContext adds the context to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithDatasource

WithDatasource adds the datasource to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithTimeout

WithTimeout adds the timeout to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithToken

WithToken adds the token to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WithTypeID

WithTypeID adds the typeID to the post ui openwindow marketdetails params

func (*PostUIOpenwindowMarketdetailsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUIOpenwindowMarketdetailsReader

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

PostUIOpenwindowMarketdetailsReader is a Reader for the PostUIOpenwindowMarketdetails structure.

func (*PostUIOpenwindowMarketdetailsReader) ReadResponse

func (o *PostUIOpenwindowMarketdetailsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUIOpenwindowMarketdetailsServiceUnavailable

type PostUIOpenwindowMarketdetailsServiceUnavailable struct {
	Payload *esimodels.ServiceUnavailable
}

PostUIOpenwindowMarketdetailsServiceUnavailable handles this case with default header values.

Service unavailable

func NewPostUIOpenwindowMarketdetailsServiceUnavailable

func NewPostUIOpenwindowMarketdetailsServiceUnavailable() *PostUIOpenwindowMarketdetailsServiceUnavailable

NewPostUIOpenwindowMarketdetailsServiceUnavailable creates a PostUIOpenwindowMarketdetailsServiceUnavailable with default headers values

func (*PostUIOpenwindowMarketdetailsServiceUnavailable) Error

func (*PostUIOpenwindowMarketdetailsServiceUnavailable) GetPayload

type PostUIOpenwindowMarketdetailsUnauthorized

type PostUIOpenwindowMarketdetailsUnauthorized struct {
	Payload *esimodels.Unauthorized
}

PostUIOpenwindowMarketdetailsUnauthorized handles this case with default header values.

Unauthorized

func NewPostUIOpenwindowMarketdetailsUnauthorized

func NewPostUIOpenwindowMarketdetailsUnauthorized() *PostUIOpenwindowMarketdetailsUnauthorized

NewPostUIOpenwindowMarketdetailsUnauthorized creates a PostUIOpenwindowMarketdetailsUnauthorized with default headers values

func (*PostUIOpenwindowMarketdetailsUnauthorized) Error

func (*PostUIOpenwindowMarketdetailsUnauthorized) GetPayload

type PostUIOpenwindowNewmailBadRequest

type PostUIOpenwindowNewmailBadRequest struct {
	Payload *esimodels.BadRequest
}

PostUIOpenwindowNewmailBadRequest handles this case with default header values.

Bad request

func NewPostUIOpenwindowNewmailBadRequest

func NewPostUIOpenwindowNewmailBadRequest() *PostUIOpenwindowNewmailBadRequest

NewPostUIOpenwindowNewmailBadRequest creates a PostUIOpenwindowNewmailBadRequest with default headers values

func (*PostUIOpenwindowNewmailBadRequest) Error

func (*PostUIOpenwindowNewmailBadRequest) GetPayload

type PostUIOpenwindowNewmailBody

type PostUIOpenwindowNewmailBody struct {

	// post_ui_openwindow_newmail_body
	//
	// body string
	// Required: true
	// Max Length: 10000
	Body *string `json:"body"`

	// post_ui_openwindow_newmail_recipients
	//
	// recipients array
	// Required: true
	// Max Items: 50
	// Min Items: 1
	Recipients []int32 `json:"recipients"`

	// post_ui_openwindow_newmail_subject
	//
	// subject string
	// Required: true
	// Max Length: 1000
	Subject *string `json:"subject"`

	// post_ui_openwindow_newmail_to_corp_or_alliance_id
	//
	// to_corp_or_alliance_id integer
	ToCorpOrAllianceID int32 `json:"to_corp_or_alliance_id,omitempty"`

	// post_ui_openwindow_newmail_to_mailing_list_id
	//
	// Corporations, alliances and mailing lists are all types of mailing groups. You may only send to one mailing group, at a time, so you may fill out either this field or the to_corp_or_alliance_ids field
	ToMailingListID int32 `json:"to_mailing_list_id,omitempty"`
}

PostUIOpenwindowNewmailBody post_ui_openwindow_newmail_new_mail // // new_mail object swagger:model PostUIOpenwindowNewmailBody

func (*PostUIOpenwindowNewmailBody) MarshalBinary

func (o *PostUIOpenwindowNewmailBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PostUIOpenwindowNewmailBody) UnmarshalBinary

func (o *PostUIOpenwindowNewmailBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PostUIOpenwindowNewmailBody) Validate

func (o *PostUIOpenwindowNewmailBody) Validate(formats strfmt.Registry) error

Validate validates this post UI openwindow newmail body

type PostUIOpenwindowNewmailEnhanceYourCalm

type PostUIOpenwindowNewmailEnhanceYourCalm struct {
	Payload *esimodels.ErrorLimited
}

PostUIOpenwindowNewmailEnhanceYourCalm handles this case with default header values.

Error limited

func NewPostUIOpenwindowNewmailEnhanceYourCalm

func NewPostUIOpenwindowNewmailEnhanceYourCalm() *PostUIOpenwindowNewmailEnhanceYourCalm

NewPostUIOpenwindowNewmailEnhanceYourCalm creates a PostUIOpenwindowNewmailEnhanceYourCalm with default headers values

func (*PostUIOpenwindowNewmailEnhanceYourCalm) Error

func (*PostUIOpenwindowNewmailEnhanceYourCalm) GetPayload

type PostUIOpenwindowNewmailForbidden

type PostUIOpenwindowNewmailForbidden struct {
	Payload *esimodels.Forbidden
}

PostUIOpenwindowNewmailForbidden handles this case with default header values.

Forbidden

func NewPostUIOpenwindowNewmailForbidden

func NewPostUIOpenwindowNewmailForbidden() *PostUIOpenwindowNewmailForbidden

NewPostUIOpenwindowNewmailForbidden creates a PostUIOpenwindowNewmailForbidden with default headers values

func (*PostUIOpenwindowNewmailForbidden) Error

func (*PostUIOpenwindowNewmailForbidden) GetPayload

type PostUIOpenwindowNewmailGatewayTimeout

type PostUIOpenwindowNewmailGatewayTimeout struct {
	Payload *esimodels.GatewayTimeout
}

PostUIOpenwindowNewmailGatewayTimeout handles this case with default header values.

Gateway timeout

func NewPostUIOpenwindowNewmailGatewayTimeout

func NewPostUIOpenwindowNewmailGatewayTimeout() *PostUIOpenwindowNewmailGatewayTimeout

NewPostUIOpenwindowNewmailGatewayTimeout creates a PostUIOpenwindowNewmailGatewayTimeout with default headers values

func (*PostUIOpenwindowNewmailGatewayTimeout) Error

func (*PostUIOpenwindowNewmailGatewayTimeout) GetPayload

type PostUIOpenwindowNewmailInternalServerError

type PostUIOpenwindowNewmailInternalServerError struct {
	Payload *esimodels.InternalServerError
}

PostUIOpenwindowNewmailInternalServerError handles this case with default header values.

Internal server error

func NewPostUIOpenwindowNewmailInternalServerError

func NewPostUIOpenwindowNewmailInternalServerError() *PostUIOpenwindowNewmailInternalServerError

NewPostUIOpenwindowNewmailInternalServerError creates a PostUIOpenwindowNewmailInternalServerError with default headers values

func (*PostUIOpenwindowNewmailInternalServerError) Error

func (*PostUIOpenwindowNewmailInternalServerError) GetPayload

type PostUIOpenwindowNewmailNoContent

type PostUIOpenwindowNewmailNoContent struct {
}

PostUIOpenwindowNewmailNoContent handles this case with default header values.

Open window request received

func NewPostUIOpenwindowNewmailNoContent

func NewPostUIOpenwindowNewmailNoContent() *PostUIOpenwindowNewmailNoContent

NewPostUIOpenwindowNewmailNoContent creates a PostUIOpenwindowNewmailNoContent with default headers values

func (*PostUIOpenwindowNewmailNoContent) Error

type PostUIOpenwindowNewmailParams

type PostUIOpenwindowNewmailParams struct {

	/*Datasource
	  The server name you would like data from

	*/
	Datasource *string
	/*NewMail
	  The details of mail to create

	*/
	NewMail PostUIOpenwindowNewmailBody
	/*Token
	  Access token to use if unable to set a header

	*/
	Token *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostUIOpenwindowNewmailParams contains all the parameters to send to the API endpoint for the post ui openwindow newmail operation typically these are written to a http.Request

func NewPostUIOpenwindowNewmailParams

func NewPostUIOpenwindowNewmailParams() *PostUIOpenwindowNewmailParams

NewPostUIOpenwindowNewmailParams creates a new PostUIOpenwindowNewmailParams object with the default values initialized.

func NewPostUIOpenwindowNewmailParamsWithContext

func NewPostUIOpenwindowNewmailParamsWithContext(ctx context.Context) *PostUIOpenwindowNewmailParams

NewPostUIOpenwindowNewmailParamsWithContext creates a new PostUIOpenwindowNewmailParams object with the default values initialized, and the ability to set a context for a request

func NewPostUIOpenwindowNewmailParamsWithHTTPClient

func NewPostUIOpenwindowNewmailParamsWithHTTPClient(client *http.Client) *PostUIOpenwindowNewmailParams

NewPostUIOpenwindowNewmailParamsWithHTTPClient creates a new PostUIOpenwindowNewmailParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostUIOpenwindowNewmailParamsWithTimeout

func NewPostUIOpenwindowNewmailParamsWithTimeout(timeout time.Duration) *PostUIOpenwindowNewmailParams

NewPostUIOpenwindowNewmailParamsWithTimeout creates a new PostUIOpenwindowNewmailParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostUIOpenwindowNewmailParams) SetContext

func (o *PostUIOpenwindowNewmailParams) SetContext(ctx context.Context)

SetContext adds the context to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) SetDatasource

func (o *PostUIOpenwindowNewmailParams) SetDatasource(datasource *string)

SetDatasource adds the datasource to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) SetHTTPClient

func (o *PostUIOpenwindowNewmailParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) SetNewMail

SetNewMail adds the newMail to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) SetTimeout

func (o *PostUIOpenwindowNewmailParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) SetToken

func (o *PostUIOpenwindowNewmailParams) SetToken(token *string)

SetToken adds the token to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithContext

WithContext adds the context to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithDatasource

func (o *PostUIOpenwindowNewmailParams) WithDatasource(datasource *string) *PostUIOpenwindowNewmailParams

WithDatasource adds the datasource to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithNewMail

WithNewMail adds the newMail to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithTimeout

WithTimeout adds the timeout to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WithToken

WithToken adds the token to the post ui openwindow newmail params

func (*PostUIOpenwindowNewmailParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostUIOpenwindowNewmailReader

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

PostUIOpenwindowNewmailReader is a Reader for the PostUIOpenwindowNewmail structure.

func (*PostUIOpenwindowNewmailReader) ReadResponse

func (o *PostUIOpenwindowNewmailReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostUIOpenwindowNewmailServiceUnavailable

type PostUIOpenwindowNewmailServiceUnavailable struct {
	Payload *esimodels.ServiceUnavailable
}

PostUIOpenwindowNewmailServiceUnavailable handles this case with default header values.

Service unavailable

func NewPostUIOpenwindowNewmailServiceUnavailable

func NewPostUIOpenwindowNewmailServiceUnavailable() *PostUIOpenwindowNewmailServiceUnavailable

NewPostUIOpenwindowNewmailServiceUnavailable creates a PostUIOpenwindowNewmailServiceUnavailable with default headers values

func (*PostUIOpenwindowNewmailServiceUnavailable) Error

func (*PostUIOpenwindowNewmailServiceUnavailable) GetPayload

type PostUIOpenwindowNewmailUnauthorized

type PostUIOpenwindowNewmailUnauthorized struct {
	Payload *esimodels.Unauthorized
}

PostUIOpenwindowNewmailUnauthorized handles this case with default header values.

Unauthorized

func NewPostUIOpenwindowNewmailUnauthorized

func NewPostUIOpenwindowNewmailUnauthorized() *PostUIOpenwindowNewmailUnauthorized

NewPostUIOpenwindowNewmailUnauthorized creates a PostUIOpenwindowNewmailUnauthorized with default headers values

func (*PostUIOpenwindowNewmailUnauthorized) Error

func (*PostUIOpenwindowNewmailUnauthorized) GetPayload

type PostUIOpenwindowNewmailUnprocessableEntity

type PostUIOpenwindowNewmailUnprocessableEntity struct {
	Payload *PostUIOpenwindowNewmailUnprocessableEntityBody
}

PostUIOpenwindowNewmailUnprocessableEntity handles this case with default header values.

Invalid request

func NewPostUIOpenwindowNewmailUnprocessableEntity

func NewPostUIOpenwindowNewmailUnprocessableEntity() *PostUIOpenwindowNewmailUnprocessableEntity

NewPostUIOpenwindowNewmailUnprocessableEntity creates a PostUIOpenwindowNewmailUnprocessableEntity with default headers values

func (*PostUIOpenwindowNewmailUnprocessableEntity) Error

func (*PostUIOpenwindowNewmailUnprocessableEntity) GetPayload

type PostUIOpenwindowNewmailUnprocessableEntityBody

type PostUIOpenwindowNewmailUnprocessableEntityBody struct {

	// post_ui_openwindow_newmail_422_unprocessable_entity
	//
	// Unprocessable entity message
	Error string `json:"error,omitempty"`
}

PostUIOpenwindowNewmailUnprocessableEntityBody post_ui_openwindow_newmail_unprocessable_entity // // Unprocessable entity swagger:model PostUIOpenwindowNewmailUnprocessableEntityBody

func (*PostUIOpenwindowNewmailUnprocessableEntityBody) MarshalBinary

MarshalBinary interface implementation

func (*PostUIOpenwindowNewmailUnprocessableEntityBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*PostUIOpenwindowNewmailUnprocessableEntityBody) Validate

Validate validates this post UI openwindow newmail unprocessable entity body

Jump to

Keyboard shortcuts

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