calendar

package
v0.0.0-...-b9aa217 Latest Latest
Warning

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

Go to latest
Published: Jul 12, 2023 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Index

Constants

View Source
const (

	// GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseDeclined captures enum value "declined"
	GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseDeclined string = "declined"

	// GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseNotResponded captures enum value "not_responded"
	GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseNotResponded string = "not_responded"

	// GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseAccepted captures enum value "accepted"
	GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseAccepted string = "accepted"

	// GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseTentative captures enum value "tentative"
	GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0EventResponseTentative string = "tentative"
)
View Source
const (

	// GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeEveServer captures enum value "eve_server"
	GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeEveServer string = "eve_server"

	// GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeCorporation captures enum value "corporation"
	GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeCorporation string = "corporation"

	// GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeFaction captures enum value "faction"
	GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeFaction string = "faction"

	// GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeCharacter captures enum value "character"
	GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeCharacter string = "character"

	// GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeAlliance captures enum value "alliance"
	GetCharactersCharacterIDCalendarEventIDOKBodyOwnerTypeAlliance string = "alliance"
)
View Source
const (

	// GetCharactersCharacterIDCalendarOKBodyItems0EventResponseDeclined captures enum value "declined"
	GetCharactersCharacterIDCalendarOKBodyItems0EventResponseDeclined string = "declined"

	// GetCharactersCharacterIDCalendarOKBodyItems0EventResponseNotResponded captures enum value "not_responded"
	GetCharactersCharacterIDCalendarOKBodyItems0EventResponseNotResponded string = "not_responded"

	// GetCharactersCharacterIDCalendarOKBodyItems0EventResponseAccepted captures enum value "accepted"
	GetCharactersCharacterIDCalendarOKBodyItems0EventResponseAccepted string = "accepted"

	// GetCharactersCharacterIDCalendarOKBodyItems0EventResponseTentative captures enum value "tentative"
	GetCharactersCharacterIDCalendarOKBodyItems0EventResponseTentative string = "tentative"
)
View Source
const (

	// PutCharactersCharacterIDCalendarEventIDBodyResponseAccepted captures enum value "accepted"
	PutCharactersCharacterIDCalendarEventIDBodyResponseAccepted string = "accepted"

	// PutCharactersCharacterIDCalendarEventIDBodyResponseDeclined captures enum value "declined"
	PutCharactersCharacterIDCalendarEventIDBodyResponseDeclined string = "declined"

	// PutCharactersCharacterIDCalendarEventIDBodyResponseTentative captures enum value "tentative"
	PutCharactersCharacterIDCalendarEventIDBodyResponseTentative string = "tentative"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for calendar API

func (*Client) GetCharactersCharacterIDCalendar

func (a *Client) GetCharactersCharacterIDCalendar(params *GetCharactersCharacterIDCalendarParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCharactersCharacterIDCalendarOK, error)
GetCharactersCharacterIDCalendar lists calendar event summaries

Get 50 event summaries from the calendar. If no from_event ID is given, the resource will return the next 50 chronological event summaries from now. If a from_event ID is specified, it will return the next 50 chronological event summaries from after that event

---

This route is cached for up to 5 seconds

func (*Client) GetCharactersCharacterIDCalendarEventID

GetCharactersCharacterIDCalendarEventID gets an event

Get all the information for a specific event

---

This route is cached for up to 5 seconds

func (*Client) GetCharactersCharacterIDCalendarEventIDAttendees

GetCharactersCharacterIDCalendarEventIDAttendees gets attendees

Get all invited attendees for a given event

---

This route is cached for up to 600 seconds

func (*Client) PutCharactersCharacterIDCalendarEventID

PutCharactersCharacterIDCalendarEventID responds to an event

Set your response status to an event

---

This route is cached for up to 5 seconds

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption added in v0.4.0

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetCharactersCharacterIDCalendar(params *GetCharactersCharacterIDCalendarParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCharactersCharacterIDCalendarOK, error)

	GetCharactersCharacterIDCalendarEventID(params *GetCharactersCharacterIDCalendarEventIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCharactersCharacterIDCalendarEventIDOK, error)

	GetCharactersCharacterIDCalendarEventIDAttendees(params *GetCharactersCharacterIDCalendarEventIDAttendeesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetCharactersCharacterIDCalendarEventIDAttendeesOK, error)

	PutCharactersCharacterIDCalendarEventID(params *PutCharactersCharacterIDCalendarEventIDParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*PutCharactersCharacterIDCalendarEventIDNoContent, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

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

New creates a new calendar API client.

type GetCharactersCharacterIDCalendarBadRequest

type GetCharactersCharacterIDCalendarBadRequest struct {
	Payload *models.BadRequest
}

GetCharactersCharacterIDCalendarBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetCharactersCharacterIDCalendarBadRequest

func NewGetCharactersCharacterIDCalendarBadRequest() *GetCharactersCharacterIDCalendarBadRequest

NewGetCharactersCharacterIDCalendarBadRequest creates a GetCharactersCharacterIDCalendarBadRequest with default headers values

func (*GetCharactersCharacterIDCalendarBadRequest) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar bad request response

func (*GetCharactersCharacterIDCalendarBadRequest) Error

func (*GetCharactersCharacterIDCalendarBadRequest) GetPayload

func (*GetCharactersCharacterIDCalendarBadRequest) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar bad request response has a 4xx status code

func (*GetCharactersCharacterIDCalendarBadRequest) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar bad request response a status code equal to that given

func (*GetCharactersCharacterIDCalendarBadRequest) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar bad request response has a 3xx status code

func (*GetCharactersCharacterIDCalendarBadRequest) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar bad request response has a 5xx status code

func (*GetCharactersCharacterIDCalendarBadRequest) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar bad request response has a 2xx status code

func (*GetCharactersCharacterIDCalendarBadRequest) String added in v0.5.29

type GetCharactersCharacterIDCalendarEnhanceYourCalm

type GetCharactersCharacterIDCalendarEnhanceYourCalm struct {
	Payload *models.ErrorLimited
}

GetCharactersCharacterIDCalendarEnhanceYourCalm describes a response with status code 420, with default header values.

Error limited

func NewGetCharactersCharacterIDCalendarEnhanceYourCalm

func NewGetCharactersCharacterIDCalendarEnhanceYourCalm() *GetCharactersCharacterIDCalendarEnhanceYourCalm

NewGetCharactersCharacterIDCalendarEnhanceYourCalm creates a GetCharactersCharacterIDCalendarEnhanceYourCalm with default headers values

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar enhance your calm response

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) Error

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) GetPayload

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar enhance your calm response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar enhance your calm response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar enhance your calm response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar enhance your calm response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar enhance your calm response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEnhanceYourCalm) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest

type GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest struct {
	Payload *models.BadRequest
}

GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetCharactersCharacterIDCalendarEventIDAttendeesBadRequest

func NewGetCharactersCharacterIDCalendarEventIDAttendeesBadRequest() *GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest

NewGetCharactersCharacterIDCalendarEventIDAttendeesBadRequest creates a GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees bad request response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees bad request response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees bad request response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees bad request response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees bad request response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees bad request response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesBadRequest) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm

type GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm struct {
	Payload *models.ErrorLimited
}

GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm describes a response with status code 420, with default header values.

Error limited

func NewGetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm

func NewGetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm() *GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm

NewGetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm creates a GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees enhance your calm response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees enhance your calm response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees enhance your calm response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees enhance your calm response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees enhance your calm response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees enhance your calm response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesEnhanceYourCalm) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesForbidden

type GetCharactersCharacterIDCalendarEventIDAttendeesForbidden struct {
	Payload *models.Forbidden
}

GetCharactersCharacterIDCalendarEventIDAttendeesForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetCharactersCharacterIDCalendarEventIDAttendeesForbidden

func NewGetCharactersCharacterIDCalendarEventIDAttendeesForbidden() *GetCharactersCharacterIDCalendarEventIDAttendeesForbidden

NewGetCharactersCharacterIDCalendarEventIDAttendeesForbidden creates a GetCharactersCharacterIDCalendarEventIDAttendeesForbidden with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees forbidden response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees forbidden response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees forbidden response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees forbidden response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees forbidden response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees forbidden response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesForbidden) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout

type GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout struct {
	Payload *models.GatewayTimeout
}

GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout describes a response with status code 504, with default header values.

Gateway timeout

func NewGetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout

func NewGetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout() *GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout

NewGetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout creates a GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees gateway timeout response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees gateway timeout response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees gateway timeout response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees gateway timeout response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees gateway timeout response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees gateway timeout response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesGatewayTimeout) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError

type GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError struct {
	Payload *models.InternalServerError
}

GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError

func NewGetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError() *GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError

NewGetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError creates a GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees internal server error response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees internal server error response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees internal server error response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees internal server error response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees internal server error response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees internal server error response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesInternalServerError) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesNotFound

type GetCharactersCharacterIDCalendarEventIDAttendeesNotFound struct {
	Payload *GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody
}

GetCharactersCharacterIDCalendarEventIDAttendeesNotFound describes a response with status code 404, with default header values.

Not found

func NewGetCharactersCharacterIDCalendarEventIDAttendeesNotFound

func NewGetCharactersCharacterIDCalendarEventIDAttendeesNotFound() *GetCharactersCharacterIDCalendarEventIDAttendeesNotFound

NewGetCharactersCharacterIDCalendarEventIDAttendeesNotFound creates a GetCharactersCharacterIDCalendarEventIDAttendeesNotFound with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees not found response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees not found response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees not found response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees not found response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees not found response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees not found response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFound) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody

type GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody struct {

	// get_characters_character_id_calendar_event_id_attendees_404_not_found
	//
	// Not found message
	Error string `json:"error,omitempty"`
}

GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody get_characters_character_id_calendar_event_id_attendees_not_found // // Not found swagger:model GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody) ContextValidate added in v0.3.0

ContextValidate validates this get characters character ID calendar event ID attendees not found body based on context it is used

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody) MarshalBinary

MarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotFoundBody) Validate

Validate validates this get characters character ID calendar event ID attendees not found body

type GetCharactersCharacterIDCalendarEventIDAttendeesNotModified

type GetCharactersCharacterIDCalendarEventIDAttendeesNotModified struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string
}

GetCharactersCharacterIDCalendarEventIDAttendeesNotModified describes a response with status code 304, with default header values.

Not modified

func NewGetCharactersCharacterIDCalendarEventIDAttendeesNotModified

func NewGetCharactersCharacterIDCalendarEventIDAttendeesNotModified() *GetCharactersCharacterIDCalendarEventIDAttendeesNotModified

NewGetCharactersCharacterIDCalendarEventIDAttendeesNotModified creates a GetCharactersCharacterIDCalendarEventIDAttendeesNotModified with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees not modified response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees not modified response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees not modified response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees not modified response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees not modified response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees not modified response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesNotModified) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesOK

type GetCharactersCharacterIDCalendarEventIDAttendeesOK struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string

	Payload []*GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0
}

GetCharactersCharacterIDCalendarEventIDAttendeesOK describes a response with status code 200, with default header values.

List of attendees

func NewGetCharactersCharacterIDCalendarEventIDAttendeesOK

func NewGetCharactersCharacterIDCalendarEventIDAttendeesOK() *GetCharactersCharacterIDCalendarEventIDAttendeesOK

NewGetCharactersCharacterIDCalendarEventIDAttendeesOK creates a GetCharactersCharacterIDCalendarEventIDAttendeesOK with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees o k response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees o k response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees o k response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees o k response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees o k response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees o k response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOK) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0

type GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0 struct {

	// get_characters_character_id_calendar_event_id_attendees_character_id
	//
	// character_id integer
	CharacterID int32 `json:"character_id,omitempty"`

	// get_characters_character_id_calendar_event_id_attendees_event_response
	//
	// event_response string
	// Enum: [declined not_responded accepted tentative]
	EventResponse string `json:"event_response,omitempty"`
}

GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0 get_characters_character_id_calendar_event_id_attendees_200_ok // // character_id and response of an attendee swagger:model GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0) ContextValidate added in v0.3.0

ContextValidate validates this get characters character ID calendar event ID attendees o k body items0 based on context it is used

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0) MarshalBinary

MarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDAttendeesOKBodyItems0) Validate

Validate validates this get characters character ID calendar event ID attendees o k body items0

type GetCharactersCharacterIDCalendarEventIDAttendeesParams

type GetCharactersCharacterIDCalendarEventIDAttendeesParams struct {

	/* IfNoneMatch.

	   ETag from a previous request. A 304 will be returned if this matches the current ETag
	*/
	IfNoneMatch *string

	/* CharacterID.

	   An EVE character ID

	   Format: int32
	*/
	CharacterID int32

	/* Datasource.

	   The server name you would like data from

	   Default: "tranquility"
	*/
	Datasource *string

	/* EventID.

	   The id of the event requested

	   Format: int32
	*/
	EventID 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
}

GetCharactersCharacterIDCalendarEventIDAttendeesParams contains all the parameters to send to the API endpoint

for the get characters character id calendar event id attendees operation.

Typically these are written to a http.Request.

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParams

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParams() *GetCharactersCharacterIDCalendarEventIDAttendeesParams

NewGetCharactersCharacterIDCalendarEventIDAttendeesParams creates a new GetCharactersCharacterIDCalendarEventIDAttendeesParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithContext

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithContext(ctx context.Context) *GetCharactersCharacterIDCalendarEventIDAttendeesParams

NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithContext creates a new GetCharactersCharacterIDCalendarEventIDAttendeesParams object with the ability to set a context for a request.

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithHTTPClient

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithHTTPClient(client *http.Client) *GetCharactersCharacterIDCalendarEventIDAttendeesParams

NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithHTTPClient creates a new GetCharactersCharacterIDCalendarEventIDAttendeesParams object with the ability to set a custom HTTPClient for a request.

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithTimeout

func NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithTimeout(timeout time.Duration) *GetCharactersCharacterIDCalendarEventIDAttendeesParams

NewGetCharactersCharacterIDCalendarEventIDAttendeesParamsWithTimeout creates a new GetCharactersCharacterIDCalendarEventIDAttendeesParams object with the ability to set a timeout on a request.

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetCharacterID

func (o *GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetCharacterID(characterID int32)

SetCharacterID adds the characterId to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetContext

SetContext adds the context to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetDatasource

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

SetDatasource adds the datasource to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetDefaults added in v0.3.0

SetDefaults hydrates default values in the get characters character id calendar event id attendees params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetEventID

SetEventID adds the eventId to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetIfNoneMatch

func (o *GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetIfNoneMatch(ifNoneMatch *string)

SetIfNoneMatch adds the ifNoneMatch to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetTimeout

SetTimeout adds the timeout to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) SetToken

SetToken adds the token to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithCharacterID

WithCharacterID adds the characterID to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithContext

WithContext adds the context to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithDatasource

WithDatasource adds the datasource to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithDefaults added in v0.3.0

WithDefaults hydrates default values in the get characters character id calendar event id attendees params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithEventID

WithEventID adds the eventID to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithIfNoneMatch

WithIfNoneMatch adds the ifNoneMatch to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithTimeout

WithTimeout adds the timeout to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WithToken

WithToken adds the token to the get characters character id calendar event id attendees params

func (*GetCharactersCharacterIDCalendarEventIDAttendeesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCharactersCharacterIDCalendarEventIDAttendeesReader

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

GetCharactersCharacterIDCalendarEventIDAttendeesReader is a Reader for the GetCharactersCharacterIDCalendarEventIDAttendees structure.

func (*GetCharactersCharacterIDCalendarEventIDAttendeesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable

type GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable struct {
	Payload *models.ServiceUnavailable
}

GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable describes a response with status code 503, with default header values.

Service unavailable

func NewGetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable

func NewGetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable() *GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable

NewGetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable creates a GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees service unavailable response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees service unavailable response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees service unavailable response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees service unavailable response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees service unavailable response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees service unavailable response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesServiceUnavailable) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized

type GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized struct {
	Payload *models.Unauthorized
}

GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized

func NewGetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized() *GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized

NewGetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized creates a GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized with default headers values

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id attendees unauthorized response

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) Error

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id attendees unauthorized response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id attendees unauthorized response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id attendees unauthorized response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id attendees unauthorized response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id attendees unauthorized response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDAttendeesUnauthorized) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDBadRequest

type GetCharactersCharacterIDCalendarEventIDBadRequest struct {
	Payload *models.BadRequest
}

GetCharactersCharacterIDCalendarEventIDBadRequest describes a response with status code 400, with default header values.

Bad request

func NewGetCharactersCharacterIDCalendarEventIDBadRequest

func NewGetCharactersCharacterIDCalendarEventIDBadRequest() *GetCharactersCharacterIDCalendarEventIDBadRequest

NewGetCharactersCharacterIDCalendarEventIDBadRequest creates a GetCharactersCharacterIDCalendarEventIDBadRequest with default headers values

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id bad request response

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) Error

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id bad request response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id bad request response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id bad request response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id bad request response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id bad request response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDBadRequest) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm

type GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm struct {
	Payload *models.ErrorLimited
}

GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm describes a response with status code 420, with default header values.

Error limited

func NewGetCharactersCharacterIDCalendarEventIDEnhanceYourCalm

func NewGetCharactersCharacterIDCalendarEventIDEnhanceYourCalm() *GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm

NewGetCharactersCharacterIDCalendarEventIDEnhanceYourCalm creates a GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm with default headers values

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id enhance your calm response

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) Error

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id enhance your calm response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id enhance your calm response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id enhance your calm response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id enhance your calm response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id enhance your calm response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDEnhanceYourCalm) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDForbidden

type GetCharactersCharacterIDCalendarEventIDForbidden struct {
	Payload *models.Forbidden
}

GetCharactersCharacterIDCalendarEventIDForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetCharactersCharacterIDCalendarEventIDForbidden

func NewGetCharactersCharacterIDCalendarEventIDForbidden() *GetCharactersCharacterIDCalendarEventIDForbidden

NewGetCharactersCharacterIDCalendarEventIDForbidden creates a GetCharactersCharacterIDCalendarEventIDForbidden with default headers values

func (*GetCharactersCharacterIDCalendarEventIDForbidden) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id forbidden response

func (*GetCharactersCharacterIDCalendarEventIDForbidden) Error

func (*GetCharactersCharacterIDCalendarEventIDForbidden) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDForbidden) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id forbidden response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDForbidden) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id forbidden response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDForbidden) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id forbidden response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDForbidden) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id forbidden response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDForbidden) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id forbidden response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDForbidden) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDGatewayTimeout

type GetCharactersCharacterIDCalendarEventIDGatewayTimeout struct {
	Payload *models.GatewayTimeout
}

GetCharactersCharacterIDCalendarEventIDGatewayTimeout describes a response with status code 504, with default header values.

Gateway timeout

func NewGetCharactersCharacterIDCalendarEventIDGatewayTimeout

func NewGetCharactersCharacterIDCalendarEventIDGatewayTimeout() *GetCharactersCharacterIDCalendarEventIDGatewayTimeout

NewGetCharactersCharacterIDCalendarEventIDGatewayTimeout creates a GetCharactersCharacterIDCalendarEventIDGatewayTimeout with default headers values

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id gateway timeout response

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) Error

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id gateway timeout response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id gateway timeout response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id gateway timeout response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id gateway timeout response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id gateway timeout response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDGatewayTimeout) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDInternalServerError

type GetCharactersCharacterIDCalendarEventIDInternalServerError struct {
	Payload *models.InternalServerError
}

GetCharactersCharacterIDCalendarEventIDInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetCharactersCharacterIDCalendarEventIDInternalServerError

func NewGetCharactersCharacterIDCalendarEventIDInternalServerError() *GetCharactersCharacterIDCalendarEventIDInternalServerError

NewGetCharactersCharacterIDCalendarEventIDInternalServerError creates a GetCharactersCharacterIDCalendarEventIDInternalServerError with default headers values

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id internal server error response

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) Error

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id internal server error response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id internal server error response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id internal server error response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id internal server error response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id internal server error response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDInternalServerError) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDNotFound

type GetCharactersCharacterIDCalendarEventIDNotFound struct {
	Payload *GetCharactersCharacterIDCalendarEventIDNotFoundBody
}

GetCharactersCharacterIDCalendarEventIDNotFound describes a response with status code 404, with default header values.

Not found

func NewGetCharactersCharacterIDCalendarEventIDNotFound

func NewGetCharactersCharacterIDCalendarEventIDNotFound() *GetCharactersCharacterIDCalendarEventIDNotFound

NewGetCharactersCharacterIDCalendarEventIDNotFound creates a GetCharactersCharacterIDCalendarEventIDNotFound with default headers values

func (*GetCharactersCharacterIDCalendarEventIDNotFound) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id not found response

func (*GetCharactersCharacterIDCalendarEventIDNotFound) Error

func (*GetCharactersCharacterIDCalendarEventIDNotFound) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDNotFound) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id not found response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotFound) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id not found response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDNotFound) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id not found response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotFound) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id not found response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotFound) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id not found response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotFound) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDNotFoundBody

type GetCharactersCharacterIDCalendarEventIDNotFoundBody struct {

	// get_characters_character_id_calendar_event_id_404_not_found
	//
	// Not found message
	Error string `json:"error,omitempty"`
}

GetCharactersCharacterIDCalendarEventIDNotFoundBody get_characters_character_id_calendar_event_id_not_found // // Not found swagger:model GetCharactersCharacterIDCalendarEventIDNotFoundBody

func (*GetCharactersCharacterIDCalendarEventIDNotFoundBody) ContextValidate added in v0.3.0

ContextValidate validates this get characters character ID calendar event ID not found body based on context it is used

func (*GetCharactersCharacterIDCalendarEventIDNotFoundBody) MarshalBinary

MarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDNotFoundBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDNotFoundBody) Validate

Validate validates this get characters character ID calendar event ID not found body

type GetCharactersCharacterIDCalendarEventIDNotModified

type GetCharactersCharacterIDCalendarEventIDNotModified struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string
}

GetCharactersCharacterIDCalendarEventIDNotModified describes a response with status code 304, with default header values.

Not modified

func NewGetCharactersCharacterIDCalendarEventIDNotModified

func NewGetCharactersCharacterIDCalendarEventIDNotModified() *GetCharactersCharacterIDCalendarEventIDNotModified

NewGetCharactersCharacterIDCalendarEventIDNotModified creates a GetCharactersCharacterIDCalendarEventIDNotModified with default headers values

func (*GetCharactersCharacterIDCalendarEventIDNotModified) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id not modified response

func (*GetCharactersCharacterIDCalendarEventIDNotModified) Error

func (*GetCharactersCharacterIDCalendarEventIDNotModified) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id not modified response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotModified) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id not modified response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDNotModified) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id not modified response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotModified) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id not modified response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotModified) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id not modified response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDNotModified) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDOK

type GetCharactersCharacterIDCalendarEventIDOK struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string

	Payload *GetCharactersCharacterIDCalendarEventIDOKBody
}

GetCharactersCharacterIDCalendarEventIDOK describes a response with status code 200, with default header values.

Full details of a specific event

func NewGetCharactersCharacterIDCalendarEventIDOK

func NewGetCharactersCharacterIDCalendarEventIDOK() *GetCharactersCharacterIDCalendarEventIDOK

NewGetCharactersCharacterIDCalendarEventIDOK creates a GetCharactersCharacterIDCalendarEventIDOK with default headers values

func (*GetCharactersCharacterIDCalendarEventIDOK) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id o k response

func (*GetCharactersCharacterIDCalendarEventIDOK) Error

func (*GetCharactersCharacterIDCalendarEventIDOK) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDOK) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id o k response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDOK) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id o k response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDOK) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id o k response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDOK) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id o k response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDOK) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id o k response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDOK) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDOKBody

type GetCharactersCharacterIDCalendarEventIDOKBody struct {

	// get_characters_character_id_calendar_event_id_date
	//
	// date string
	// Required: true
	// Format: date-time
	Date *strfmt.DateTime `json:"date"`

	// get_characters_character_id_calendar_event_id_duration
	//
	// Length in minutes
	// Required: true
	Duration *int32 `json:"duration"`

	// get_characters_character_id_calendar_event_id_event_id
	//
	// event_id integer
	// Required: true
	EventID *int32 `json:"event_id"`

	// get_characters_character_id_calendar_event_id_importance
	//
	// importance integer
	// Required: true
	Importance *int32 `json:"importance"`

	// get_characters_character_id_calendar_event_id_owner_id
	//
	// owner_id integer
	// Required: true
	OwnerID *int32 `json:"owner_id"`

	// get_characters_character_id_calendar_event_id_owner_name
	//
	// owner_name string
	// Required: true
	OwnerName *string `json:"owner_name"`

	// get_characters_character_id_calendar_event_id_owner_type
	//
	// owner_type string
	// Required: true
	// Enum: [eve_server corporation faction character alliance]
	OwnerType *string `json:"owner_type"`

	// get_characters_character_id_calendar_event_id_response
	//
	// response string
	// Required: true
	Response *string `json:"response"`

	// get_characters_character_id_calendar_event_id_text
	//
	// text string
	// Required: true
	Text *string `json:"text"`

	// get_characters_character_id_calendar_event_id_title
	//
	// title string
	// Required: true
	Title *string `json:"title"`
}

GetCharactersCharacterIDCalendarEventIDOKBody get_characters_character_id_calendar_event_id_ok // // Full details of a specific event swagger:model GetCharactersCharacterIDCalendarEventIDOKBody

func (*GetCharactersCharacterIDCalendarEventIDOKBody) ContextValidate added in v0.3.0

ContextValidate validates this get characters character ID calendar event ID o k body based on context it is used

func (*GetCharactersCharacterIDCalendarEventIDOKBody) MarshalBinary

MarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDOKBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarEventIDOKBody) Validate

Validate validates this get characters character ID calendar event ID o k body

type GetCharactersCharacterIDCalendarEventIDParams

type GetCharactersCharacterIDCalendarEventIDParams struct {

	/* IfNoneMatch.

	   ETag from a previous request. A 304 will be returned if this matches the current ETag
	*/
	IfNoneMatch *string

	/* CharacterID.

	   An EVE character ID

	   Format: int32
	*/
	CharacterID int32

	/* Datasource.

	   The server name you would like data from

	   Default: "tranquility"
	*/
	Datasource *string

	/* EventID.

	   The id of the event requested

	   Format: int32
	*/
	EventID 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
}

GetCharactersCharacterIDCalendarEventIDParams contains all the parameters to send to the API endpoint

for the get characters character id calendar event id operation.

Typically these are written to a http.Request.

func NewGetCharactersCharacterIDCalendarEventIDParams

func NewGetCharactersCharacterIDCalendarEventIDParams() *GetCharactersCharacterIDCalendarEventIDParams

NewGetCharactersCharacterIDCalendarEventIDParams creates a new GetCharactersCharacterIDCalendarEventIDParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCharactersCharacterIDCalendarEventIDParamsWithContext

func NewGetCharactersCharacterIDCalendarEventIDParamsWithContext(ctx context.Context) *GetCharactersCharacterIDCalendarEventIDParams

NewGetCharactersCharacterIDCalendarEventIDParamsWithContext creates a new GetCharactersCharacterIDCalendarEventIDParams object with the ability to set a context for a request.

func NewGetCharactersCharacterIDCalendarEventIDParamsWithHTTPClient

func NewGetCharactersCharacterIDCalendarEventIDParamsWithHTTPClient(client *http.Client) *GetCharactersCharacterIDCalendarEventIDParams

NewGetCharactersCharacterIDCalendarEventIDParamsWithHTTPClient creates a new GetCharactersCharacterIDCalendarEventIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetCharactersCharacterIDCalendarEventIDParamsWithTimeout

func NewGetCharactersCharacterIDCalendarEventIDParamsWithTimeout(timeout time.Duration) *GetCharactersCharacterIDCalendarEventIDParams

NewGetCharactersCharacterIDCalendarEventIDParamsWithTimeout creates a new GetCharactersCharacterIDCalendarEventIDParams object with the ability to set a timeout on a request.

func (*GetCharactersCharacterIDCalendarEventIDParams) SetCharacterID

func (o *GetCharactersCharacterIDCalendarEventIDParams) SetCharacterID(characterID int32)

SetCharacterID adds the characterId to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetContext

SetContext adds the context to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetDatasource

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

SetDatasource adds the datasource to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetDefaults added in v0.3.0

SetDefaults hydrates default values in the get characters character id calendar event id params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarEventIDParams) SetEventID

SetEventID adds the eventId to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetIfNoneMatch

func (o *GetCharactersCharacterIDCalendarEventIDParams) SetIfNoneMatch(ifNoneMatch *string)

SetIfNoneMatch adds the ifNoneMatch to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetTimeout

SetTimeout adds the timeout to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) SetToken

SetToken adds the token to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithCharacterID

WithCharacterID adds the characterID to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithContext

WithContext adds the context to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithDatasource

WithDatasource adds the datasource to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithDefaults added in v0.3.0

WithDefaults hydrates default values in the get characters character id calendar event id params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarEventIDParams) WithEventID

WithEventID adds the eventID to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithIfNoneMatch

WithIfNoneMatch adds the ifNoneMatch to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithTimeout

WithTimeout adds the timeout to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WithToken

WithToken adds the token to the get characters character id calendar event id params

func (*GetCharactersCharacterIDCalendarEventIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCharactersCharacterIDCalendarEventIDReader

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

GetCharactersCharacterIDCalendarEventIDReader is a Reader for the GetCharactersCharacterIDCalendarEventID structure.

func (*GetCharactersCharacterIDCalendarEventIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCharactersCharacterIDCalendarEventIDServiceUnavailable

type GetCharactersCharacterIDCalendarEventIDServiceUnavailable struct {
	Payload *models.ServiceUnavailable
}

GetCharactersCharacterIDCalendarEventIDServiceUnavailable describes a response with status code 503, with default header values.

Service unavailable

func NewGetCharactersCharacterIDCalendarEventIDServiceUnavailable

func NewGetCharactersCharacterIDCalendarEventIDServiceUnavailable() *GetCharactersCharacterIDCalendarEventIDServiceUnavailable

NewGetCharactersCharacterIDCalendarEventIDServiceUnavailable creates a GetCharactersCharacterIDCalendarEventIDServiceUnavailable with default headers values

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id service unavailable response

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) Error

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id service unavailable response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id service unavailable response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id service unavailable response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id service unavailable response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id service unavailable response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDServiceUnavailable) String added in v0.5.29

type GetCharactersCharacterIDCalendarEventIDUnauthorized

type GetCharactersCharacterIDCalendarEventIDUnauthorized struct {
	Payload *models.Unauthorized
}

GetCharactersCharacterIDCalendarEventIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetCharactersCharacterIDCalendarEventIDUnauthorized

func NewGetCharactersCharacterIDCalendarEventIDUnauthorized() *GetCharactersCharacterIDCalendarEventIDUnauthorized

NewGetCharactersCharacterIDCalendarEventIDUnauthorized creates a GetCharactersCharacterIDCalendarEventIDUnauthorized with default headers values

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar event Id unauthorized response

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) Error

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) GetPayload

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar event Id unauthorized response has a 4xx status code

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar event Id unauthorized response a status code equal to that given

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar event Id unauthorized response has a 3xx status code

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar event Id unauthorized response has a 5xx status code

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar event Id unauthorized response has a 2xx status code

func (*GetCharactersCharacterIDCalendarEventIDUnauthorized) String added in v0.5.29

type GetCharactersCharacterIDCalendarForbidden

type GetCharactersCharacterIDCalendarForbidden struct {
	Payload *models.Forbidden
}

GetCharactersCharacterIDCalendarForbidden describes a response with status code 403, with default header values.

Forbidden

func NewGetCharactersCharacterIDCalendarForbidden

func NewGetCharactersCharacterIDCalendarForbidden() *GetCharactersCharacterIDCalendarForbidden

NewGetCharactersCharacterIDCalendarForbidden creates a GetCharactersCharacterIDCalendarForbidden with default headers values

func (*GetCharactersCharacterIDCalendarForbidden) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar forbidden response

func (*GetCharactersCharacterIDCalendarForbidden) Error

func (*GetCharactersCharacterIDCalendarForbidden) GetPayload

func (*GetCharactersCharacterIDCalendarForbidden) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar forbidden response has a 4xx status code

func (*GetCharactersCharacterIDCalendarForbidden) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar forbidden response a status code equal to that given

func (*GetCharactersCharacterIDCalendarForbidden) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar forbidden response has a 3xx status code

func (*GetCharactersCharacterIDCalendarForbidden) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar forbidden response has a 5xx status code

func (*GetCharactersCharacterIDCalendarForbidden) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar forbidden response has a 2xx status code

func (*GetCharactersCharacterIDCalendarForbidden) String added in v0.5.29

type GetCharactersCharacterIDCalendarGatewayTimeout

type GetCharactersCharacterIDCalendarGatewayTimeout struct {
	Payload *models.GatewayTimeout
}

GetCharactersCharacterIDCalendarGatewayTimeout describes a response with status code 504, with default header values.

Gateway timeout

func NewGetCharactersCharacterIDCalendarGatewayTimeout

func NewGetCharactersCharacterIDCalendarGatewayTimeout() *GetCharactersCharacterIDCalendarGatewayTimeout

NewGetCharactersCharacterIDCalendarGatewayTimeout creates a GetCharactersCharacterIDCalendarGatewayTimeout with default headers values

func (*GetCharactersCharacterIDCalendarGatewayTimeout) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar gateway timeout response

func (*GetCharactersCharacterIDCalendarGatewayTimeout) Error

func (*GetCharactersCharacterIDCalendarGatewayTimeout) GetPayload

func (*GetCharactersCharacterIDCalendarGatewayTimeout) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar gateway timeout response has a 4xx status code

func (*GetCharactersCharacterIDCalendarGatewayTimeout) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar gateway timeout response a status code equal to that given

func (*GetCharactersCharacterIDCalendarGatewayTimeout) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar gateway timeout response has a 3xx status code

func (*GetCharactersCharacterIDCalendarGatewayTimeout) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar gateway timeout response has a 5xx status code

func (*GetCharactersCharacterIDCalendarGatewayTimeout) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar gateway timeout response has a 2xx status code

func (*GetCharactersCharacterIDCalendarGatewayTimeout) String added in v0.5.29

type GetCharactersCharacterIDCalendarInternalServerError

type GetCharactersCharacterIDCalendarInternalServerError struct {
	Payload *models.InternalServerError
}

GetCharactersCharacterIDCalendarInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewGetCharactersCharacterIDCalendarInternalServerError

func NewGetCharactersCharacterIDCalendarInternalServerError() *GetCharactersCharacterIDCalendarInternalServerError

NewGetCharactersCharacterIDCalendarInternalServerError creates a GetCharactersCharacterIDCalendarInternalServerError with default headers values

func (*GetCharactersCharacterIDCalendarInternalServerError) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar internal server error response

func (*GetCharactersCharacterIDCalendarInternalServerError) Error

func (*GetCharactersCharacterIDCalendarInternalServerError) GetPayload

func (*GetCharactersCharacterIDCalendarInternalServerError) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar internal server error response has a 4xx status code

func (*GetCharactersCharacterIDCalendarInternalServerError) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar internal server error response a status code equal to that given

func (*GetCharactersCharacterIDCalendarInternalServerError) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar internal server error response has a 3xx status code

func (*GetCharactersCharacterIDCalendarInternalServerError) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar internal server error response has a 5xx status code

func (*GetCharactersCharacterIDCalendarInternalServerError) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar internal server error response has a 2xx status code

func (*GetCharactersCharacterIDCalendarInternalServerError) String added in v0.5.29

type GetCharactersCharacterIDCalendarNotModified

type GetCharactersCharacterIDCalendarNotModified struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string
}

GetCharactersCharacterIDCalendarNotModified describes a response with status code 304, with default header values.

Not modified

func NewGetCharactersCharacterIDCalendarNotModified

func NewGetCharactersCharacterIDCalendarNotModified() *GetCharactersCharacterIDCalendarNotModified

NewGetCharactersCharacterIDCalendarNotModified creates a GetCharactersCharacterIDCalendarNotModified with default headers values

func (*GetCharactersCharacterIDCalendarNotModified) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar not modified response

func (*GetCharactersCharacterIDCalendarNotModified) Error

func (*GetCharactersCharacterIDCalendarNotModified) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar not modified response has a 4xx status code

func (*GetCharactersCharacterIDCalendarNotModified) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar not modified response a status code equal to that given

func (*GetCharactersCharacterIDCalendarNotModified) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar not modified response has a 3xx status code

func (*GetCharactersCharacterIDCalendarNotModified) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar not modified response has a 5xx status code

func (*GetCharactersCharacterIDCalendarNotModified) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar not modified response has a 2xx status code

func (*GetCharactersCharacterIDCalendarNotModified) String added in v0.5.29

type GetCharactersCharacterIDCalendarOK

type GetCharactersCharacterIDCalendarOK struct {

	/* The caching mechanism used
	 */
	CacheControl string

	/* RFC7232 compliant entity tag
	 */
	ETag string

	/* RFC7231 formatted datetime string
	 */
	Expires string

	/* RFC7231 formatted datetime string
	 */
	LastModified string

	Payload []*GetCharactersCharacterIDCalendarOKBodyItems0
}

GetCharactersCharacterIDCalendarOK describes a response with status code 200, with default header values.

A collection of event summaries

func NewGetCharactersCharacterIDCalendarOK

func NewGetCharactersCharacterIDCalendarOK() *GetCharactersCharacterIDCalendarOK

NewGetCharactersCharacterIDCalendarOK creates a GetCharactersCharacterIDCalendarOK with default headers values

func (*GetCharactersCharacterIDCalendarOK) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar o k response

func (*GetCharactersCharacterIDCalendarOK) Error

func (*GetCharactersCharacterIDCalendarOK) GetPayload

func (*GetCharactersCharacterIDCalendarOK) IsClientError added in v0.5.29

func (o *GetCharactersCharacterIDCalendarOK) IsClientError() bool

IsClientError returns true when this get characters character Id calendar o k response has a 4xx status code

func (*GetCharactersCharacterIDCalendarOK) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar o k response a status code equal to that given

func (*GetCharactersCharacterIDCalendarOK) IsRedirect added in v0.5.29

func (o *GetCharactersCharacterIDCalendarOK) IsRedirect() bool

IsRedirect returns true when this get characters character Id calendar o k response has a 3xx status code

func (*GetCharactersCharacterIDCalendarOK) IsServerError added in v0.5.29

func (o *GetCharactersCharacterIDCalendarOK) IsServerError() bool

IsServerError returns true when this get characters character Id calendar o k response has a 5xx status code

func (*GetCharactersCharacterIDCalendarOK) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar o k response has a 2xx status code

func (*GetCharactersCharacterIDCalendarOK) String added in v0.5.29

type GetCharactersCharacterIDCalendarOKBodyItems0

type GetCharactersCharacterIDCalendarOKBodyItems0 struct {

	// get_characters_character_id_calendar_event_date
	//
	// event_date string
	// Format: date-time
	EventDate strfmt.DateTime `json:"event_date,omitempty"`

	// get_characters_character_id_calendar_event_id
	//
	// event_id integer
	EventID int32 `json:"event_id,omitempty"`

	// get_characters_character_id_calendar_event_response
	//
	// event_response string
	// Enum: [declined not_responded accepted tentative]
	EventResponse string `json:"event_response,omitempty"`

	// get_characters_character_id_calendar_importance
	//
	// importance integer
	Importance int32 `json:"importance,omitempty"`

	// get_characters_character_id_calendar_title
	//
	// title string
	Title string `json:"title,omitempty"`
}

GetCharactersCharacterIDCalendarOKBodyItems0 get_characters_character_id_calendar_200_ok // // event swagger:model GetCharactersCharacterIDCalendarOKBodyItems0

func (*GetCharactersCharacterIDCalendarOKBodyItems0) ContextValidate added in v0.3.0

ContextValidate validates this get characters character ID calendar o k body items0 based on context it is used

func (*GetCharactersCharacterIDCalendarOKBodyItems0) MarshalBinary

MarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarOKBodyItems0) UnmarshalBinary

UnmarshalBinary interface implementation

func (*GetCharactersCharacterIDCalendarOKBodyItems0) Validate

Validate validates this get characters character ID calendar o k body items0

type GetCharactersCharacterIDCalendarParams

type GetCharactersCharacterIDCalendarParams struct {

	/* IfNoneMatch.

	   ETag from a previous request. A 304 will be returned if this matches the current ETag
	*/
	IfNoneMatch *string

	/* CharacterID.

	   An EVE character ID

	   Format: int32
	*/
	CharacterID int32

	/* Datasource.

	   The server name you would like data from

	   Default: "tranquility"
	*/
	Datasource *string

	/* FromEvent.

	   The event ID to retrieve events from

	   Format: int32
	*/
	FromEvent *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
}

GetCharactersCharacterIDCalendarParams contains all the parameters to send to the API endpoint

for the get characters character id calendar operation.

Typically these are written to a http.Request.

func NewGetCharactersCharacterIDCalendarParams

func NewGetCharactersCharacterIDCalendarParams() *GetCharactersCharacterIDCalendarParams

NewGetCharactersCharacterIDCalendarParams creates a new GetCharactersCharacterIDCalendarParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetCharactersCharacterIDCalendarParamsWithContext

func NewGetCharactersCharacterIDCalendarParamsWithContext(ctx context.Context) *GetCharactersCharacterIDCalendarParams

NewGetCharactersCharacterIDCalendarParamsWithContext creates a new GetCharactersCharacterIDCalendarParams object with the ability to set a context for a request.

func NewGetCharactersCharacterIDCalendarParamsWithHTTPClient

func NewGetCharactersCharacterIDCalendarParamsWithHTTPClient(client *http.Client) *GetCharactersCharacterIDCalendarParams

NewGetCharactersCharacterIDCalendarParamsWithHTTPClient creates a new GetCharactersCharacterIDCalendarParams object with the ability to set a custom HTTPClient for a request.

func NewGetCharactersCharacterIDCalendarParamsWithTimeout

func NewGetCharactersCharacterIDCalendarParamsWithTimeout(timeout time.Duration) *GetCharactersCharacterIDCalendarParams

NewGetCharactersCharacterIDCalendarParamsWithTimeout creates a new GetCharactersCharacterIDCalendarParams object with the ability to set a timeout on a request.

func (*GetCharactersCharacterIDCalendarParams) SetCharacterID

func (o *GetCharactersCharacterIDCalendarParams) SetCharacterID(characterID int32)

SetCharacterID adds the characterId to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetContext

SetContext adds the context to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetDatasource

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

SetDatasource adds the datasource to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetDefaults added in v0.3.0

func (o *GetCharactersCharacterIDCalendarParams) SetDefaults()

SetDefaults hydrates default values in the get characters character id calendar params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarParams) SetFromEvent

func (o *GetCharactersCharacterIDCalendarParams) SetFromEvent(fromEvent *int32)

SetFromEvent adds the fromEvent to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetIfNoneMatch

func (o *GetCharactersCharacterIDCalendarParams) SetIfNoneMatch(ifNoneMatch *string)

SetIfNoneMatch adds the ifNoneMatch to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetTimeout

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

SetTimeout adds the timeout to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) SetToken

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

SetToken adds the token to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithCharacterID

WithCharacterID adds the characterID to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithContext

WithContext adds the context to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithDatasource

WithDatasource adds the datasource to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithDefaults added in v0.3.0

WithDefaults hydrates default values in the get characters character id calendar params (not the query body).

All values with no default are reset to their zero value.

func (*GetCharactersCharacterIDCalendarParams) WithFromEvent

WithFromEvent adds the fromEvent to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithIfNoneMatch

WithIfNoneMatch adds the ifNoneMatch to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithTimeout

WithTimeout adds the timeout to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WithToken

WithToken adds the token to the get characters character id calendar params

func (*GetCharactersCharacterIDCalendarParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCharactersCharacterIDCalendarReader

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

GetCharactersCharacterIDCalendarReader is a Reader for the GetCharactersCharacterIDCalendar structure.

func (*GetCharactersCharacterIDCalendarReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCharactersCharacterIDCalendarServiceUnavailable

type GetCharactersCharacterIDCalendarServiceUnavailable struct {
	Payload *models.ServiceUnavailable
}

GetCharactersCharacterIDCalendarServiceUnavailable describes a response with status code 503, with default header values.

Service unavailable

func NewGetCharactersCharacterIDCalendarServiceUnavailable

func NewGetCharactersCharacterIDCalendarServiceUnavailable() *GetCharactersCharacterIDCalendarServiceUnavailable

NewGetCharactersCharacterIDCalendarServiceUnavailable creates a GetCharactersCharacterIDCalendarServiceUnavailable with default headers values

func (*GetCharactersCharacterIDCalendarServiceUnavailable) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar service unavailable response

func (*GetCharactersCharacterIDCalendarServiceUnavailable) Error

func (*GetCharactersCharacterIDCalendarServiceUnavailable) GetPayload

func (*GetCharactersCharacterIDCalendarServiceUnavailable) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar service unavailable response has a 4xx status code

func (*GetCharactersCharacterIDCalendarServiceUnavailable) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar service unavailable response a status code equal to that given

func (*GetCharactersCharacterIDCalendarServiceUnavailable) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar service unavailable response has a 3xx status code

func (*GetCharactersCharacterIDCalendarServiceUnavailable) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar service unavailable response has a 5xx status code

func (*GetCharactersCharacterIDCalendarServiceUnavailable) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar service unavailable response has a 2xx status code

func (*GetCharactersCharacterIDCalendarServiceUnavailable) String added in v0.5.29

type GetCharactersCharacterIDCalendarUnauthorized

type GetCharactersCharacterIDCalendarUnauthorized struct {
	Payload *models.Unauthorized
}

GetCharactersCharacterIDCalendarUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetCharactersCharacterIDCalendarUnauthorized

func NewGetCharactersCharacterIDCalendarUnauthorized() *GetCharactersCharacterIDCalendarUnauthorized

NewGetCharactersCharacterIDCalendarUnauthorized creates a GetCharactersCharacterIDCalendarUnauthorized with default headers values

func (*GetCharactersCharacterIDCalendarUnauthorized) Code added in v0.5.29

Code gets the status code for the get characters character Id calendar unauthorized response

func (*GetCharactersCharacterIDCalendarUnauthorized) Error

func (*GetCharactersCharacterIDCalendarUnauthorized) GetPayload

func (*GetCharactersCharacterIDCalendarUnauthorized) IsClientError added in v0.5.29

IsClientError returns true when this get characters character Id calendar unauthorized response has a 4xx status code

func (*GetCharactersCharacterIDCalendarUnauthorized) IsCode added in v0.5.29

IsCode returns true when this get characters character Id calendar unauthorized response a status code equal to that given

func (*GetCharactersCharacterIDCalendarUnauthorized) IsRedirect added in v0.5.29

IsRedirect returns true when this get characters character Id calendar unauthorized response has a 3xx status code

func (*GetCharactersCharacterIDCalendarUnauthorized) IsServerError added in v0.5.29

IsServerError returns true when this get characters character Id calendar unauthorized response has a 5xx status code

func (*GetCharactersCharacterIDCalendarUnauthorized) IsSuccess added in v0.5.29

IsSuccess returns true when this get characters character Id calendar unauthorized response has a 2xx status code

func (*GetCharactersCharacterIDCalendarUnauthorized) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDBadRequest

type PutCharactersCharacterIDCalendarEventIDBadRequest struct {
	Payload *models.BadRequest
}

PutCharactersCharacterIDCalendarEventIDBadRequest describes a response with status code 400, with default header values.

Bad request

func NewPutCharactersCharacterIDCalendarEventIDBadRequest

func NewPutCharactersCharacterIDCalendarEventIDBadRequest() *PutCharactersCharacterIDCalendarEventIDBadRequest

NewPutCharactersCharacterIDCalendarEventIDBadRequest creates a PutCharactersCharacterIDCalendarEventIDBadRequest with default headers values

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id bad request response

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) Error

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id bad request response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id bad request response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id bad request response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id bad request response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id bad request response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDBadRequest) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDBody

type PutCharactersCharacterIDCalendarEventIDBody struct {

	// put_characters_character_id_calendar_event_id_response_response
	//
	// response string
	// Required: true
	// Enum: [accepted declined tentative]
	Response *string `json:"response"`
}

PutCharactersCharacterIDCalendarEventIDBody put_characters_character_id_calendar_event_id_response // // response object swagger:model PutCharactersCharacterIDCalendarEventIDBody

func (*PutCharactersCharacterIDCalendarEventIDBody) ContextValidate added in v0.3.0

ContextValidate validates this put characters character ID calendar event ID body based on context it is used

func (*PutCharactersCharacterIDCalendarEventIDBody) MarshalBinary

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

MarshalBinary interface implementation

func (*PutCharactersCharacterIDCalendarEventIDBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*PutCharactersCharacterIDCalendarEventIDBody) Validate

Validate validates this put characters character ID calendar event ID body

type PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm

type PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm struct {
	Payload *models.ErrorLimited
}

PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm describes a response with status code 420, with default header values.

Error limited

func NewPutCharactersCharacterIDCalendarEventIDEnhanceYourCalm

func NewPutCharactersCharacterIDCalendarEventIDEnhanceYourCalm() *PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm

NewPutCharactersCharacterIDCalendarEventIDEnhanceYourCalm creates a PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm with default headers values

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id enhance your calm response

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) Error

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id enhance your calm response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id enhance your calm response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id enhance your calm response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id enhance your calm response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id enhance your calm response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDEnhanceYourCalm) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDForbidden

type PutCharactersCharacterIDCalendarEventIDForbidden struct {
	Payload *models.Forbidden
}

PutCharactersCharacterIDCalendarEventIDForbidden describes a response with status code 403, with default header values.

Forbidden

func NewPutCharactersCharacterIDCalendarEventIDForbidden

func NewPutCharactersCharacterIDCalendarEventIDForbidden() *PutCharactersCharacterIDCalendarEventIDForbidden

NewPutCharactersCharacterIDCalendarEventIDForbidden creates a PutCharactersCharacterIDCalendarEventIDForbidden with default headers values

func (*PutCharactersCharacterIDCalendarEventIDForbidden) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id forbidden response

func (*PutCharactersCharacterIDCalendarEventIDForbidden) Error

func (*PutCharactersCharacterIDCalendarEventIDForbidden) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDForbidden) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id forbidden response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDForbidden) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id forbidden response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDForbidden) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id forbidden response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDForbidden) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id forbidden response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDForbidden) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id forbidden response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDForbidden) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDGatewayTimeout

type PutCharactersCharacterIDCalendarEventIDGatewayTimeout struct {
	Payload *models.GatewayTimeout
}

PutCharactersCharacterIDCalendarEventIDGatewayTimeout describes a response with status code 504, with default header values.

Gateway timeout

func NewPutCharactersCharacterIDCalendarEventIDGatewayTimeout

func NewPutCharactersCharacterIDCalendarEventIDGatewayTimeout() *PutCharactersCharacterIDCalendarEventIDGatewayTimeout

NewPutCharactersCharacterIDCalendarEventIDGatewayTimeout creates a PutCharactersCharacterIDCalendarEventIDGatewayTimeout with default headers values

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id gateway timeout response

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) Error

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id gateway timeout response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id gateway timeout response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id gateway timeout response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id gateway timeout response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id gateway timeout response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDGatewayTimeout) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDInternalServerError

type PutCharactersCharacterIDCalendarEventIDInternalServerError struct {
	Payload *models.InternalServerError
}

PutCharactersCharacterIDCalendarEventIDInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewPutCharactersCharacterIDCalendarEventIDInternalServerError

func NewPutCharactersCharacterIDCalendarEventIDInternalServerError() *PutCharactersCharacterIDCalendarEventIDInternalServerError

NewPutCharactersCharacterIDCalendarEventIDInternalServerError creates a PutCharactersCharacterIDCalendarEventIDInternalServerError with default headers values

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id internal server error response

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) Error

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id internal server error response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id internal server error response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id internal server error response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id internal server error response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id internal server error response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDInternalServerError) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDNoContent

type PutCharactersCharacterIDCalendarEventIDNoContent struct {
}

PutCharactersCharacterIDCalendarEventIDNoContent describes a response with status code 204, with default header values.

Event updated

func NewPutCharactersCharacterIDCalendarEventIDNoContent

func NewPutCharactersCharacterIDCalendarEventIDNoContent() *PutCharactersCharacterIDCalendarEventIDNoContent

NewPutCharactersCharacterIDCalendarEventIDNoContent creates a PutCharactersCharacterIDCalendarEventIDNoContent with default headers values

func (*PutCharactersCharacterIDCalendarEventIDNoContent) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id no content response

func (*PutCharactersCharacterIDCalendarEventIDNoContent) Error

func (*PutCharactersCharacterIDCalendarEventIDNoContent) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id no content response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDNoContent) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id no content response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDNoContent) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id no content response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDNoContent) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id no content response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDNoContent) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id no content response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDNoContent) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDParams

type PutCharactersCharacterIDCalendarEventIDParams struct {

	/* CharacterID.

	   An EVE character ID

	   Format: int32
	*/
	CharacterID int32

	/* Datasource.

	   The server name you would like data from

	   Default: "tranquility"
	*/
	Datasource *string

	/* EventID.

	   The ID of the event requested

	   Format: int32
	*/
	EventID int32

	/* Response.

	   The response value to set, overriding current value
	*/
	Response PutCharactersCharacterIDCalendarEventIDBody

	/* Token.

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

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

PutCharactersCharacterIDCalendarEventIDParams contains all the parameters to send to the API endpoint

for the put characters character id calendar event id operation.

Typically these are written to a http.Request.

func NewPutCharactersCharacterIDCalendarEventIDParams

func NewPutCharactersCharacterIDCalendarEventIDParams() *PutCharactersCharacterIDCalendarEventIDParams

NewPutCharactersCharacterIDCalendarEventIDParams creates a new PutCharactersCharacterIDCalendarEventIDParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewPutCharactersCharacterIDCalendarEventIDParamsWithContext

func NewPutCharactersCharacterIDCalendarEventIDParamsWithContext(ctx context.Context) *PutCharactersCharacterIDCalendarEventIDParams

NewPutCharactersCharacterIDCalendarEventIDParamsWithContext creates a new PutCharactersCharacterIDCalendarEventIDParams object with the ability to set a context for a request.

func NewPutCharactersCharacterIDCalendarEventIDParamsWithHTTPClient

func NewPutCharactersCharacterIDCalendarEventIDParamsWithHTTPClient(client *http.Client) *PutCharactersCharacterIDCalendarEventIDParams

NewPutCharactersCharacterIDCalendarEventIDParamsWithHTTPClient creates a new PutCharactersCharacterIDCalendarEventIDParams object with the ability to set a custom HTTPClient for a request.

func NewPutCharactersCharacterIDCalendarEventIDParamsWithTimeout

func NewPutCharactersCharacterIDCalendarEventIDParamsWithTimeout(timeout time.Duration) *PutCharactersCharacterIDCalendarEventIDParams

NewPutCharactersCharacterIDCalendarEventIDParamsWithTimeout creates a new PutCharactersCharacterIDCalendarEventIDParams object with the ability to set a timeout on a request.

func (*PutCharactersCharacterIDCalendarEventIDParams) SetCharacterID

func (o *PutCharactersCharacterIDCalendarEventIDParams) SetCharacterID(characterID int32)

SetCharacterID adds the characterId to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetContext

SetContext adds the context to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetDatasource

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

SetDatasource adds the datasource to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetDefaults added in v0.3.0

SetDefaults hydrates default values in the put characters character id calendar event id params (not the query body).

All values with no default are reset to their zero value.

func (*PutCharactersCharacterIDCalendarEventIDParams) SetEventID

SetEventID adds the eventId to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetResponse

SetResponse adds the response to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetTimeout

SetTimeout adds the timeout to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) SetToken

SetToken adds the token to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithCharacterID

WithCharacterID adds the characterID to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithContext

WithContext adds the context to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithDatasource

WithDatasource adds the datasource to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithDefaults added in v0.3.0

WithDefaults hydrates default values in the put characters character id calendar event id params (not the query body).

All values with no default are reset to their zero value.

func (*PutCharactersCharacterIDCalendarEventIDParams) WithEventID

WithEventID adds the eventID to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithResponse

WithResponse adds the response to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithTimeout

WithTimeout adds the timeout to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WithToken

WithToken adds the token to the put characters character id calendar event id params

func (*PutCharactersCharacterIDCalendarEventIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutCharactersCharacterIDCalendarEventIDReader

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

PutCharactersCharacterIDCalendarEventIDReader is a Reader for the PutCharactersCharacterIDCalendarEventID structure.

func (*PutCharactersCharacterIDCalendarEventIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutCharactersCharacterIDCalendarEventIDServiceUnavailable

type PutCharactersCharacterIDCalendarEventIDServiceUnavailable struct {
	Payload *models.ServiceUnavailable
}

PutCharactersCharacterIDCalendarEventIDServiceUnavailable describes a response with status code 503, with default header values.

Service unavailable

func NewPutCharactersCharacterIDCalendarEventIDServiceUnavailable

func NewPutCharactersCharacterIDCalendarEventIDServiceUnavailable() *PutCharactersCharacterIDCalendarEventIDServiceUnavailable

NewPutCharactersCharacterIDCalendarEventIDServiceUnavailable creates a PutCharactersCharacterIDCalendarEventIDServiceUnavailable with default headers values

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id service unavailable response

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) Error

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id service unavailable response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id service unavailable response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id service unavailable response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id service unavailable response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id service unavailable response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDServiceUnavailable) String added in v0.5.29

type PutCharactersCharacterIDCalendarEventIDUnauthorized

type PutCharactersCharacterIDCalendarEventIDUnauthorized struct {
	Payload *models.Unauthorized
}

PutCharactersCharacterIDCalendarEventIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewPutCharactersCharacterIDCalendarEventIDUnauthorized

func NewPutCharactersCharacterIDCalendarEventIDUnauthorized() *PutCharactersCharacterIDCalendarEventIDUnauthorized

NewPutCharactersCharacterIDCalendarEventIDUnauthorized creates a PutCharactersCharacterIDCalendarEventIDUnauthorized with default headers values

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) Code added in v0.5.29

Code gets the status code for the put characters character Id calendar event Id unauthorized response

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) Error

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) GetPayload

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) IsClientError added in v0.5.29

IsClientError returns true when this put characters character Id calendar event Id unauthorized response has a 4xx status code

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) IsCode added in v0.5.29

IsCode returns true when this put characters character Id calendar event Id unauthorized response a status code equal to that given

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) IsRedirect added in v0.5.29

IsRedirect returns true when this put characters character Id calendar event Id unauthorized response has a 3xx status code

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) IsServerError added in v0.5.29

IsServerError returns true when this put characters character Id calendar event Id unauthorized response has a 5xx status code

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) IsSuccess added in v0.5.29

IsSuccess returns true when this put characters character Id calendar event Id unauthorized response has a 2xx status code

func (*PutCharactersCharacterIDCalendarEventIDUnauthorized) String added in v0.5.29

Jump to

Keyboard shortcuts

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