coaching

package
v0.0.0-...-853dd42 Latest Latest
Warning

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

Go to latest
Published: Jul 8, 2024 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   DeleteCoachingAppointment deletes an existing appointment
	   Permission not required if you are the creator of the appointment
	*/
	DeleteCoachingAppointment(ctx context.Context, params *DeleteCoachingAppointmentParams) (*DeleteCoachingAppointmentAccepted, *DeleteCoachingAppointmentNoContent, error)
	/*
	   DeleteCoachingAppointmentAnnotation deletes an existing annotation
	   You must have the appropriate permission for the type of annotation you are updating. Permission not required if you are the creator or facilitator of the appointment
	*/
	DeleteCoachingAppointmentAnnotation(ctx context.Context, params *DeleteCoachingAppointmentAnnotationParams) (*DeleteCoachingAppointmentAnnotationNoContent, error)
	/*
	   GetCoachingAppointment retrieves an appointment
	   Permission not required if you are the attendee, creator or facilitator of the appointment
	*/
	GetCoachingAppointment(ctx context.Context, params *GetCoachingAppointmentParams) (*GetCoachingAppointmentOK, error)
	/*
	   GetCoachingAppointmentAnnotation retrieves an annotation
	   You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can view private annotations).
	*/
	GetCoachingAppointmentAnnotation(ctx context.Context, params *GetCoachingAppointmentAnnotationParams) (*GetCoachingAppointmentAnnotationOK, error)
	/*
	   GetCoachingAppointmentAnnotations gets a list of annotations
	   You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can view private annotations).
	*/
	GetCoachingAppointmentAnnotations(ctx context.Context, params *GetCoachingAppointmentAnnotationsParams) (*GetCoachingAppointmentAnnotationsOK, error)
	/*
	   GetCoachingAppointmentStatuses gets the list of status changes for a coaching appointment
	   Permission not required if you are an attendee, creator or facilitator of the appointment
	*/
	GetCoachingAppointmentStatuses(ctx context.Context, params *GetCoachingAppointmentStatusesParams) (*GetCoachingAppointmentStatusesOK, error)
	/*
	   GetCoachingAppointments gets appointments for users and optional date range
	*/
	GetCoachingAppointments(ctx context.Context, params *GetCoachingAppointmentsParams) (*GetCoachingAppointmentsOK, error)
	/*
	   GetCoachingAppointmentsMe gets my appointments for a given date range
	*/
	GetCoachingAppointmentsMe(ctx context.Context, params *GetCoachingAppointmentsMeParams) (*GetCoachingAppointmentsMeOK, error)
	/*
	   GetCoachingNotification gets an existing notification
	   Permission not required if you are the owner of the notification.
	*/
	GetCoachingNotification(ctx context.Context, params *GetCoachingNotificationParams) (*GetCoachingNotificationOK, error)
	/*
	   GetCoachingNotifications retrieves the list of your notifications
	*/
	GetCoachingNotifications(ctx context.Context, params *GetCoachingNotificationsParams) (*GetCoachingNotificationsOK, error)
	/*
	   PatchCoachingAppointment updates an existing appointment
	   Permission not required if you are the creator or facilitator of the appointment
	*/
	PatchCoachingAppointment(ctx context.Context, params *PatchCoachingAppointmentParams) (*PatchCoachingAppointmentOK, *PatchCoachingAppointmentAccepted, error)
	/*
	   PatchCoachingAppointmentAnnotation updates an existing annotation
	   You must have the appropriate permission for the type of annotation you are updating. Permission not required if you are the creator or facilitator of the appointment
	*/
	PatchCoachingAppointmentAnnotation(ctx context.Context, params *PatchCoachingAppointmentAnnotationParams) (*PatchCoachingAppointmentAnnotationOK, error)
	/*
	   PatchCoachingAppointmentStatus updates the status of a coaching appointment
	   Permission not required if you are an attendee, creator or facilitator of the appointment
	*/
	PatchCoachingAppointmentStatus(ctx context.Context, params *PatchCoachingAppointmentStatusParams) (*PatchCoachingAppointmentStatusOK, error)
	/*
	   PatchCoachingNotification updates an existing notification
	   Can only update your own notifications.
	*/
	PatchCoachingNotification(ctx context.Context, params *PatchCoachingNotificationParams) (*PatchCoachingNotificationOK, error)
	/*
	   PostCoachingAppointmentAnnotations creates a new annotation
	   You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can create private annotations).
	*/
	PostCoachingAppointmentAnnotations(ctx context.Context, params *PostCoachingAppointmentAnnotationsParams) (*PostCoachingAppointmentAnnotationsCreated, error)
	/*
	   PostCoachingAppointmentConversations adds a conversation to an appointment
	   Permission not required if you are the creator or facilitator of the appointment
	*/
	PostCoachingAppointmentConversations(ctx context.Context, params *PostCoachingAppointmentConversationsParams) (*PostCoachingAppointmentConversationsOK, error)
	/*
	   PostCoachingAppointments creates a new appointment
	*/
	PostCoachingAppointments(ctx context.Context, params *PostCoachingAppointmentsParams) (*PostCoachingAppointmentsCreated, *PostCoachingAppointmentsAccepted, error)
	/*
	   PostCoachingAppointmentsAggregatesQuery retrieves aggregated appointment data
	*/
	PostCoachingAppointmentsAggregatesQuery(ctx context.Context, params *PostCoachingAppointmentsAggregatesQueryParams) (*PostCoachingAppointmentsAggregatesQueryOK, error)
	/*
	   PostCoachingScheduleslotsQuery gets list of possible slots where a coaching appointment can be scheduled
	*/
	PostCoachingScheduleslotsQuery(ctx context.Context, params *PostCoachingScheduleslotsQueryParams) (*PostCoachingScheduleslotsQueryOK, error)
}

API is the interface of the coaching client

type Client

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

Client for coaching API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client

New creates a new coaching API client.

func (*Client) DeleteCoachingAppointment

DeleteCoachingAppointment deletes an existing appointment

Permission not required if you are the creator of the appointment

func (*Client) DeleteCoachingAppointmentAnnotation

DeleteCoachingAppointmentAnnotation deletes an existing annotation

You must have the appropriate permission for the type of annotation you are updating. Permission not required if you are the creator or facilitator of the appointment

func (*Client) GetCoachingAppointment

func (a *Client) GetCoachingAppointment(ctx context.Context, params *GetCoachingAppointmentParams) (*GetCoachingAppointmentOK, error)

GetCoachingAppointment retrieves an appointment

Permission not required if you are the attendee, creator or facilitator of the appointment

func (*Client) GetCoachingAppointmentAnnotation

func (a *Client) GetCoachingAppointmentAnnotation(ctx context.Context, params *GetCoachingAppointmentAnnotationParams) (*GetCoachingAppointmentAnnotationOK, error)

GetCoachingAppointmentAnnotation retrieves an annotation

You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can view private annotations).

func (*Client) GetCoachingAppointmentAnnotations

func (a *Client) GetCoachingAppointmentAnnotations(ctx context.Context, params *GetCoachingAppointmentAnnotationsParams) (*GetCoachingAppointmentAnnotationsOK, error)

GetCoachingAppointmentAnnotations gets a list of annotations

You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can view private annotations).

func (*Client) GetCoachingAppointmentStatuses

func (a *Client) GetCoachingAppointmentStatuses(ctx context.Context, params *GetCoachingAppointmentStatusesParams) (*GetCoachingAppointmentStatusesOK, error)

GetCoachingAppointmentStatuses gets the list of status changes for a coaching appointment

Permission not required if you are an attendee, creator or facilitator of the appointment

func (*Client) GetCoachingAppointments

func (a *Client) GetCoachingAppointments(ctx context.Context, params *GetCoachingAppointmentsParams) (*GetCoachingAppointmentsOK, error)

GetCoachingAppointments gets appointments for users and optional date range

func (*Client) GetCoachingAppointmentsMe

func (a *Client) GetCoachingAppointmentsMe(ctx context.Context, params *GetCoachingAppointmentsMeParams) (*GetCoachingAppointmentsMeOK, error)

GetCoachingAppointmentsMe gets my appointments for a given date range

func (*Client) GetCoachingNotification

func (a *Client) GetCoachingNotification(ctx context.Context, params *GetCoachingNotificationParams) (*GetCoachingNotificationOK, error)

GetCoachingNotification gets an existing notification

Permission not required if you are the owner of the notification.

func (*Client) GetCoachingNotifications

func (a *Client) GetCoachingNotifications(ctx context.Context, params *GetCoachingNotificationsParams) (*GetCoachingNotificationsOK, error)

GetCoachingNotifications retrieves the list of your notifications

func (*Client) PatchCoachingAppointment

PatchCoachingAppointment updates an existing appointment

Permission not required if you are the creator or facilitator of the appointment

func (*Client) PatchCoachingAppointmentAnnotation

func (a *Client) PatchCoachingAppointmentAnnotation(ctx context.Context, params *PatchCoachingAppointmentAnnotationParams) (*PatchCoachingAppointmentAnnotationOK, error)

PatchCoachingAppointmentAnnotation updates an existing annotation

You must have the appropriate permission for the type of annotation you are updating. Permission not required if you are the creator or facilitator of the appointment

func (*Client) PatchCoachingAppointmentStatus

func (a *Client) PatchCoachingAppointmentStatus(ctx context.Context, params *PatchCoachingAppointmentStatusParams) (*PatchCoachingAppointmentStatusOK, error)

PatchCoachingAppointmentStatus updates the status of a coaching appointment

Permission not required if you are an attendee, creator or facilitator of the appointment

func (*Client) PatchCoachingNotification

func (a *Client) PatchCoachingNotification(ctx context.Context, params *PatchCoachingNotificationParams) (*PatchCoachingNotificationOK, error)

PatchCoachingNotification updates an existing notification

Can only update your own notifications.

func (*Client) PostCoachingAppointmentAnnotations

PostCoachingAppointmentAnnotations creates a new annotation

You must have the appropriate permission for the type of annotation you are creating. Permission not required if you are related to the appointment (only the creator or facilitator can create private annotations).

func (*Client) PostCoachingAppointmentConversations

func (a *Client) PostCoachingAppointmentConversations(ctx context.Context, params *PostCoachingAppointmentConversationsParams) (*PostCoachingAppointmentConversationsOK, error)

PostCoachingAppointmentConversations adds a conversation to an appointment

Permission not required if you are the creator or facilitator of the appointment

func (*Client) PostCoachingAppointments

PostCoachingAppointments creates a new appointment

func (*Client) PostCoachingAppointmentsAggregatesQuery

func (a *Client) PostCoachingAppointmentsAggregatesQuery(ctx context.Context, params *PostCoachingAppointmentsAggregatesQueryParams) (*PostCoachingAppointmentsAggregatesQueryOK, error)

PostCoachingAppointmentsAggregatesQuery retrieves aggregated appointment data

func (*Client) PostCoachingScheduleslotsQuery

func (a *Client) PostCoachingScheduleslotsQuery(ctx context.Context, params *PostCoachingScheduleslotsQueryParams) (*PostCoachingScheduleslotsQueryOK, error)

PostCoachingScheduleslotsQuery gets list of possible slots where a coaching appointment can be scheduled

type DeleteCoachingAppointmentAccepted

type DeleteCoachingAppointmentAccepted struct {
	Payload *models.CoachingAppointmentReference
}

DeleteCoachingAppointmentAccepted describes a response with status code 202, with default header values.

Appointment delete request accepted.

func NewDeleteCoachingAppointmentAccepted

func NewDeleteCoachingAppointmentAccepted() *DeleteCoachingAppointmentAccepted

NewDeleteCoachingAppointmentAccepted creates a DeleteCoachingAppointmentAccepted with default headers values

func (*DeleteCoachingAppointmentAccepted) Error

func (*DeleteCoachingAppointmentAccepted) GetPayload

func (*DeleteCoachingAppointmentAccepted) IsClientError

func (o *DeleteCoachingAppointmentAccepted) IsClientError() bool

IsClientError returns true when this delete coaching appointment accepted response has a 4xx status code

func (*DeleteCoachingAppointmentAccepted) IsCode

func (o *DeleteCoachingAppointmentAccepted) IsCode(code int) bool

IsCode returns true when this delete coaching appointment accepted response a status code equal to that given

func (*DeleteCoachingAppointmentAccepted) IsRedirect

func (o *DeleteCoachingAppointmentAccepted) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment accepted response has a 3xx status code

func (*DeleteCoachingAppointmentAccepted) IsServerError

func (o *DeleteCoachingAppointmentAccepted) IsServerError() bool

IsServerError returns true when this delete coaching appointment accepted response has a 5xx status code

func (*DeleteCoachingAppointmentAccepted) IsSuccess

func (o *DeleteCoachingAppointmentAccepted) IsSuccess() bool

IsSuccess returns true when this delete coaching appointment accepted response has a 2xx status code

func (*DeleteCoachingAppointmentAccepted) String

type DeleteCoachingAppointmentAnnotationBadRequest

type DeleteCoachingAppointmentAnnotationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewDeleteCoachingAppointmentAnnotationBadRequest

func NewDeleteCoachingAppointmentAnnotationBadRequest() *DeleteCoachingAppointmentAnnotationBadRequest

NewDeleteCoachingAppointmentAnnotationBadRequest creates a DeleteCoachingAppointmentAnnotationBadRequest with default headers values

func (*DeleteCoachingAppointmentAnnotationBadRequest) Error

func (*DeleteCoachingAppointmentAnnotationBadRequest) GetPayload

func (*DeleteCoachingAppointmentAnnotationBadRequest) IsClientError

IsClientError returns true when this delete coaching appointment annotation bad request response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationBadRequest) IsCode

IsCode returns true when this delete coaching appointment annotation bad request response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationBadRequest) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation bad request response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationBadRequest) IsServerError

IsServerError returns true when this delete coaching appointment annotation bad request response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationBadRequest) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation bad request response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationBadRequest) String

type DeleteCoachingAppointmentAnnotationForbidden

type DeleteCoachingAppointmentAnnotationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteCoachingAppointmentAnnotationForbidden

func NewDeleteCoachingAppointmentAnnotationForbidden() *DeleteCoachingAppointmentAnnotationForbidden

NewDeleteCoachingAppointmentAnnotationForbidden creates a DeleteCoachingAppointmentAnnotationForbidden with default headers values

func (*DeleteCoachingAppointmentAnnotationForbidden) Error

func (*DeleteCoachingAppointmentAnnotationForbidden) GetPayload

func (*DeleteCoachingAppointmentAnnotationForbidden) IsClientError

IsClientError returns true when this delete coaching appointment annotation forbidden response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationForbidden) IsCode

IsCode returns true when this delete coaching appointment annotation forbidden response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationForbidden) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation forbidden response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationForbidden) IsServerError

IsServerError returns true when this delete coaching appointment annotation forbidden response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationForbidden) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation forbidden response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationForbidden) String

type DeleteCoachingAppointmentAnnotationGatewayTimeout

type DeleteCoachingAppointmentAnnotationGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteCoachingAppointmentAnnotationGatewayTimeout

func NewDeleteCoachingAppointmentAnnotationGatewayTimeout() *DeleteCoachingAppointmentAnnotationGatewayTimeout

NewDeleteCoachingAppointmentAnnotationGatewayTimeout creates a DeleteCoachingAppointmentAnnotationGatewayTimeout with default headers values

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) Error

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) GetPayload

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) IsClientError

IsClientError returns true when this delete coaching appointment annotation gateway timeout response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) IsCode

IsCode returns true when this delete coaching appointment annotation gateway timeout response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation gateway timeout response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) IsServerError

IsServerError returns true when this delete coaching appointment annotation gateway timeout response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation gateway timeout response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationGatewayTimeout) String

type DeleteCoachingAppointmentAnnotationInternalServerError

type DeleteCoachingAppointmentAnnotationInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewDeleteCoachingAppointmentAnnotationInternalServerError

func NewDeleteCoachingAppointmentAnnotationInternalServerError() *DeleteCoachingAppointmentAnnotationInternalServerError

NewDeleteCoachingAppointmentAnnotationInternalServerError creates a DeleteCoachingAppointmentAnnotationInternalServerError with default headers values

func (*DeleteCoachingAppointmentAnnotationInternalServerError) Error

func (*DeleteCoachingAppointmentAnnotationInternalServerError) GetPayload

func (*DeleteCoachingAppointmentAnnotationInternalServerError) IsClientError

IsClientError returns true when this delete coaching appointment annotation internal server error response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationInternalServerError) IsCode

IsCode returns true when this delete coaching appointment annotation internal server error response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationInternalServerError) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation internal server error response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationInternalServerError) IsServerError

IsServerError returns true when this delete coaching appointment annotation internal server error response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationInternalServerError) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation internal server error response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationInternalServerError) String

type DeleteCoachingAppointmentAnnotationNoContent

type DeleteCoachingAppointmentAnnotationNoContent struct {
}

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

Annotation deleted

func NewDeleteCoachingAppointmentAnnotationNoContent

func NewDeleteCoachingAppointmentAnnotationNoContent() *DeleteCoachingAppointmentAnnotationNoContent

NewDeleteCoachingAppointmentAnnotationNoContent creates a DeleteCoachingAppointmentAnnotationNoContent with default headers values

func (*DeleteCoachingAppointmentAnnotationNoContent) Error

func (*DeleteCoachingAppointmentAnnotationNoContent) IsClientError

IsClientError returns true when this delete coaching appointment annotation no content response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationNoContent) IsCode

IsCode returns true when this delete coaching appointment annotation no content response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationNoContent) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation no content response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationNoContent) IsServerError

IsServerError returns true when this delete coaching appointment annotation no content response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationNoContent) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation no content response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationNoContent) String

type DeleteCoachingAppointmentAnnotationNotFound

type DeleteCoachingAppointmentAnnotationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteCoachingAppointmentAnnotationNotFound

func NewDeleteCoachingAppointmentAnnotationNotFound() *DeleteCoachingAppointmentAnnotationNotFound

NewDeleteCoachingAppointmentAnnotationNotFound creates a DeleteCoachingAppointmentAnnotationNotFound with default headers values

func (*DeleteCoachingAppointmentAnnotationNotFound) Error

func (*DeleteCoachingAppointmentAnnotationNotFound) GetPayload

func (*DeleteCoachingAppointmentAnnotationNotFound) IsClientError

IsClientError returns true when this delete coaching appointment annotation not found response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationNotFound) IsCode

IsCode returns true when this delete coaching appointment annotation not found response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationNotFound) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation not found response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationNotFound) IsServerError

IsServerError returns true when this delete coaching appointment annotation not found response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationNotFound) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation not found response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationNotFound) String

type DeleteCoachingAppointmentAnnotationParams

type DeleteCoachingAppointmentAnnotationParams struct {

	/* AnnotationID.

	   The ID of the annotation.
	*/
	AnnotationID string

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

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

DeleteCoachingAppointmentAnnotationParams contains all the parameters to send to the API endpoint

for the delete coaching appointment annotation operation.

Typically these are written to a http.Request.

func NewDeleteCoachingAppointmentAnnotationParams

func NewDeleteCoachingAppointmentAnnotationParams() *DeleteCoachingAppointmentAnnotationParams

NewDeleteCoachingAppointmentAnnotationParams creates a new DeleteCoachingAppointmentAnnotationParams 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 NewDeleteCoachingAppointmentAnnotationParamsWithContext

func NewDeleteCoachingAppointmentAnnotationParamsWithContext(ctx context.Context) *DeleteCoachingAppointmentAnnotationParams

NewDeleteCoachingAppointmentAnnotationParamsWithContext creates a new DeleteCoachingAppointmentAnnotationParams object with the ability to set a context for a request.

func NewDeleteCoachingAppointmentAnnotationParamsWithHTTPClient

func NewDeleteCoachingAppointmentAnnotationParamsWithHTTPClient(client *http.Client) *DeleteCoachingAppointmentAnnotationParams

NewDeleteCoachingAppointmentAnnotationParamsWithHTTPClient creates a new DeleteCoachingAppointmentAnnotationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCoachingAppointmentAnnotationParamsWithTimeout

func NewDeleteCoachingAppointmentAnnotationParamsWithTimeout(timeout time.Duration) *DeleteCoachingAppointmentAnnotationParams

NewDeleteCoachingAppointmentAnnotationParamsWithTimeout creates a new DeleteCoachingAppointmentAnnotationParams object with the ability to set a timeout on a request.

func (*DeleteCoachingAppointmentAnnotationParams) SetAnnotationID

func (o *DeleteCoachingAppointmentAnnotationParams) SetAnnotationID(annotationID string)

SetAnnotationID adds the annotationId to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) SetAppointmentID

func (o *DeleteCoachingAppointmentAnnotationParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) SetContext

SetContext adds the context to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) SetDefaults

SetDefaults hydrates default values in the delete coaching appointment annotation params (not the query body).

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

func (*DeleteCoachingAppointmentAnnotationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) SetTimeout

SetTimeout adds the timeout to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WithAnnotationID

WithAnnotationID adds the annotationID to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WithContext

WithContext adds the context to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WithDefaults

WithDefaults hydrates default values in the delete coaching appointment annotation params (not the query body).

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

func (*DeleteCoachingAppointmentAnnotationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WithTimeout

WithTimeout adds the timeout to the delete coaching appointment annotation params

func (*DeleteCoachingAppointmentAnnotationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCoachingAppointmentAnnotationReader

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

DeleteCoachingAppointmentAnnotationReader is a Reader for the DeleteCoachingAppointmentAnnotation structure.

func (*DeleteCoachingAppointmentAnnotationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteCoachingAppointmentAnnotationRequestEntityTooLarge

type DeleteCoachingAppointmentAnnotationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentAnnotationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewDeleteCoachingAppointmentAnnotationRequestEntityTooLarge

func NewDeleteCoachingAppointmentAnnotationRequestEntityTooLarge() *DeleteCoachingAppointmentAnnotationRequestEntityTooLarge

NewDeleteCoachingAppointmentAnnotationRequestEntityTooLarge creates a DeleteCoachingAppointmentAnnotationRequestEntityTooLarge with default headers values

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) Error

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) GetPayload

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) IsClientError

IsClientError returns true when this delete coaching appointment annotation request entity too large response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) IsCode

IsCode returns true when this delete coaching appointment annotation request entity too large response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation request entity too large response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) IsServerError

IsServerError returns true when this delete coaching appointment annotation request entity too large response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation request entity too large response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationRequestEntityTooLarge) String

type DeleteCoachingAppointmentAnnotationRequestTimeout

type DeleteCoachingAppointmentAnnotationRequestTimeout struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentAnnotationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewDeleteCoachingAppointmentAnnotationRequestTimeout

func NewDeleteCoachingAppointmentAnnotationRequestTimeout() *DeleteCoachingAppointmentAnnotationRequestTimeout

NewDeleteCoachingAppointmentAnnotationRequestTimeout creates a DeleteCoachingAppointmentAnnotationRequestTimeout with default headers values

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) Error

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) GetPayload

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) IsClientError

IsClientError returns true when this delete coaching appointment annotation request timeout response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) IsCode

IsCode returns true when this delete coaching appointment annotation request timeout response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation request timeout response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) IsServerError

IsServerError returns true when this delete coaching appointment annotation request timeout response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation request timeout response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationRequestTimeout) String

type DeleteCoachingAppointmentAnnotationServiceUnavailable

type DeleteCoachingAppointmentAnnotationServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewDeleteCoachingAppointmentAnnotationServiceUnavailable

func NewDeleteCoachingAppointmentAnnotationServiceUnavailable() *DeleteCoachingAppointmentAnnotationServiceUnavailable

NewDeleteCoachingAppointmentAnnotationServiceUnavailable creates a DeleteCoachingAppointmentAnnotationServiceUnavailable with default headers values

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) Error

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) GetPayload

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) IsClientError

IsClientError returns true when this delete coaching appointment annotation service unavailable response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) IsCode

IsCode returns true when this delete coaching appointment annotation service unavailable response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation service unavailable response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) IsServerError

IsServerError returns true when this delete coaching appointment annotation service unavailable response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation service unavailable response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationServiceUnavailable) String

type DeleteCoachingAppointmentAnnotationTooManyRequests

type DeleteCoachingAppointmentAnnotationTooManyRequests struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentAnnotationTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewDeleteCoachingAppointmentAnnotationTooManyRequests

func NewDeleteCoachingAppointmentAnnotationTooManyRequests() *DeleteCoachingAppointmentAnnotationTooManyRequests

NewDeleteCoachingAppointmentAnnotationTooManyRequests creates a DeleteCoachingAppointmentAnnotationTooManyRequests with default headers values

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) Error

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) GetPayload

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) IsClientError

IsClientError returns true when this delete coaching appointment annotation too many requests response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) IsCode

IsCode returns true when this delete coaching appointment annotation too many requests response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation too many requests response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) IsServerError

IsServerError returns true when this delete coaching appointment annotation too many requests response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation too many requests response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationTooManyRequests) String

type DeleteCoachingAppointmentAnnotationUnauthorized

type DeleteCoachingAppointmentAnnotationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteCoachingAppointmentAnnotationUnauthorized

func NewDeleteCoachingAppointmentAnnotationUnauthorized() *DeleteCoachingAppointmentAnnotationUnauthorized

NewDeleteCoachingAppointmentAnnotationUnauthorized creates a DeleteCoachingAppointmentAnnotationUnauthorized with default headers values

func (*DeleteCoachingAppointmentAnnotationUnauthorized) Error

func (*DeleteCoachingAppointmentAnnotationUnauthorized) GetPayload

func (*DeleteCoachingAppointmentAnnotationUnauthorized) IsClientError

IsClientError returns true when this delete coaching appointment annotation unauthorized response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationUnauthorized) IsCode

IsCode returns true when this delete coaching appointment annotation unauthorized response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationUnauthorized) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation unauthorized response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationUnauthorized) IsServerError

IsServerError returns true when this delete coaching appointment annotation unauthorized response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationUnauthorized) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation unauthorized response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationUnauthorized) String

type DeleteCoachingAppointmentAnnotationUnsupportedMediaType

type DeleteCoachingAppointmentAnnotationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentAnnotationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewDeleteCoachingAppointmentAnnotationUnsupportedMediaType

func NewDeleteCoachingAppointmentAnnotationUnsupportedMediaType() *DeleteCoachingAppointmentAnnotationUnsupportedMediaType

NewDeleteCoachingAppointmentAnnotationUnsupportedMediaType creates a DeleteCoachingAppointmentAnnotationUnsupportedMediaType with default headers values

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) Error

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) GetPayload

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) IsClientError

IsClientError returns true when this delete coaching appointment annotation unsupported media type response has a 4xx status code

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) IsCode

IsCode returns true when this delete coaching appointment annotation unsupported media type response a status code equal to that given

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this delete coaching appointment annotation unsupported media type response has a 3xx status code

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) IsServerError

IsServerError returns true when this delete coaching appointment annotation unsupported media type response has a 5xx status code

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this delete coaching appointment annotation unsupported media type response has a 2xx status code

func (*DeleteCoachingAppointmentAnnotationUnsupportedMediaType) String

type DeleteCoachingAppointmentBadRequest

type DeleteCoachingAppointmentBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewDeleteCoachingAppointmentBadRequest

func NewDeleteCoachingAppointmentBadRequest() *DeleteCoachingAppointmentBadRequest

NewDeleteCoachingAppointmentBadRequest creates a DeleteCoachingAppointmentBadRequest with default headers values

func (*DeleteCoachingAppointmentBadRequest) Error

func (*DeleteCoachingAppointmentBadRequest) GetPayload

func (*DeleteCoachingAppointmentBadRequest) IsClientError

func (o *DeleteCoachingAppointmentBadRequest) IsClientError() bool

IsClientError returns true when this delete coaching appointment bad request response has a 4xx status code

func (*DeleteCoachingAppointmentBadRequest) IsCode

IsCode returns true when this delete coaching appointment bad request response a status code equal to that given

func (*DeleteCoachingAppointmentBadRequest) IsRedirect

func (o *DeleteCoachingAppointmentBadRequest) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment bad request response has a 3xx status code

func (*DeleteCoachingAppointmentBadRequest) IsServerError

func (o *DeleteCoachingAppointmentBadRequest) IsServerError() bool

IsServerError returns true when this delete coaching appointment bad request response has a 5xx status code

func (*DeleteCoachingAppointmentBadRequest) IsSuccess

IsSuccess returns true when this delete coaching appointment bad request response has a 2xx status code

func (*DeleteCoachingAppointmentBadRequest) String

type DeleteCoachingAppointmentConflict

type DeleteCoachingAppointmentConflict struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentConflict describes a response with status code 409, with default header values.

Conflict

func NewDeleteCoachingAppointmentConflict

func NewDeleteCoachingAppointmentConflict() *DeleteCoachingAppointmentConflict

NewDeleteCoachingAppointmentConflict creates a DeleteCoachingAppointmentConflict with default headers values

func (*DeleteCoachingAppointmentConflict) Error

func (*DeleteCoachingAppointmentConflict) GetPayload

func (*DeleteCoachingAppointmentConflict) IsClientError

func (o *DeleteCoachingAppointmentConflict) IsClientError() bool

IsClientError returns true when this delete coaching appointment conflict response has a 4xx status code

func (*DeleteCoachingAppointmentConflict) IsCode

func (o *DeleteCoachingAppointmentConflict) IsCode(code int) bool

IsCode returns true when this delete coaching appointment conflict response a status code equal to that given

func (*DeleteCoachingAppointmentConflict) IsRedirect

func (o *DeleteCoachingAppointmentConflict) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment conflict response has a 3xx status code

func (*DeleteCoachingAppointmentConflict) IsServerError

func (o *DeleteCoachingAppointmentConflict) IsServerError() bool

IsServerError returns true when this delete coaching appointment conflict response has a 5xx status code

func (*DeleteCoachingAppointmentConflict) IsSuccess

func (o *DeleteCoachingAppointmentConflict) IsSuccess() bool

IsSuccess returns true when this delete coaching appointment conflict response has a 2xx status code

func (*DeleteCoachingAppointmentConflict) String

type DeleteCoachingAppointmentForbidden

type DeleteCoachingAppointmentForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewDeleteCoachingAppointmentForbidden

func NewDeleteCoachingAppointmentForbidden() *DeleteCoachingAppointmentForbidden

NewDeleteCoachingAppointmentForbidden creates a DeleteCoachingAppointmentForbidden with default headers values

func (*DeleteCoachingAppointmentForbidden) Error

func (*DeleteCoachingAppointmentForbidden) GetPayload

func (*DeleteCoachingAppointmentForbidden) IsClientError

func (o *DeleteCoachingAppointmentForbidden) IsClientError() bool

IsClientError returns true when this delete coaching appointment forbidden response has a 4xx status code

func (*DeleteCoachingAppointmentForbidden) IsCode

IsCode returns true when this delete coaching appointment forbidden response a status code equal to that given

func (*DeleteCoachingAppointmentForbidden) IsRedirect

func (o *DeleteCoachingAppointmentForbidden) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment forbidden response has a 3xx status code

func (*DeleteCoachingAppointmentForbidden) IsServerError

func (o *DeleteCoachingAppointmentForbidden) IsServerError() bool

IsServerError returns true when this delete coaching appointment forbidden response has a 5xx status code

func (*DeleteCoachingAppointmentForbidden) IsSuccess

IsSuccess returns true when this delete coaching appointment forbidden response has a 2xx status code

func (*DeleteCoachingAppointmentForbidden) String

type DeleteCoachingAppointmentGatewayTimeout

type DeleteCoachingAppointmentGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewDeleteCoachingAppointmentGatewayTimeout

func NewDeleteCoachingAppointmentGatewayTimeout() *DeleteCoachingAppointmentGatewayTimeout

NewDeleteCoachingAppointmentGatewayTimeout creates a DeleteCoachingAppointmentGatewayTimeout with default headers values

func (*DeleteCoachingAppointmentGatewayTimeout) Error

func (*DeleteCoachingAppointmentGatewayTimeout) GetPayload

func (*DeleteCoachingAppointmentGatewayTimeout) IsClientError

func (o *DeleteCoachingAppointmentGatewayTimeout) IsClientError() bool

IsClientError returns true when this delete coaching appointment gateway timeout response has a 4xx status code

func (*DeleteCoachingAppointmentGatewayTimeout) IsCode

IsCode returns true when this delete coaching appointment gateway timeout response a status code equal to that given

func (*DeleteCoachingAppointmentGatewayTimeout) IsRedirect

IsRedirect returns true when this delete coaching appointment gateway timeout response has a 3xx status code

func (*DeleteCoachingAppointmentGatewayTimeout) IsServerError

func (o *DeleteCoachingAppointmentGatewayTimeout) IsServerError() bool

IsServerError returns true when this delete coaching appointment gateway timeout response has a 5xx status code

func (*DeleteCoachingAppointmentGatewayTimeout) IsSuccess

IsSuccess returns true when this delete coaching appointment gateway timeout response has a 2xx status code

func (*DeleteCoachingAppointmentGatewayTimeout) String

type DeleteCoachingAppointmentInternalServerError

type DeleteCoachingAppointmentInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewDeleteCoachingAppointmentInternalServerError

func NewDeleteCoachingAppointmentInternalServerError() *DeleteCoachingAppointmentInternalServerError

NewDeleteCoachingAppointmentInternalServerError creates a DeleteCoachingAppointmentInternalServerError with default headers values

func (*DeleteCoachingAppointmentInternalServerError) Error

func (*DeleteCoachingAppointmentInternalServerError) GetPayload

func (*DeleteCoachingAppointmentInternalServerError) IsClientError

IsClientError returns true when this delete coaching appointment internal server error response has a 4xx status code

func (*DeleteCoachingAppointmentInternalServerError) IsCode

IsCode returns true when this delete coaching appointment internal server error response a status code equal to that given

func (*DeleteCoachingAppointmentInternalServerError) IsRedirect

IsRedirect returns true when this delete coaching appointment internal server error response has a 3xx status code

func (*DeleteCoachingAppointmentInternalServerError) IsServerError

IsServerError returns true when this delete coaching appointment internal server error response has a 5xx status code

func (*DeleteCoachingAppointmentInternalServerError) IsSuccess

IsSuccess returns true when this delete coaching appointment internal server error response has a 2xx status code

func (*DeleteCoachingAppointmentInternalServerError) String

type DeleteCoachingAppointmentNoContent

type DeleteCoachingAppointmentNoContent struct {
}

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

Appointment deleted

func NewDeleteCoachingAppointmentNoContent

func NewDeleteCoachingAppointmentNoContent() *DeleteCoachingAppointmentNoContent

NewDeleteCoachingAppointmentNoContent creates a DeleteCoachingAppointmentNoContent with default headers values

func (*DeleteCoachingAppointmentNoContent) Error

func (*DeleteCoachingAppointmentNoContent) IsClientError

func (o *DeleteCoachingAppointmentNoContent) IsClientError() bool

IsClientError returns true when this delete coaching appointment no content response has a 4xx status code

func (*DeleteCoachingAppointmentNoContent) IsCode

IsCode returns true when this delete coaching appointment no content response a status code equal to that given

func (*DeleteCoachingAppointmentNoContent) IsRedirect

func (o *DeleteCoachingAppointmentNoContent) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment no content response has a 3xx status code

func (*DeleteCoachingAppointmentNoContent) IsServerError

func (o *DeleteCoachingAppointmentNoContent) IsServerError() bool

IsServerError returns true when this delete coaching appointment no content response has a 5xx status code

func (*DeleteCoachingAppointmentNoContent) IsSuccess

IsSuccess returns true when this delete coaching appointment no content response has a 2xx status code

func (*DeleteCoachingAppointmentNoContent) String

type DeleteCoachingAppointmentNotFound

type DeleteCoachingAppointmentNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewDeleteCoachingAppointmentNotFound

func NewDeleteCoachingAppointmentNotFound() *DeleteCoachingAppointmentNotFound

NewDeleteCoachingAppointmentNotFound creates a DeleteCoachingAppointmentNotFound with default headers values

func (*DeleteCoachingAppointmentNotFound) Error

func (*DeleteCoachingAppointmentNotFound) GetPayload

func (*DeleteCoachingAppointmentNotFound) IsClientError

func (o *DeleteCoachingAppointmentNotFound) IsClientError() bool

IsClientError returns true when this delete coaching appointment not found response has a 4xx status code

func (*DeleteCoachingAppointmentNotFound) IsCode

func (o *DeleteCoachingAppointmentNotFound) IsCode(code int) bool

IsCode returns true when this delete coaching appointment not found response a status code equal to that given

func (*DeleteCoachingAppointmentNotFound) IsRedirect

func (o *DeleteCoachingAppointmentNotFound) IsRedirect() bool

IsRedirect returns true when this delete coaching appointment not found response has a 3xx status code

func (*DeleteCoachingAppointmentNotFound) IsServerError

func (o *DeleteCoachingAppointmentNotFound) IsServerError() bool

IsServerError returns true when this delete coaching appointment not found response has a 5xx status code

func (*DeleteCoachingAppointmentNotFound) IsSuccess

func (o *DeleteCoachingAppointmentNotFound) IsSuccess() bool

IsSuccess returns true when this delete coaching appointment not found response has a 2xx status code

func (*DeleteCoachingAppointmentNotFound) String

type DeleteCoachingAppointmentParams

type DeleteCoachingAppointmentParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

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

DeleteCoachingAppointmentParams contains all the parameters to send to the API endpoint

for the delete coaching appointment operation.

Typically these are written to a http.Request.

func NewDeleteCoachingAppointmentParams

func NewDeleteCoachingAppointmentParams() *DeleteCoachingAppointmentParams

NewDeleteCoachingAppointmentParams creates a new DeleteCoachingAppointmentParams 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 NewDeleteCoachingAppointmentParamsWithContext

func NewDeleteCoachingAppointmentParamsWithContext(ctx context.Context) *DeleteCoachingAppointmentParams

NewDeleteCoachingAppointmentParamsWithContext creates a new DeleteCoachingAppointmentParams object with the ability to set a context for a request.

func NewDeleteCoachingAppointmentParamsWithHTTPClient

func NewDeleteCoachingAppointmentParamsWithHTTPClient(client *http.Client) *DeleteCoachingAppointmentParams

NewDeleteCoachingAppointmentParamsWithHTTPClient creates a new DeleteCoachingAppointmentParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteCoachingAppointmentParamsWithTimeout

func NewDeleteCoachingAppointmentParamsWithTimeout(timeout time.Duration) *DeleteCoachingAppointmentParams

NewDeleteCoachingAppointmentParamsWithTimeout creates a new DeleteCoachingAppointmentParams object with the ability to set a timeout on a request.

func (*DeleteCoachingAppointmentParams) SetAppointmentID

func (o *DeleteCoachingAppointmentParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) SetContext

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

SetContext adds the context to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) SetDefaults

func (o *DeleteCoachingAppointmentParams) SetDefaults()

SetDefaults hydrates default values in the delete coaching appointment params (not the query body).

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

func (*DeleteCoachingAppointmentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) SetTimeout

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

SetTimeout adds the timeout to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) WithAppointmentID

func (o *DeleteCoachingAppointmentParams) WithAppointmentID(appointmentID string) *DeleteCoachingAppointmentParams

WithAppointmentID adds the appointmentID to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) WithContext

WithContext adds the context to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) WithDefaults

WithDefaults hydrates default values in the delete coaching appointment params (not the query body).

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

func (*DeleteCoachingAppointmentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) WithTimeout

WithTimeout adds the timeout to the delete coaching appointment params

func (*DeleteCoachingAppointmentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCoachingAppointmentReader

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

DeleteCoachingAppointmentReader is a Reader for the DeleteCoachingAppointment structure.

func (*DeleteCoachingAppointmentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteCoachingAppointmentRequestEntityTooLarge

type DeleteCoachingAppointmentRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewDeleteCoachingAppointmentRequestEntityTooLarge

func NewDeleteCoachingAppointmentRequestEntityTooLarge() *DeleteCoachingAppointmentRequestEntityTooLarge

NewDeleteCoachingAppointmentRequestEntityTooLarge creates a DeleteCoachingAppointmentRequestEntityTooLarge with default headers values

func (*DeleteCoachingAppointmentRequestEntityTooLarge) Error

func (*DeleteCoachingAppointmentRequestEntityTooLarge) GetPayload

func (*DeleteCoachingAppointmentRequestEntityTooLarge) IsClientError

IsClientError returns true when this delete coaching appointment request entity too large response has a 4xx status code

func (*DeleteCoachingAppointmentRequestEntityTooLarge) IsCode

IsCode returns true when this delete coaching appointment request entity too large response a status code equal to that given

func (*DeleteCoachingAppointmentRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this delete coaching appointment request entity too large response has a 3xx status code

func (*DeleteCoachingAppointmentRequestEntityTooLarge) IsServerError

IsServerError returns true when this delete coaching appointment request entity too large response has a 5xx status code

func (*DeleteCoachingAppointmentRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this delete coaching appointment request entity too large response has a 2xx status code

func (*DeleteCoachingAppointmentRequestEntityTooLarge) String

type DeleteCoachingAppointmentRequestTimeout

type DeleteCoachingAppointmentRequestTimeout struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewDeleteCoachingAppointmentRequestTimeout

func NewDeleteCoachingAppointmentRequestTimeout() *DeleteCoachingAppointmentRequestTimeout

NewDeleteCoachingAppointmentRequestTimeout creates a DeleteCoachingAppointmentRequestTimeout with default headers values

func (*DeleteCoachingAppointmentRequestTimeout) Error

func (*DeleteCoachingAppointmentRequestTimeout) GetPayload

func (*DeleteCoachingAppointmentRequestTimeout) IsClientError

func (o *DeleteCoachingAppointmentRequestTimeout) IsClientError() bool

IsClientError returns true when this delete coaching appointment request timeout response has a 4xx status code

func (*DeleteCoachingAppointmentRequestTimeout) IsCode

IsCode returns true when this delete coaching appointment request timeout response a status code equal to that given

func (*DeleteCoachingAppointmentRequestTimeout) IsRedirect

IsRedirect returns true when this delete coaching appointment request timeout response has a 3xx status code

func (*DeleteCoachingAppointmentRequestTimeout) IsServerError

func (o *DeleteCoachingAppointmentRequestTimeout) IsServerError() bool

IsServerError returns true when this delete coaching appointment request timeout response has a 5xx status code

func (*DeleteCoachingAppointmentRequestTimeout) IsSuccess

IsSuccess returns true when this delete coaching appointment request timeout response has a 2xx status code

func (*DeleteCoachingAppointmentRequestTimeout) String

type DeleteCoachingAppointmentServiceUnavailable

type DeleteCoachingAppointmentServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewDeleteCoachingAppointmentServiceUnavailable

func NewDeleteCoachingAppointmentServiceUnavailable() *DeleteCoachingAppointmentServiceUnavailable

NewDeleteCoachingAppointmentServiceUnavailable creates a DeleteCoachingAppointmentServiceUnavailable with default headers values

func (*DeleteCoachingAppointmentServiceUnavailable) Error

func (*DeleteCoachingAppointmentServiceUnavailable) GetPayload

func (*DeleteCoachingAppointmentServiceUnavailable) IsClientError

IsClientError returns true when this delete coaching appointment service unavailable response has a 4xx status code

func (*DeleteCoachingAppointmentServiceUnavailable) IsCode

IsCode returns true when this delete coaching appointment service unavailable response a status code equal to that given

func (*DeleteCoachingAppointmentServiceUnavailable) IsRedirect

IsRedirect returns true when this delete coaching appointment service unavailable response has a 3xx status code

func (*DeleteCoachingAppointmentServiceUnavailable) IsServerError

IsServerError returns true when this delete coaching appointment service unavailable response has a 5xx status code

func (*DeleteCoachingAppointmentServiceUnavailable) IsSuccess

IsSuccess returns true when this delete coaching appointment service unavailable response has a 2xx status code

func (*DeleteCoachingAppointmentServiceUnavailable) String

type DeleteCoachingAppointmentTooManyRequests

type DeleteCoachingAppointmentTooManyRequests struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewDeleteCoachingAppointmentTooManyRequests

func NewDeleteCoachingAppointmentTooManyRequests() *DeleteCoachingAppointmentTooManyRequests

NewDeleteCoachingAppointmentTooManyRequests creates a DeleteCoachingAppointmentTooManyRequests with default headers values

func (*DeleteCoachingAppointmentTooManyRequests) Error

func (*DeleteCoachingAppointmentTooManyRequests) GetPayload

func (*DeleteCoachingAppointmentTooManyRequests) IsClientError

IsClientError returns true when this delete coaching appointment too many requests response has a 4xx status code

func (*DeleteCoachingAppointmentTooManyRequests) IsCode

IsCode returns true when this delete coaching appointment too many requests response a status code equal to that given

func (*DeleteCoachingAppointmentTooManyRequests) IsRedirect

IsRedirect returns true when this delete coaching appointment too many requests response has a 3xx status code

func (*DeleteCoachingAppointmentTooManyRequests) IsServerError

IsServerError returns true when this delete coaching appointment too many requests response has a 5xx status code

func (*DeleteCoachingAppointmentTooManyRequests) IsSuccess

IsSuccess returns true when this delete coaching appointment too many requests response has a 2xx status code

func (*DeleteCoachingAppointmentTooManyRequests) String

type DeleteCoachingAppointmentUnauthorized

type DeleteCoachingAppointmentUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewDeleteCoachingAppointmentUnauthorized

func NewDeleteCoachingAppointmentUnauthorized() *DeleteCoachingAppointmentUnauthorized

NewDeleteCoachingAppointmentUnauthorized creates a DeleteCoachingAppointmentUnauthorized with default headers values

func (*DeleteCoachingAppointmentUnauthorized) Error

func (*DeleteCoachingAppointmentUnauthorized) GetPayload

func (*DeleteCoachingAppointmentUnauthorized) IsClientError

func (o *DeleteCoachingAppointmentUnauthorized) IsClientError() bool

IsClientError returns true when this delete coaching appointment unauthorized response has a 4xx status code

func (*DeleteCoachingAppointmentUnauthorized) IsCode

IsCode returns true when this delete coaching appointment unauthorized response a status code equal to that given

func (*DeleteCoachingAppointmentUnauthorized) IsRedirect

IsRedirect returns true when this delete coaching appointment unauthorized response has a 3xx status code

func (*DeleteCoachingAppointmentUnauthorized) IsServerError

func (o *DeleteCoachingAppointmentUnauthorized) IsServerError() bool

IsServerError returns true when this delete coaching appointment unauthorized response has a 5xx status code

func (*DeleteCoachingAppointmentUnauthorized) IsSuccess

IsSuccess returns true when this delete coaching appointment unauthorized response has a 2xx status code

func (*DeleteCoachingAppointmentUnauthorized) String

type DeleteCoachingAppointmentUnsupportedMediaType

type DeleteCoachingAppointmentUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

DeleteCoachingAppointmentUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewDeleteCoachingAppointmentUnsupportedMediaType

func NewDeleteCoachingAppointmentUnsupportedMediaType() *DeleteCoachingAppointmentUnsupportedMediaType

NewDeleteCoachingAppointmentUnsupportedMediaType creates a DeleteCoachingAppointmentUnsupportedMediaType with default headers values

func (*DeleteCoachingAppointmentUnsupportedMediaType) Error

func (*DeleteCoachingAppointmentUnsupportedMediaType) GetPayload

func (*DeleteCoachingAppointmentUnsupportedMediaType) IsClientError

IsClientError returns true when this delete coaching appointment unsupported media type response has a 4xx status code

func (*DeleteCoachingAppointmentUnsupportedMediaType) IsCode

IsCode returns true when this delete coaching appointment unsupported media type response a status code equal to that given

func (*DeleteCoachingAppointmentUnsupportedMediaType) IsRedirect

IsRedirect returns true when this delete coaching appointment unsupported media type response has a 3xx status code

func (*DeleteCoachingAppointmentUnsupportedMediaType) IsServerError

IsServerError returns true when this delete coaching appointment unsupported media type response has a 5xx status code

func (*DeleteCoachingAppointmentUnsupportedMediaType) IsSuccess

IsSuccess returns true when this delete coaching appointment unsupported media type response has a 2xx status code

func (*DeleteCoachingAppointmentUnsupportedMediaType) String

type GetCoachingAppointmentAnnotationBadRequest

type GetCoachingAppointmentAnnotationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentAnnotationBadRequest

func NewGetCoachingAppointmentAnnotationBadRequest() *GetCoachingAppointmentAnnotationBadRequest

NewGetCoachingAppointmentAnnotationBadRequest creates a GetCoachingAppointmentAnnotationBadRequest with default headers values

func (*GetCoachingAppointmentAnnotationBadRequest) Error

func (*GetCoachingAppointmentAnnotationBadRequest) GetPayload

func (*GetCoachingAppointmentAnnotationBadRequest) IsClientError

IsClientError returns true when this get coaching appointment annotation bad request response has a 4xx status code

func (*GetCoachingAppointmentAnnotationBadRequest) IsCode

IsCode returns true when this get coaching appointment annotation bad request response a status code equal to that given

func (*GetCoachingAppointmentAnnotationBadRequest) IsRedirect

IsRedirect returns true when this get coaching appointment annotation bad request response has a 3xx status code

func (*GetCoachingAppointmentAnnotationBadRequest) IsServerError

IsServerError returns true when this get coaching appointment annotation bad request response has a 5xx status code

func (*GetCoachingAppointmentAnnotationBadRequest) IsSuccess

IsSuccess returns true when this get coaching appointment annotation bad request response has a 2xx status code

func (*GetCoachingAppointmentAnnotationBadRequest) String

type GetCoachingAppointmentAnnotationForbidden

type GetCoachingAppointmentAnnotationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentAnnotationForbidden

func NewGetCoachingAppointmentAnnotationForbidden() *GetCoachingAppointmentAnnotationForbidden

NewGetCoachingAppointmentAnnotationForbidden creates a GetCoachingAppointmentAnnotationForbidden with default headers values

func (*GetCoachingAppointmentAnnotationForbidden) Error

func (*GetCoachingAppointmentAnnotationForbidden) GetPayload

func (*GetCoachingAppointmentAnnotationForbidden) IsClientError

IsClientError returns true when this get coaching appointment annotation forbidden response has a 4xx status code

func (*GetCoachingAppointmentAnnotationForbidden) IsCode

IsCode returns true when this get coaching appointment annotation forbidden response a status code equal to that given

func (*GetCoachingAppointmentAnnotationForbidden) IsRedirect

IsRedirect returns true when this get coaching appointment annotation forbidden response has a 3xx status code

func (*GetCoachingAppointmentAnnotationForbidden) IsServerError

IsServerError returns true when this get coaching appointment annotation forbidden response has a 5xx status code

func (*GetCoachingAppointmentAnnotationForbidden) IsSuccess

IsSuccess returns true when this get coaching appointment annotation forbidden response has a 2xx status code

func (*GetCoachingAppointmentAnnotationForbidden) String

type GetCoachingAppointmentAnnotationGatewayTimeout

type GetCoachingAppointmentAnnotationGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentAnnotationGatewayTimeout

func NewGetCoachingAppointmentAnnotationGatewayTimeout() *GetCoachingAppointmentAnnotationGatewayTimeout

NewGetCoachingAppointmentAnnotationGatewayTimeout creates a GetCoachingAppointmentAnnotationGatewayTimeout with default headers values

func (*GetCoachingAppointmentAnnotationGatewayTimeout) Error

func (*GetCoachingAppointmentAnnotationGatewayTimeout) GetPayload

func (*GetCoachingAppointmentAnnotationGatewayTimeout) IsClientError

IsClientError returns true when this get coaching appointment annotation gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentAnnotationGatewayTimeout) IsCode

IsCode returns true when this get coaching appointment annotation gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentAnnotationGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment annotation gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentAnnotationGatewayTimeout) IsServerError

IsServerError returns true when this get coaching appointment annotation gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentAnnotationGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment annotation gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentAnnotationGatewayTimeout) String

type GetCoachingAppointmentAnnotationInternalServerError

type GetCoachingAppointmentAnnotationInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentAnnotationInternalServerError

func NewGetCoachingAppointmentAnnotationInternalServerError() *GetCoachingAppointmentAnnotationInternalServerError

NewGetCoachingAppointmentAnnotationInternalServerError creates a GetCoachingAppointmentAnnotationInternalServerError with default headers values

func (*GetCoachingAppointmentAnnotationInternalServerError) Error

func (*GetCoachingAppointmentAnnotationInternalServerError) GetPayload

func (*GetCoachingAppointmentAnnotationInternalServerError) IsClientError

IsClientError returns true when this get coaching appointment annotation internal server error response has a 4xx status code

func (*GetCoachingAppointmentAnnotationInternalServerError) IsCode

IsCode returns true when this get coaching appointment annotation internal server error response a status code equal to that given

func (*GetCoachingAppointmentAnnotationInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointment annotation internal server error response has a 3xx status code

func (*GetCoachingAppointmentAnnotationInternalServerError) IsServerError

IsServerError returns true when this get coaching appointment annotation internal server error response has a 5xx status code

func (*GetCoachingAppointmentAnnotationInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointment annotation internal server error response has a 2xx status code

func (*GetCoachingAppointmentAnnotationInternalServerError) String

type GetCoachingAppointmentAnnotationNotFound

type GetCoachingAppointmentAnnotationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentAnnotationNotFound

func NewGetCoachingAppointmentAnnotationNotFound() *GetCoachingAppointmentAnnotationNotFound

NewGetCoachingAppointmentAnnotationNotFound creates a GetCoachingAppointmentAnnotationNotFound with default headers values

func (*GetCoachingAppointmentAnnotationNotFound) Error

func (*GetCoachingAppointmentAnnotationNotFound) GetPayload

func (*GetCoachingAppointmentAnnotationNotFound) IsClientError

IsClientError returns true when this get coaching appointment annotation not found response has a 4xx status code

func (*GetCoachingAppointmentAnnotationNotFound) IsCode

IsCode returns true when this get coaching appointment annotation not found response a status code equal to that given

func (*GetCoachingAppointmentAnnotationNotFound) IsRedirect

IsRedirect returns true when this get coaching appointment annotation not found response has a 3xx status code

func (*GetCoachingAppointmentAnnotationNotFound) IsServerError

IsServerError returns true when this get coaching appointment annotation not found response has a 5xx status code

func (*GetCoachingAppointmentAnnotationNotFound) IsSuccess

IsSuccess returns true when this get coaching appointment annotation not found response has a 2xx status code

func (*GetCoachingAppointmentAnnotationNotFound) String

type GetCoachingAppointmentAnnotationOK

type GetCoachingAppointmentAnnotationOK struct {
	Payload *models.CoachingAnnotation
}

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

Annotation retrieved

func NewGetCoachingAppointmentAnnotationOK

func NewGetCoachingAppointmentAnnotationOK() *GetCoachingAppointmentAnnotationOK

NewGetCoachingAppointmentAnnotationOK creates a GetCoachingAppointmentAnnotationOK with default headers values

func (*GetCoachingAppointmentAnnotationOK) Error

func (*GetCoachingAppointmentAnnotationOK) GetPayload

func (*GetCoachingAppointmentAnnotationOK) IsClientError

func (o *GetCoachingAppointmentAnnotationOK) IsClientError() bool

IsClientError returns true when this get coaching appointment annotation o k response has a 4xx status code

func (*GetCoachingAppointmentAnnotationOK) IsCode

IsCode returns true when this get coaching appointment annotation o k response a status code equal to that given

func (*GetCoachingAppointmentAnnotationOK) IsRedirect

func (o *GetCoachingAppointmentAnnotationOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointment annotation o k response has a 3xx status code

func (*GetCoachingAppointmentAnnotationOK) IsServerError

func (o *GetCoachingAppointmentAnnotationOK) IsServerError() bool

IsServerError returns true when this get coaching appointment annotation o k response has a 5xx status code

func (*GetCoachingAppointmentAnnotationOK) IsSuccess

IsSuccess returns true when this get coaching appointment annotation o k response has a 2xx status code

func (*GetCoachingAppointmentAnnotationOK) String

type GetCoachingAppointmentAnnotationParams

type GetCoachingAppointmentAnnotationParams struct {

	/* AnnotationID.

	   The ID of the annotation.
	*/
	AnnotationID string

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

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

GetCoachingAppointmentAnnotationParams contains all the parameters to send to the API endpoint

for the get coaching appointment annotation operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentAnnotationParams

func NewGetCoachingAppointmentAnnotationParams() *GetCoachingAppointmentAnnotationParams

NewGetCoachingAppointmentAnnotationParams creates a new GetCoachingAppointmentAnnotationParams 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 NewGetCoachingAppointmentAnnotationParamsWithContext

func NewGetCoachingAppointmentAnnotationParamsWithContext(ctx context.Context) *GetCoachingAppointmentAnnotationParams

NewGetCoachingAppointmentAnnotationParamsWithContext creates a new GetCoachingAppointmentAnnotationParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentAnnotationParamsWithHTTPClient

func NewGetCoachingAppointmentAnnotationParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentAnnotationParams

NewGetCoachingAppointmentAnnotationParamsWithHTTPClient creates a new GetCoachingAppointmentAnnotationParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentAnnotationParamsWithTimeout

func NewGetCoachingAppointmentAnnotationParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentAnnotationParams

NewGetCoachingAppointmentAnnotationParamsWithTimeout creates a new GetCoachingAppointmentAnnotationParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentAnnotationParams) SetAnnotationID

func (o *GetCoachingAppointmentAnnotationParams) SetAnnotationID(annotationID string)

SetAnnotationID adds the annotationId to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) SetAppointmentID

func (o *GetCoachingAppointmentAnnotationParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) SetContext

SetContext adds the context to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) SetDefaults

func (o *GetCoachingAppointmentAnnotationParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointment annotation params (not the query body).

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

func (*GetCoachingAppointmentAnnotationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WithAnnotationID

WithAnnotationID adds the annotationID to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WithContext

WithContext adds the context to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointment annotation params (not the query body).

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

func (*GetCoachingAppointmentAnnotationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointment annotation params

func (*GetCoachingAppointmentAnnotationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentAnnotationReader

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

GetCoachingAppointmentAnnotationReader is a Reader for the GetCoachingAppointmentAnnotation structure.

func (*GetCoachingAppointmentAnnotationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentAnnotationRequestEntityTooLarge

type GetCoachingAppointmentAnnotationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentAnnotationRequestEntityTooLarge

func NewGetCoachingAppointmentAnnotationRequestEntityTooLarge() *GetCoachingAppointmentAnnotationRequestEntityTooLarge

NewGetCoachingAppointmentAnnotationRequestEntityTooLarge creates a GetCoachingAppointmentAnnotationRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) Error

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointment annotation request entity too large response has a 4xx status code

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointment annotation request entity too large response a status code equal to that given

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointment annotation request entity too large response has a 3xx status code

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointment annotation request entity too large response has a 5xx status code

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointment annotation request entity too large response has a 2xx status code

func (*GetCoachingAppointmentAnnotationRequestEntityTooLarge) String

type GetCoachingAppointmentAnnotationRequestTimeout

type GetCoachingAppointmentAnnotationRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentAnnotationRequestTimeout

func NewGetCoachingAppointmentAnnotationRequestTimeout() *GetCoachingAppointmentAnnotationRequestTimeout

NewGetCoachingAppointmentAnnotationRequestTimeout creates a GetCoachingAppointmentAnnotationRequestTimeout with default headers values

func (*GetCoachingAppointmentAnnotationRequestTimeout) Error

func (*GetCoachingAppointmentAnnotationRequestTimeout) GetPayload

func (*GetCoachingAppointmentAnnotationRequestTimeout) IsClientError

IsClientError returns true when this get coaching appointment annotation request timeout response has a 4xx status code

func (*GetCoachingAppointmentAnnotationRequestTimeout) IsCode

IsCode returns true when this get coaching appointment annotation request timeout response a status code equal to that given

func (*GetCoachingAppointmentAnnotationRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment annotation request timeout response has a 3xx status code

func (*GetCoachingAppointmentAnnotationRequestTimeout) IsServerError

IsServerError returns true when this get coaching appointment annotation request timeout response has a 5xx status code

func (*GetCoachingAppointmentAnnotationRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment annotation request timeout response has a 2xx status code

func (*GetCoachingAppointmentAnnotationRequestTimeout) String

type GetCoachingAppointmentAnnotationServiceUnavailable

type GetCoachingAppointmentAnnotationServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentAnnotationServiceUnavailable

func NewGetCoachingAppointmentAnnotationServiceUnavailable() *GetCoachingAppointmentAnnotationServiceUnavailable

NewGetCoachingAppointmentAnnotationServiceUnavailable creates a GetCoachingAppointmentAnnotationServiceUnavailable with default headers values

func (*GetCoachingAppointmentAnnotationServiceUnavailable) Error

func (*GetCoachingAppointmentAnnotationServiceUnavailable) GetPayload

func (*GetCoachingAppointmentAnnotationServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointment annotation service unavailable response has a 4xx status code

func (*GetCoachingAppointmentAnnotationServiceUnavailable) IsCode

IsCode returns true when this get coaching appointment annotation service unavailable response a status code equal to that given

func (*GetCoachingAppointmentAnnotationServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointment annotation service unavailable response has a 3xx status code

func (*GetCoachingAppointmentAnnotationServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointment annotation service unavailable response has a 5xx status code

func (*GetCoachingAppointmentAnnotationServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointment annotation service unavailable response has a 2xx status code

func (*GetCoachingAppointmentAnnotationServiceUnavailable) String

type GetCoachingAppointmentAnnotationTooManyRequests

type GetCoachingAppointmentAnnotationTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentAnnotationTooManyRequests

func NewGetCoachingAppointmentAnnotationTooManyRequests() *GetCoachingAppointmentAnnotationTooManyRequests

NewGetCoachingAppointmentAnnotationTooManyRequests creates a GetCoachingAppointmentAnnotationTooManyRequests with default headers values

func (*GetCoachingAppointmentAnnotationTooManyRequests) Error

func (*GetCoachingAppointmentAnnotationTooManyRequests) GetPayload

func (*GetCoachingAppointmentAnnotationTooManyRequests) IsClientError

IsClientError returns true when this get coaching appointment annotation too many requests response has a 4xx status code

func (*GetCoachingAppointmentAnnotationTooManyRequests) IsCode

IsCode returns true when this get coaching appointment annotation too many requests response a status code equal to that given

func (*GetCoachingAppointmentAnnotationTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointment annotation too many requests response has a 3xx status code

func (*GetCoachingAppointmentAnnotationTooManyRequests) IsServerError

IsServerError returns true when this get coaching appointment annotation too many requests response has a 5xx status code

func (*GetCoachingAppointmentAnnotationTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointment annotation too many requests response has a 2xx status code

func (*GetCoachingAppointmentAnnotationTooManyRequests) String

type GetCoachingAppointmentAnnotationUnauthorized

type GetCoachingAppointmentAnnotationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentAnnotationUnauthorized

func NewGetCoachingAppointmentAnnotationUnauthorized() *GetCoachingAppointmentAnnotationUnauthorized

NewGetCoachingAppointmentAnnotationUnauthorized creates a GetCoachingAppointmentAnnotationUnauthorized with default headers values

func (*GetCoachingAppointmentAnnotationUnauthorized) Error

func (*GetCoachingAppointmentAnnotationUnauthorized) GetPayload

func (*GetCoachingAppointmentAnnotationUnauthorized) IsClientError

IsClientError returns true when this get coaching appointment annotation unauthorized response has a 4xx status code

func (*GetCoachingAppointmentAnnotationUnauthorized) IsCode

IsCode returns true when this get coaching appointment annotation unauthorized response a status code equal to that given

func (*GetCoachingAppointmentAnnotationUnauthorized) IsRedirect

IsRedirect returns true when this get coaching appointment annotation unauthorized response has a 3xx status code

func (*GetCoachingAppointmentAnnotationUnauthorized) IsServerError

IsServerError returns true when this get coaching appointment annotation unauthorized response has a 5xx status code

func (*GetCoachingAppointmentAnnotationUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointment annotation unauthorized response has a 2xx status code

func (*GetCoachingAppointmentAnnotationUnauthorized) String

type GetCoachingAppointmentAnnotationUnsupportedMediaType

type GetCoachingAppointmentAnnotationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentAnnotationUnsupportedMediaType

func NewGetCoachingAppointmentAnnotationUnsupportedMediaType() *GetCoachingAppointmentAnnotationUnsupportedMediaType

NewGetCoachingAppointmentAnnotationUnsupportedMediaType creates a GetCoachingAppointmentAnnotationUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) Error

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointment annotation unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointment annotation unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointment annotation unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointment annotation unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointment annotation unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentAnnotationUnsupportedMediaType) String

type GetCoachingAppointmentAnnotationsBadRequest

type GetCoachingAppointmentAnnotationsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentAnnotationsBadRequest

func NewGetCoachingAppointmentAnnotationsBadRequest() *GetCoachingAppointmentAnnotationsBadRequest

NewGetCoachingAppointmentAnnotationsBadRequest creates a GetCoachingAppointmentAnnotationsBadRequest with default headers values

func (*GetCoachingAppointmentAnnotationsBadRequest) Error

func (*GetCoachingAppointmentAnnotationsBadRequest) GetPayload

func (*GetCoachingAppointmentAnnotationsBadRequest) IsClientError

IsClientError returns true when this get coaching appointment annotations bad request response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsBadRequest) IsCode

IsCode returns true when this get coaching appointment annotations bad request response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsBadRequest) IsRedirect

IsRedirect returns true when this get coaching appointment annotations bad request response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsBadRequest) IsServerError

IsServerError returns true when this get coaching appointment annotations bad request response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsBadRequest) IsSuccess

IsSuccess returns true when this get coaching appointment annotations bad request response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsBadRequest) String

type GetCoachingAppointmentAnnotationsForbidden

type GetCoachingAppointmentAnnotationsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentAnnotationsForbidden

func NewGetCoachingAppointmentAnnotationsForbidden() *GetCoachingAppointmentAnnotationsForbidden

NewGetCoachingAppointmentAnnotationsForbidden creates a GetCoachingAppointmentAnnotationsForbidden with default headers values

func (*GetCoachingAppointmentAnnotationsForbidden) Error

func (*GetCoachingAppointmentAnnotationsForbidden) GetPayload

func (*GetCoachingAppointmentAnnotationsForbidden) IsClientError

IsClientError returns true when this get coaching appointment annotations forbidden response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsForbidden) IsCode

IsCode returns true when this get coaching appointment annotations forbidden response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsForbidden) IsRedirect

IsRedirect returns true when this get coaching appointment annotations forbidden response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsForbidden) IsServerError

IsServerError returns true when this get coaching appointment annotations forbidden response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsForbidden) IsSuccess

IsSuccess returns true when this get coaching appointment annotations forbidden response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsForbidden) String

type GetCoachingAppointmentAnnotationsGatewayTimeout

type GetCoachingAppointmentAnnotationsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentAnnotationsGatewayTimeout

func NewGetCoachingAppointmentAnnotationsGatewayTimeout() *GetCoachingAppointmentAnnotationsGatewayTimeout

NewGetCoachingAppointmentAnnotationsGatewayTimeout creates a GetCoachingAppointmentAnnotationsGatewayTimeout with default headers values

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) Error

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) GetPayload

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) IsClientError

IsClientError returns true when this get coaching appointment annotations gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) IsCode

IsCode returns true when this get coaching appointment annotations gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment annotations gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) IsServerError

IsServerError returns true when this get coaching appointment annotations gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment annotations gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsGatewayTimeout) String

type GetCoachingAppointmentAnnotationsInternalServerError

type GetCoachingAppointmentAnnotationsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentAnnotationsInternalServerError

func NewGetCoachingAppointmentAnnotationsInternalServerError() *GetCoachingAppointmentAnnotationsInternalServerError

NewGetCoachingAppointmentAnnotationsInternalServerError creates a GetCoachingAppointmentAnnotationsInternalServerError with default headers values

func (*GetCoachingAppointmentAnnotationsInternalServerError) Error

func (*GetCoachingAppointmentAnnotationsInternalServerError) GetPayload

func (*GetCoachingAppointmentAnnotationsInternalServerError) IsClientError

IsClientError returns true when this get coaching appointment annotations internal server error response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsInternalServerError) IsCode

IsCode returns true when this get coaching appointment annotations internal server error response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointment annotations internal server error response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsInternalServerError) IsServerError

IsServerError returns true when this get coaching appointment annotations internal server error response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointment annotations internal server error response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsInternalServerError) String

type GetCoachingAppointmentAnnotationsNotFound

type GetCoachingAppointmentAnnotationsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentAnnotationsNotFound

func NewGetCoachingAppointmentAnnotationsNotFound() *GetCoachingAppointmentAnnotationsNotFound

NewGetCoachingAppointmentAnnotationsNotFound creates a GetCoachingAppointmentAnnotationsNotFound with default headers values

func (*GetCoachingAppointmentAnnotationsNotFound) Error

func (*GetCoachingAppointmentAnnotationsNotFound) GetPayload

func (*GetCoachingAppointmentAnnotationsNotFound) IsClientError

IsClientError returns true when this get coaching appointment annotations not found response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsNotFound) IsCode

IsCode returns true when this get coaching appointment annotations not found response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsNotFound) IsRedirect

IsRedirect returns true when this get coaching appointment annotations not found response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsNotFound) IsServerError

IsServerError returns true when this get coaching appointment annotations not found response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsNotFound) IsSuccess

IsSuccess returns true when this get coaching appointment annotations not found response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsNotFound) String

type GetCoachingAppointmentAnnotationsOK

type GetCoachingAppointmentAnnotationsOK struct {
	Payload *models.CoachingAnnotationList
}

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

Annotations retrieved

func NewGetCoachingAppointmentAnnotationsOK

func NewGetCoachingAppointmentAnnotationsOK() *GetCoachingAppointmentAnnotationsOK

NewGetCoachingAppointmentAnnotationsOK creates a GetCoachingAppointmentAnnotationsOK with default headers values

func (*GetCoachingAppointmentAnnotationsOK) Error

func (*GetCoachingAppointmentAnnotationsOK) GetPayload

func (*GetCoachingAppointmentAnnotationsOK) IsClientError

func (o *GetCoachingAppointmentAnnotationsOK) IsClientError() bool

IsClientError returns true when this get coaching appointment annotations o k response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsOK) IsCode

IsCode returns true when this get coaching appointment annotations o k response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsOK) IsRedirect

func (o *GetCoachingAppointmentAnnotationsOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointment annotations o k response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsOK) IsServerError

func (o *GetCoachingAppointmentAnnotationsOK) IsServerError() bool

IsServerError returns true when this get coaching appointment annotations o k response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsOK) IsSuccess

IsSuccess returns true when this get coaching appointment annotations o k response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsOK) String

type GetCoachingAppointmentAnnotationsParams

type GetCoachingAppointmentAnnotationsParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetCoachingAppointmentAnnotationsParams contains all the parameters to send to the API endpoint

for the get coaching appointment annotations operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentAnnotationsParams

func NewGetCoachingAppointmentAnnotationsParams() *GetCoachingAppointmentAnnotationsParams

NewGetCoachingAppointmentAnnotationsParams creates a new GetCoachingAppointmentAnnotationsParams 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 NewGetCoachingAppointmentAnnotationsParamsWithContext

func NewGetCoachingAppointmentAnnotationsParamsWithContext(ctx context.Context) *GetCoachingAppointmentAnnotationsParams

NewGetCoachingAppointmentAnnotationsParamsWithContext creates a new GetCoachingAppointmentAnnotationsParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentAnnotationsParamsWithHTTPClient

func NewGetCoachingAppointmentAnnotationsParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentAnnotationsParams

NewGetCoachingAppointmentAnnotationsParamsWithHTTPClient creates a new GetCoachingAppointmentAnnotationsParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentAnnotationsParamsWithTimeout

func NewGetCoachingAppointmentAnnotationsParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentAnnotationsParams

NewGetCoachingAppointmentAnnotationsParamsWithTimeout creates a new GetCoachingAppointmentAnnotationsParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentAnnotationsParams) SetAppointmentID

func (o *GetCoachingAppointmentAnnotationsParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) SetContext

SetContext adds the context to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) SetDefaults

func (o *GetCoachingAppointmentAnnotationsParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointment annotations params (not the query body).

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

func (*GetCoachingAppointmentAnnotationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) SetPageNumber

func (o *GetCoachingAppointmentAnnotationsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) SetPageSize

func (o *GetCoachingAppointmentAnnotationsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithContext

WithContext adds the context to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointment annotations params (not the query body).

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

func (*GetCoachingAppointmentAnnotationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithPageNumber

WithPageNumber adds the pageNumber to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithPageSize

WithPageSize adds the pageSize to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointment annotations params

func (*GetCoachingAppointmentAnnotationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentAnnotationsReader

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

GetCoachingAppointmentAnnotationsReader is a Reader for the GetCoachingAppointmentAnnotations structure.

func (*GetCoachingAppointmentAnnotationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentAnnotationsRequestEntityTooLarge

type GetCoachingAppointmentAnnotationsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentAnnotationsRequestEntityTooLarge

func NewGetCoachingAppointmentAnnotationsRequestEntityTooLarge() *GetCoachingAppointmentAnnotationsRequestEntityTooLarge

NewGetCoachingAppointmentAnnotationsRequestEntityTooLarge creates a GetCoachingAppointmentAnnotationsRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) Error

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointment annotations request entity too large response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointment annotations request entity too large response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointment annotations request entity too large response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointment annotations request entity too large response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointment annotations request entity too large response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsRequestEntityTooLarge) String

type GetCoachingAppointmentAnnotationsRequestTimeout

type GetCoachingAppointmentAnnotationsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentAnnotationsRequestTimeout

func NewGetCoachingAppointmentAnnotationsRequestTimeout() *GetCoachingAppointmentAnnotationsRequestTimeout

NewGetCoachingAppointmentAnnotationsRequestTimeout creates a GetCoachingAppointmentAnnotationsRequestTimeout with default headers values

func (*GetCoachingAppointmentAnnotationsRequestTimeout) Error

func (*GetCoachingAppointmentAnnotationsRequestTimeout) GetPayload

func (*GetCoachingAppointmentAnnotationsRequestTimeout) IsClientError

IsClientError returns true when this get coaching appointment annotations request timeout response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsRequestTimeout) IsCode

IsCode returns true when this get coaching appointment annotations request timeout response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment annotations request timeout response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsRequestTimeout) IsServerError

IsServerError returns true when this get coaching appointment annotations request timeout response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment annotations request timeout response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsRequestTimeout) String

type GetCoachingAppointmentAnnotationsServiceUnavailable

type GetCoachingAppointmentAnnotationsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentAnnotationsServiceUnavailable

func NewGetCoachingAppointmentAnnotationsServiceUnavailable() *GetCoachingAppointmentAnnotationsServiceUnavailable

NewGetCoachingAppointmentAnnotationsServiceUnavailable creates a GetCoachingAppointmentAnnotationsServiceUnavailable with default headers values

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) Error

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) GetPayload

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointment annotations service unavailable response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) IsCode

IsCode returns true when this get coaching appointment annotations service unavailable response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointment annotations service unavailable response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointment annotations service unavailable response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointment annotations service unavailable response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsServiceUnavailable) String

type GetCoachingAppointmentAnnotationsTooManyRequests

type GetCoachingAppointmentAnnotationsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentAnnotationsTooManyRequests

func NewGetCoachingAppointmentAnnotationsTooManyRequests() *GetCoachingAppointmentAnnotationsTooManyRequests

NewGetCoachingAppointmentAnnotationsTooManyRequests creates a GetCoachingAppointmentAnnotationsTooManyRequests with default headers values

func (*GetCoachingAppointmentAnnotationsTooManyRequests) Error

func (*GetCoachingAppointmentAnnotationsTooManyRequests) GetPayload

func (*GetCoachingAppointmentAnnotationsTooManyRequests) IsClientError

IsClientError returns true when this get coaching appointment annotations too many requests response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsTooManyRequests) IsCode

IsCode returns true when this get coaching appointment annotations too many requests response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointment annotations too many requests response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsTooManyRequests) IsServerError

IsServerError returns true when this get coaching appointment annotations too many requests response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointment annotations too many requests response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsTooManyRequests) String

type GetCoachingAppointmentAnnotationsUnauthorized

type GetCoachingAppointmentAnnotationsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentAnnotationsUnauthorized

func NewGetCoachingAppointmentAnnotationsUnauthorized() *GetCoachingAppointmentAnnotationsUnauthorized

NewGetCoachingAppointmentAnnotationsUnauthorized creates a GetCoachingAppointmentAnnotationsUnauthorized with default headers values

func (*GetCoachingAppointmentAnnotationsUnauthorized) Error

func (*GetCoachingAppointmentAnnotationsUnauthorized) GetPayload

func (*GetCoachingAppointmentAnnotationsUnauthorized) IsClientError

IsClientError returns true when this get coaching appointment annotations unauthorized response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsUnauthorized) IsCode

IsCode returns true when this get coaching appointment annotations unauthorized response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsUnauthorized) IsRedirect

IsRedirect returns true when this get coaching appointment annotations unauthorized response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsUnauthorized) IsServerError

IsServerError returns true when this get coaching appointment annotations unauthorized response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointment annotations unauthorized response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsUnauthorized) String

type GetCoachingAppointmentAnnotationsUnsupportedMediaType

type GetCoachingAppointmentAnnotationsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentAnnotationsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentAnnotationsUnsupportedMediaType

func NewGetCoachingAppointmentAnnotationsUnsupportedMediaType() *GetCoachingAppointmentAnnotationsUnsupportedMediaType

NewGetCoachingAppointmentAnnotationsUnsupportedMediaType creates a GetCoachingAppointmentAnnotationsUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) Error

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointment annotations unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointment annotations unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointment annotations unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointment annotations unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointment annotations unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentAnnotationsUnsupportedMediaType) String

type GetCoachingAppointmentBadRequest

type GetCoachingAppointmentBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentBadRequest

func NewGetCoachingAppointmentBadRequest() *GetCoachingAppointmentBadRequest

NewGetCoachingAppointmentBadRequest creates a GetCoachingAppointmentBadRequest with default headers values

func (*GetCoachingAppointmentBadRequest) Error

func (*GetCoachingAppointmentBadRequest) GetPayload

func (*GetCoachingAppointmentBadRequest) IsClientError

func (o *GetCoachingAppointmentBadRequest) IsClientError() bool

IsClientError returns true when this get coaching appointment bad request response has a 4xx status code

func (*GetCoachingAppointmentBadRequest) IsCode

func (o *GetCoachingAppointmentBadRequest) IsCode(code int) bool

IsCode returns true when this get coaching appointment bad request response a status code equal to that given

func (*GetCoachingAppointmentBadRequest) IsRedirect

func (o *GetCoachingAppointmentBadRequest) IsRedirect() bool

IsRedirect returns true when this get coaching appointment bad request response has a 3xx status code

func (*GetCoachingAppointmentBadRequest) IsServerError

func (o *GetCoachingAppointmentBadRequest) IsServerError() bool

IsServerError returns true when this get coaching appointment bad request response has a 5xx status code

func (*GetCoachingAppointmentBadRequest) IsSuccess

func (o *GetCoachingAppointmentBadRequest) IsSuccess() bool

IsSuccess returns true when this get coaching appointment bad request response has a 2xx status code

func (*GetCoachingAppointmentBadRequest) String

type GetCoachingAppointmentForbidden

type GetCoachingAppointmentForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentForbidden

func NewGetCoachingAppointmentForbidden() *GetCoachingAppointmentForbidden

NewGetCoachingAppointmentForbidden creates a GetCoachingAppointmentForbidden with default headers values

func (*GetCoachingAppointmentForbidden) Error

func (*GetCoachingAppointmentForbidden) GetPayload

func (*GetCoachingAppointmentForbidden) IsClientError

func (o *GetCoachingAppointmentForbidden) IsClientError() bool

IsClientError returns true when this get coaching appointment forbidden response has a 4xx status code

func (*GetCoachingAppointmentForbidden) IsCode

func (o *GetCoachingAppointmentForbidden) IsCode(code int) bool

IsCode returns true when this get coaching appointment forbidden response a status code equal to that given

func (*GetCoachingAppointmentForbidden) IsRedirect

func (o *GetCoachingAppointmentForbidden) IsRedirect() bool

IsRedirect returns true when this get coaching appointment forbidden response has a 3xx status code

func (*GetCoachingAppointmentForbidden) IsServerError

func (o *GetCoachingAppointmentForbidden) IsServerError() bool

IsServerError returns true when this get coaching appointment forbidden response has a 5xx status code

func (*GetCoachingAppointmentForbidden) IsSuccess

func (o *GetCoachingAppointmentForbidden) IsSuccess() bool

IsSuccess returns true when this get coaching appointment forbidden response has a 2xx status code

func (*GetCoachingAppointmentForbidden) String

type GetCoachingAppointmentGatewayTimeout

type GetCoachingAppointmentGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentGatewayTimeout

func NewGetCoachingAppointmentGatewayTimeout() *GetCoachingAppointmentGatewayTimeout

NewGetCoachingAppointmentGatewayTimeout creates a GetCoachingAppointmentGatewayTimeout with default headers values

func (*GetCoachingAppointmentGatewayTimeout) Error

func (*GetCoachingAppointmentGatewayTimeout) GetPayload

func (*GetCoachingAppointmentGatewayTimeout) IsClientError

func (o *GetCoachingAppointmentGatewayTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointment gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentGatewayTimeout) IsCode

IsCode returns true when this get coaching appointment gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentGatewayTimeout) IsServerError

func (o *GetCoachingAppointmentGatewayTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointment gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentGatewayTimeout) String

type GetCoachingAppointmentInternalServerError

type GetCoachingAppointmentInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentInternalServerError

func NewGetCoachingAppointmentInternalServerError() *GetCoachingAppointmentInternalServerError

NewGetCoachingAppointmentInternalServerError creates a GetCoachingAppointmentInternalServerError with default headers values

func (*GetCoachingAppointmentInternalServerError) Error

func (*GetCoachingAppointmentInternalServerError) GetPayload

func (*GetCoachingAppointmentInternalServerError) IsClientError

IsClientError returns true when this get coaching appointment internal server error response has a 4xx status code

func (*GetCoachingAppointmentInternalServerError) IsCode

IsCode returns true when this get coaching appointment internal server error response a status code equal to that given

func (*GetCoachingAppointmentInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointment internal server error response has a 3xx status code

func (*GetCoachingAppointmentInternalServerError) IsServerError

IsServerError returns true when this get coaching appointment internal server error response has a 5xx status code

func (*GetCoachingAppointmentInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointment internal server error response has a 2xx status code

func (*GetCoachingAppointmentInternalServerError) String

type GetCoachingAppointmentNotFound

type GetCoachingAppointmentNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentNotFound

func NewGetCoachingAppointmentNotFound() *GetCoachingAppointmentNotFound

NewGetCoachingAppointmentNotFound creates a GetCoachingAppointmentNotFound with default headers values

func (*GetCoachingAppointmentNotFound) Error

func (*GetCoachingAppointmentNotFound) GetPayload

func (*GetCoachingAppointmentNotFound) IsClientError

func (o *GetCoachingAppointmentNotFound) IsClientError() bool

IsClientError returns true when this get coaching appointment not found response has a 4xx status code

func (*GetCoachingAppointmentNotFound) IsCode

func (o *GetCoachingAppointmentNotFound) IsCode(code int) bool

IsCode returns true when this get coaching appointment not found response a status code equal to that given

func (*GetCoachingAppointmentNotFound) IsRedirect

func (o *GetCoachingAppointmentNotFound) IsRedirect() bool

IsRedirect returns true when this get coaching appointment not found response has a 3xx status code

func (*GetCoachingAppointmentNotFound) IsServerError

func (o *GetCoachingAppointmentNotFound) IsServerError() bool

IsServerError returns true when this get coaching appointment not found response has a 5xx status code

func (*GetCoachingAppointmentNotFound) IsSuccess

func (o *GetCoachingAppointmentNotFound) IsSuccess() bool

IsSuccess returns true when this get coaching appointment not found response has a 2xx status code

func (*GetCoachingAppointmentNotFound) String

type GetCoachingAppointmentOK

type GetCoachingAppointmentOK struct {
	Payload *models.CoachingAppointmentResponse
}

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

Retrieved appointment

func NewGetCoachingAppointmentOK

func NewGetCoachingAppointmentOK() *GetCoachingAppointmentOK

NewGetCoachingAppointmentOK creates a GetCoachingAppointmentOK with default headers values

func (*GetCoachingAppointmentOK) Error

func (o *GetCoachingAppointmentOK) Error() string

func (*GetCoachingAppointmentOK) GetPayload

func (*GetCoachingAppointmentOK) IsClientError

func (o *GetCoachingAppointmentOK) IsClientError() bool

IsClientError returns true when this get coaching appointment o k response has a 4xx status code

func (*GetCoachingAppointmentOK) IsCode

func (o *GetCoachingAppointmentOK) IsCode(code int) bool

IsCode returns true when this get coaching appointment o k response a status code equal to that given

func (*GetCoachingAppointmentOK) IsRedirect

func (o *GetCoachingAppointmentOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointment o k response has a 3xx status code

func (*GetCoachingAppointmentOK) IsServerError

func (o *GetCoachingAppointmentOK) IsServerError() bool

IsServerError returns true when this get coaching appointment o k response has a 5xx status code

func (*GetCoachingAppointmentOK) IsSuccess

func (o *GetCoachingAppointmentOK) IsSuccess() bool

IsSuccess returns true when this get coaching appointment o k response has a 2xx status code

func (*GetCoachingAppointmentOK) String

func (o *GetCoachingAppointmentOK) String() string

type GetCoachingAppointmentParams

type GetCoachingAppointmentParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

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

GetCoachingAppointmentParams contains all the parameters to send to the API endpoint

for the get coaching appointment operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentParams

func NewGetCoachingAppointmentParams() *GetCoachingAppointmentParams

NewGetCoachingAppointmentParams creates a new GetCoachingAppointmentParams 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 NewGetCoachingAppointmentParamsWithContext

func NewGetCoachingAppointmentParamsWithContext(ctx context.Context) *GetCoachingAppointmentParams

NewGetCoachingAppointmentParamsWithContext creates a new GetCoachingAppointmentParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentParamsWithHTTPClient

func NewGetCoachingAppointmentParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentParams

NewGetCoachingAppointmentParamsWithHTTPClient creates a new GetCoachingAppointmentParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentParamsWithTimeout

func NewGetCoachingAppointmentParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentParams

NewGetCoachingAppointmentParamsWithTimeout creates a new GetCoachingAppointmentParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentParams) SetAppointmentID

func (o *GetCoachingAppointmentParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the get coaching appointment params

func (*GetCoachingAppointmentParams) SetContext

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

SetContext adds the context to the get coaching appointment params

func (*GetCoachingAppointmentParams) SetDefaults

func (o *GetCoachingAppointmentParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointment params (not the query body).

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

func (*GetCoachingAppointmentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointment params

func (*GetCoachingAppointmentParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointment params

func (*GetCoachingAppointmentParams) WithAppointmentID

func (o *GetCoachingAppointmentParams) WithAppointmentID(appointmentID string) *GetCoachingAppointmentParams

WithAppointmentID adds the appointmentID to the get coaching appointment params

func (*GetCoachingAppointmentParams) WithContext

WithContext adds the context to the get coaching appointment params

func (*GetCoachingAppointmentParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointment params (not the query body).

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

func (*GetCoachingAppointmentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointment params

func (*GetCoachingAppointmentParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointment params

func (*GetCoachingAppointmentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentReader

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

GetCoachingAppointmentReader is a Reader for the GetCoachingAppointment structure.

func (*GetCoachingAppointmentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentRequestEntityTooLarge

type GetCoachingAppointmentRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentRequestEntityTooLarge

func NewGetCoachingAppointmentRequestEntityTooLarge() *GetCoachingAppointmentRequestEntityTooLarge

NewGetCoachingAppointmentRequestEntityTooLarge creates a GetCoachingAppointmentRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentRequestEntityTooLarge) Error

func (*GetCoachingAppointmentRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointment request entity too large response has a 4xx status code

func (*GetCoachingAppointmentRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointment request entity too large response a status code equal to that given

func (*GetCoachingAppointmentRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointment request entity too large response has a 3xx status code

func (*GetCoachingAppointmentRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointment request entity too large response has a 5xx status code

func (*GetCoachingAppointmentRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointment request entity too large response has a 2xx status code

func (*GetCoachingAppointmentRequestEntityTooLarge) String

type GetCoachingAppointmentRequestTimeout

type GetCoachingAppointmentRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentRequestTimeout

func NewGetCoachingAppointmentRequestTimeout() *GetCoachingAppointmentRequestTimeout

NewGetCoachingAppointmentRequestTimeout creates a GetCoachingAppointmentRequestTimeout with default headers values

func (*GetCoachingAppointmentRequestTimeout) Error

func (*GetCoachingAppointmentRequestTimeout) GetPayload

func (*GetCoachingAppointmentRequestTimeout) IsClientError

func (o *GetCoachingAppointmentRequestTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointment request timeout response has a 4xx status code

func (*GetCoachingAppointmentRequestTimeout) IsCode

IsCode returns true when this get coaching appointment request timeout response a status code equal to that given

func (*GetCoachingAppointmentRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment request timeout response has a 3xx status code

func (*GetCoachingAppointmentRequestTimeout) IsServerError

func (o *GetCoachingAppointmentRequestTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointment request timeout response has a 5xx status code

func (*GetCoachingAppointmentRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment request timeout response has a 2xx status code

func (*GetCoachingAppointmentRequestTimeout) String

type GetCoachingAppointmentServiceUnavailable

type GetCoachingAppointmentServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentServiceUnavailable

func NewGetCoachingAppointmentServiceUnavailable() *GetCoachingAppointmentServiceUnavailable

NewGetCoachingAppointmentServiceUnavailable creates a GetCoachingAppointmentServiceUnavailable with default headers values

func (*GetCoachingAppointmentServiceUnavailable) Error

func (*GetCoachingAppointmentServiceUnavailable) GetPayload

func (*GetCoachingAppointmentServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointment service unavailable response has a 4xx status code

func (*GetCoachingAppointmentServiceUnavailable) IsCode

IsCode returns true when this get coaching appointment service unavailable response a status code equal to that given

func (*GetCoachingAppointmentServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointment service unavailable response has a 3xx status code

func (*GetCoachingAppointmentServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointment service unavailable response has a 5xx status code

func (*GetCoachingAppointmentServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointment service unavailable response has a 2xx status code

func (*GetCoachingAppointmentServiceUnavailable) String

type GetCoachingAppointmentStatusesBadRequest

type GetCoachingAppointmentStatusesBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentStatusesBadRequest

func NewGetCoachingAppointmentStatusesBadRequest() *GetCoachingAppointmentStatusesBadRequest

NewGetCoachingAppointmentStatusesBadRequest creates a GetCoachingAppointmentStatusesBadRequest with default headers values

func (*GetCoachingAppointmentStatusesBadRequest) Error

func (*GetCoachingAppointmentStatusesBadRequest) GetPayload

func (*GetCoachingAppointmentStatusesBadRequest) IsClientError

IsClientError returns true when this get coaching appointment statuses bad request response has a 4xx status code

func (*GetCoachingAppointmentStatusesBadRequest) IsCode

IsCode returns true when this get coaching appointment statuses bad request response a status code equal to that given

func (*GetCoachingAppointmentStatusesBadRequest) IsRedirect

IsRedirect returns true when this get coaching appointment statuses bad request response has a 3xx status code

func (*GetCoachingAppointmentStatusesBadRequest) IsServerError

IsServerError returns true when this get coaching appointment statuses bad request response has a 5xx status code

func (*GetCoachingAppointmentStatusesBadRequest) IsSuccess

IsSuccess returns true when this get coaching appointment statuses bad request response has a 2xx status code

func (*GetCoachingAppointmentStatusesBadRequest) String

type GetCoachingAppointmentStatusesForbidden

type GetCoachingAppointmentStatusesForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentStatusesForbidden

func NewGetCoachingAppointmentStatusesForbidden() *GetCoachingAppointmentStatusesForbidden

NewGetCoachingAppointmentStatusesForbidden creates a GetCoachingAppointmentStatusesForbidden with default headers values

func (*GetCoachingAppointmentStatusesForbidden) Error

func (*GetCoachingAppointmentStatusesForbidden) GetPayload

func (*GetCoachingAppointmentStatusesForbidden) IsClientError

func (o *GetCoachingAppointmentStatusesForbidden) IsClientError() bool

IsClientError returns true when this get coaching appointment statuses forbidden response has a 4xx status code

func (*GetCoachingAppointmentStatusesForbidden) IsCode

IsCode returns true when this get coaching appointment statuses forbidden response a status code equal to that given

func (*GetCoachingAppointmentStatusesForbidden) IsRedirect

IsRedirect returns true when this get coaching appointment statuses forbidden response has a 3xx status code

func (*GetCoachingAppointmentStatusesForbidden) IsServerError

func (o *GetCoachingAppointmentStatusesForbidden) IsServerError() bool

IsServerError returns true when this get coaching appointment statuses forbidden response has a 5xx status code

func (*GetCoachingAppointmentStatusesForbidden) IsSuccess

IsSuccess returns true when this get coaching appointment statuses forbidden response has a 2xx status code

func (*GetCoachingAppointmentStatusesForbidden) String

type GetCoachingAppointmentStatusesGatewayTimeout

type GetCoachingAppointmentStatusesGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentStatusesGatewayTimeout

func NewGetCoachingAppointmentStatusesGatewayTimeout() *GetCoachingAppointmentStatusesGatewayTimeout

NewGetCoachingAppointmentStatusesGatewayTimeout creates a GetCoachingAppointmentStatusesGatewayTimeout with default headers values

func (*GetCoachingAppointmentStatusesGatewayTimeout) Error

func (*GetCoachingAppointmentStatusesGatewayTimeout) GetPayload

func (*GetCoachingAppointmentStatusesGatewayTimeout) IsClientError

IsClientError returns true when this get coaching appointment statuses gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentStatusesGatewayTimeout) IsCode

IsCode returns true when this get coaching appointment statuses gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentStatusesGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment statuses gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentStatusesGatewayTimeout) IsServerError

IsServerError returns true when this get coaching appointment statuses gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentStatusesGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment statuses gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentStatusesGatewayTimeout) String

type GetCoachingAppointmentStatusesInternalServerError

type GetCoachingAppointmentStatusesInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentStatusesInternalServerError

func NewGetCoachingAppointmentStatusesInternalServerError() *GetCoachingAppointmentStatusesInternalServerError

NewGetCoachingAppointmentStatusesInternalServerError creates a GetCoachingAppointmentStatusesInternalServerError with default headers values

func (*GetCoachingAppointmentStatusesInternalServerError) Error

func (*GetCoachingAppointmentStatusesInternalServerError) GetPayload

func (*GetCoachingAppointmentStatusesInternalServerError) IsClientError

IsClientError returns true when this get coaching appointment statuses internal server error response has a 4xx status code

func (*GetCoachingAppointmentStatusesInternalServerError) IsCode

IsCode returns true when this get coaching appointment statuses internal server error response a status code equal to that given

func (*GetCoachingAppointmentStatusesInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointment statuses internal server error response has a 3xx status code

func (*GetCoachingAppointmentStatusesInternalServerError) IsServerError

IsServerError returns true when this get coaching appointment statuses internal server error response has a 5xx status code

func (*GetCoachingAppointmentStatusesInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointment statuses internal server error response has a 2xx status code

func (*GetCoachingAppointmentStatusesInternalServerError) String

type GetCoachingAppointmentStatusesNotFound

type GetCoachingAppointmentStatusesNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentStatusesNotFound

func NewGetCoachingAppointmentStatusesNotFound() *GetCoachingAppointmentStatusesNotFound

NewGetCoachingAppointmentStatusesNotFound creates a GetCoachingAppointmentStatusesNotFound with default headers values

func (*GetCoachingAppointmentStatusesNotFound) Error

func (*GetCoachingAppointmentStatusesNotFound) GetPayload

func (*GetCoachingAppointmentStatusesNotFound) IsClientError

func (o *GetCoachingAppointmentStatusesNotFound) IsClientError() bool

IsClientError returns true when this get coaching appointment statuses not found response has a 4xx status code

func (*GetCoachingAppointmentStatusesNotFound) IsCode

IsCode returns true when this get coaching appointment statuses not found response a status code equal to that given

func (*GetCoachingAppointmentStatusesNotFound) IsRedirect

IsRedirect returns true when this get coaching appointment statuses not found response has a 3xx status code

func (*GetCoachingAppointmentStatusesNotFound) IsServerError

func (o *GetCoachingAppointmentStatusesNotFound) IsServerError() bool

IsServerError returns true when this get coaching appointment statuses not found response has a 5xx status code

func (*GetCoachingAppointmentStatusesNotFound) IsSuccess

IsSuccess returns true when this get coaching appointment statuses not found response has a 2xx status code

func (*GetCoachingAppointmentStatusesNotFound) String

type GetCoachingAppointmentStatusesOK

type GetCoachingAppointmentStatusesOK struct {
	Payload *models.CoachingAppointmentStatusResponseList
}

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

Retrieved appointment statuses

func NewGetCoachingAppointmentStatusesOK

func NewGetCoachingAppointmentStatusesOK() *GetCoachingAppointmentStatusesOK

NewGetCoachingAppointmentStatusesOK creates a GetCoachingAppointmentStatusesOK with default headers values

func (*GetCoachingAppointmentStatusesOK) Error

func (*GetCoachingAppointmentStatusesOK) GetPayload

func (*GetCoachingAppointmentStatusesOK) IsClientError

func (o *GetCoachingAppointmentStatusesOK) IsClientError() bool

IsClientError returns true when this get coaching appointment statuses o k response has a 4xx status code

func (*GetCoachingAppointmentStatusesOK) IsCode

func (o *GetCoachingAppointmentStatusesOK) IsCode(code int) bool

IsCode returns true when this get coaching appointment statuses o k response a status code equal to that given

func (*GetCoachingAppointmentStatusesOK) IsRedirect

func (o *GetCoachingAppointmentStatusesOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointment statuses o k response has a 3xx status code

func (*GetCoachingAppointmentStatusesOK) IsServerError

func (o *GetCoachingAppointmentStatusesOK) IsServerError() bool

IsServerError returns true when this get coaching appointment statuses o k response has a 5xx status code

func (*GetCoachingAppointmentStatusesOK) IsSuccess

func (o *GetCoachingAppointmentStatusesOK) IsSuccess() bool

IsSuccess returns true when this get coaching appointment statuses o k response has a 2xx status code

func (*GetCoachingAppointmentStatusesOK) String

type GetCoachingAppointmentStatusesParams

type GetCoachingAppointmentStatusesParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetCoachingAppointmentStatusesParams contains all the parameters to send to the API endpoint

for the get coaching appointment statuses operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentStatusesParams

func NewGetCoachingAppointmentStatusesParams() *GetCoachingAppointmentStatusesParams

NewGetCoachingAppointmentStatusesParams creates a new GetCoachingAppointmentStatusesParams 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 NewGetCoachingAppointmentStatusesParamsWithContext

func NewGetCoachingAppointmentStatusesParamsWithContext(ctx context.Context) *GetCoachingAppointmentStatusesParams

NewGetCoachingAppointmentStatusesParamsWithContext creates a new GetCoachingAppointmentStatusesParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentStatusesParamsWithHTTPClient

func NewGetCoachingAppointmentStatusesParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentStatusesParams

NewGetCoachingAppointmentStatusesParamsWithHTTPClient creates a new GetCoachingAppointmentStatusesParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentStatusesParamsWithTimeout

func NewGetCoachingAppointmentStatusesParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentStatusesParams

NewGetCoachingAppointmentStatusesParamsWithTimeout creates a new GetCoachingAppointmentStatusesParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentStatusesParams) SetAppointmentID

func (o *GetCoachingAppointmentStatusesParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) SetContext

SetContext adds the context to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) SetDefaults

func (o *GetCoachingAppointmentStatusesParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointment statuses params (not the query body).

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

func (*GetCoachingAppointmentStatusesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) SetPageNumber

func (o *GetCoachingAppointmentStatusesParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) SetPageSize

func (o *GetCoachingAppointmentStatusesParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithContext

WithContext adds the context to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointment statuses params (not the query body).

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

func (*GetCoachingAppointmentStatusesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithPageNumber

WithPageNumber adds the pageNumber to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithPageSize

WithPageSize adds the pageSize to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointment statuses params

func (*GetCoachingAppointmentStatusesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentStatusesReader

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

GetCoachingAppointmentStatusesReader is a Reader for the GetCoachingAppointmentStatuses structure.

func (*GetCoachingAppointmentStatusesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentStatusesRequestEntityTooLarge

type GetCoachingAppointmentStatusesRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentStatusesRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentStatusesRequestEntityTooLarge

func NewGetCoachingAppointmentStatusesRequestEntityTooLarge() *GetCoachingAppointmentStatusesRequestEntityTooLarge

NewGetCoachingAppointmentStatusesRequestEntityTooLarge creates a GetCoachingAppointmentStatusesRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) Error

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointment statuses request entity too large response has a 4xx status code

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointment statuses request entity too large response a status code equal to that given

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointment statuses request entity too large response has a 3xx status code

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointment statuses request entity too large response has a 5xx status code

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointment statuses request entity too large response has a 2xx status code

func (*GetCoachingAppointmentStatusesRequestEntityTooLarge) String

type GetCoachingAppointmentStatusesRequestTimeout

type GetCoachingAppointmentStatusesRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentStatusesRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentStatusesRequestTimeout

func NewGetCoachingAppointmentStatusesRequestTimeout() *GetCoachingAppointmentStatusesRequestTimeout

NewGetCoachingAppointmentStatusesRequestTimeout creates a GetCoachingAppointmentStatusesRequestTimeout with default headers values

func (*GetCoachingAppointmentStatusesRequestTimeout) Error

func (*GetCoachingAppointmentStatusesRequestTimeout) GetPayload

func (*GetCoachingAppointmentStatusesRequestTimeout) IsClientError

IsClientError returns true when this get coaching appointment statuses request timeout response has a 4xx status code

func (*GetCoachingAppointmentStatusesRequestTimeout) IsCode

IsCode returns true when this get coaching appointment statuses request timeout response a status code equal to that given

func (*GetCoachingAppointmentStatusesRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointment statuses request timeout response has a 3xx status code

func (*GetCoachingAppointmentStatusesRequestTimeout) IsServerError

IsServerError returns true when this get coaching appointment statuses request timeout response has a 5xx status code

func (*GetCoachingAppointmentStatusesRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointment statuses request timeout response has a 2xx status code

func (*GetCoachingAppointmentStatusesRequestTimeout) String

type GetCoachingAppointmentStatusesServiceUnavailable

type GetCoachingAppointmentStatusesServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentStatusesServiceUnavailable

func NewGetCoachingAppointmentStatusesServiceUnavailable() *GetCoachingAppointmentStatusesServiceUnavailable

NewGetCoachingAppointmentStatusesServiceUnavailable creates a GetCoachingAppointmentStatusesServiceUnavailable with default headers values

func (*GetCoachingAppointmentStatusesServiceUnavailable) Error

func (*GetCoachingAppointmentStatusesServiceUnavailable) GetPayload

func (*GetCoachingAppointmentStatusesServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointment statuses service unavailable response has a 4xx status code

func (*GetCoachingAppointmentStatusesServiceUnavailable) IsCode

IsCode returns true when this get coaching appointment statuses service unavailable response a status code equal to that given

func (*GetCoachingAppointmentStatusesServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointment statuses service unavailable response has a 3xx status code

func (*GetCoachingAppointmentStatusesServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointment statuses service unavailable response has a 5xx status code

func (*GetCoachingAppointmentStatusesServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointment statuses service unavailable response has a 2xx status code

func (*GetCoachingAppointmentStatusesServiceUnavailable) String

type GetCoachingAppointmentStatusesTooManyRequests

type GetCoachingAppointmentStatusesTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentStatusesTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentStatusesTooManyRequests

func NewGetCoachingAppointmentStatusesTooManyRequests() *GetCoachingAppointmentStatusesTooManyRequests

NewGetCoachingAppointmentStatusesTooManyRequests creates a GetCoachingAppointmentStatusesTooManyRequests with default headers values

func (*GetCoachingAppointmentStatusesTooManyRequests) Error

func (*GetCoachingAppointmentStatusesTooManyRequests) GetPayload

func (*GetCoachingAppointmentStatusesTooManyRequests) IsClientError

IsClientError returns true when this get coaching appointment statuses too many requests response has a 4xx status code

func (*GetCoachingAppointmentStatusesTooManyRequests) IsCode

IsCode returns true when this get coaching appointment statuses too many requests response a status code equal to that given

func (*GetCoachingAppointmentStatusesTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointment statuses too many requests response has a 3xx status code

func (*GetCoachingAppointmentStatusesTooManyRequests) IsServerError

IsServerError returns true when this get coaching appointment statuses too many requests response has a 5xx status code

func (*GetCoachingAppointmentStatusesTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointment statuses too many requests response has a 2xx status code

func (*GetCoachingAppointmentStatusesTooManyRequests) String

type GetCoachingAppointmentStatusesUnauthorized

type GetCoachingAppointmentStatusesUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentStatusesUnauthorized

func NewGetCoachingAppointmentStatusesUnauthorized() *GetCoachingAppointmentStatusesUnauthorized

NewGetCoachingAppointmentStatusesUnauthorized creates a GetCoachingAppointmentStatusesUnauthorized with default headers values

func (*GetCoachingAppointmentStatusesUnauthorized) Error

func (*GetCoachingAppointmentStatusesUnauthorized) GetPayload

func (*GetCoachingAppointmentStatusesUnauthorized) IsClientError

IsClientError returns true when this get coaching appointment statuses unauthorized response has a 4xx status code

func (*GetCoachingAppointmentStatusesUnauthorized) IsCode

IsCode returns true when this get coaching appointment statuses unauthorized response a status code equal to that given

func (*GetCoachingAppointmentStatusesUnauthorized) IsRedirect

IsRedirect returns true when this get coaching appointment statuses unauthorized response has a 3xx status code

func (*GetCoachingAppointmentStatusesUnauthorized) IsServerError

IsServerError returns true when this get coaching appointment statuses unauthorized response has a 5xx status code

func (*GetCoachingAppointmentStatusesUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointment statuses unauthorized response has a 2xx status code

func (*GetCoachingAppointmentStatusesUnauthorized) String

type GetCoachingAppointmentStatusesUnsupportedMediaType

type GetCoachingAppointmentStatusesUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentStatusesUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentStatusesUnsupportedMediaType

func NewGetCoachingAppointmentStatusesUnsupportedMediaType() *GetCoachingAppointmentStatusesUnsupportedMediaType

NewGetCoachingAppointmentStatusesUnsupportedMediaType creates a GetCoachingAppointmentStatusesUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) Error

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointment statuses unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointment statuses unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointment statuses unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointment statuses unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointment statuses unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentStatusesUnsupportedMediaType) String

type GetCoachingAppointmentTooManyRequests

type GetCoachingAppointmentTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentTooManyRequests

func NewGetCoachingAppointmentTooManyRequests() *GetCoachingAppointmentTooManyRequests

NewGetCoachingAppointmentTooManyRequests creates a GetCoachingAppointmentTooManyRequests with default headers values

func (*GetCoachingAppointmentTooManyRequests) Error

func (*GetCoachingAppointmentTooManyRequests) GetPayload

func (*GetCoachingAppointmentTooManyRequests) IsClientError

func (o *GetCoachingAppointmentTooManyRequests) IsClientError() bool

IsClientError returns true when this get coaching appointment too many requests response has a 4xx status code

func (*GetCoachingAppointmentTooManyRequests) IsCode

IsCode returns true when this get coaching appointment too many requests response a status code equal to that given

func (*GetCoachingAppointmentTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointment too many requests response has a 3xx status code

func (*GetCoachingAppointmentTooManyRequests) IsServerError

func (o *GetCoachingAppointmentTooManyRequests) IsServerError() bool

IsServerError returns true when this get coaching appointment too many requests response has a 5xx status code

func (*GetCoachingAppointmentTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointment too many requests response has a 2xx status code

func (*GetCoachingAppointmentTooManyRequests) String

type GetCoachingAppointmentUnauthorized

type GetCoachingAppointmentUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentUnauthorized

func NewGetCoachingAppointmentUnauthorized() *GetCoachingAppointmentUnauthorized

NewGetCoachingAppointmentUnauthorized creates a GetCoachingAppointmentUnauthorized with default headers values

func (*GetCoachingAppointmentUnauthorized) Error

func (*GetCoachingAppointmentUnauthorized) GetPayload

func (*GetCoachingAppointmentUnauthorized) IsClientError

func (o *GetCoachingAppointmentUnauthorized) IsClientError() bool

IsClientError returns true when this get coaching appointment unauthorized response has a 4xx status code

func (*GetCoachingAppointmentUnauthorized) IsCode

IsCode returns true when this get coaching appointment unauthorized response a status code equal to that given

func (*GetCoachingAppointmentUnauthorized) IsRedirect

func (o *GetCoachingAppointmentUnauthorized) IsRedirect() bool

IsRedirect returns true when this get coaching appointment unauthorized response has a 3xx status code

func (*GetCoachingAppointmentUnauthorized) IsServerError

func (o *GetCoachingAppointmentUnauthorized) IsServerError() bool

IsServerError returns true when this get coaching appointment unauthorized response has a 5xx status code

func (*GetCoachingAppointmentUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointment unauthorized response has a 2xx status code

func (*GetCoachingAppointmentUnauthorized) String

type GetCoachingAppointmentUnsupportedMediaType

type GetCoachingAppointmentUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentUnsupportedMediaType

func NewGetCoachingAppointmentUnsupportedMediaType() *GetCoachingAppointmentUnsupportedMediaType

NewGetCoachingAppointmentUnsupportedMediaType creates a GetCoachingAppointmentUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentUnsupportedMediaType) Error

func (*GetCoachingAppointmentUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointment unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointment unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointment unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointment unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointment unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentUnsupportedMediaType) String

type GetCoachingAppointmentsBadRequest

type GetCoachingAppointmentsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentsBadRequest

func NewGetCoachingAppointmentsBadRequest() *GetCoachingAppointmentsBadRequest

NewGetCoachingAppointmentsBadRequest creates a GetCoachingAppointmentsBadRequest with default headers values

func (*GetCoachingAppointmentsBadRequest) Error

func (*GetCoachingAppointmentsBadRequest) GetPayload

func (*GetCoachingAppointmentsBadRequest) IsClientError

func (o *GetCoachingAppointmentsBadRequest) IsClientError() bool

IsClientError returns true when this get coaching appointments bad request response has a 4xx status code

func (*GetCoachingAppointmentsBadRequest) IsCode

func (o *GetCoachingAppointmentsBadRequest) IsCode(code int) bool

IsCode returns true when this get coaching appointments bad request response a status code equal to that given

func (*GetCoachingAppointmentsBadRequest) IsRedirect

func (o *GetCoachingAppointmentsBadRequest) IsRedirect() bool

IsRedirect returns true when this get coaching appointments bad request response has a 3xx status code

func (*GetCoachingAppointmentsBadRequest) IsServerError

func (o *GetCoachingAppointmentsBadRequest) IsServerError() bool

IsServerError returns true when this get coaching appointments bad request response has a 5xx status code

func (*GetCoachingAppointmentsBadRequest) IsSuccess

func (o *GetCoachingAppointmentsBadRequest) IsSuccess() bool

IsSuccess returns true when this get coaching appointments bad request response has a 2xx status code

func (*GetCoachingAppointmentsBadRequest) String

type GetCoachingAppointmentsForbidden

type GetCoachingAppointmentsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentsForbidden

func NewGetCoachingAppointmentsForbidden() *GetCoachingAppointmentsForbidden

NewGetCoachingAppointmentsForbidden creates a GetCoachingAppointmentsForbidden with default headers values

func (*GetCoachingAppointmentsForbidden) Error

func (*GetCoachingAppointmentsForbidden) GetPayload

func (*GetCoachingAppointmentsForbidden) IsClientError

func (o *GetCoachingAppointmentsForbidden) IsClientError() bool

IsClientError returns true when this get coaching appointments forbidden response has a 4xx status code

func (*GetCoachingAppointmentsForbidden) IsCode

func (o *GetCoachingAppointmentsForbidden) IsCode(code int) bool

IsCode returns true when this get coaching appointments forbidden response a status code equal to that given

func (*GetCoachingAppointmentsForbidden) IsRedirect

func (o *GetCoachingAppointmentsForbidden) IsRedirect() bool

IsRedirect returns true when this get coaching appointments forbidden response has a 3xx status code

func (*GetCoachingAppointmentsForbidden) IsServerError

func (o *GetCoachingAppointmentsForbidden) IsServerError() bool

IsServerError returns true when this get coaching appointments forbidden response has a 5xx status code

func (*GetCoachingAppointmentsForbidden) IsSuccess

func (o *GetCoachingAppointmentsForbidden) IsSuccess() bool

IsSuccess returns true when this get coaching appointments forbidden response has a 2xx status code

func (*GetCoachingAppointmentsForbidden) String

type GetCoachingAppointmentsGatewayTimeout

type GetCoachingAppointmentsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentsGatewayTimeout

func NewGetCoachingAppointmentsGatewayTimeout() *GetCoachingAppointmentsGatewayTimeout

NewGetCoachingAppointmentsGatewayTimeout creates a GetCoachingAppointmentsGatewayTimeout with default headers values

func (*GetCoachingAppointmentsGatewayTimeout) Error

func (*GetCoachingAppointmentsGatewayTimeout) GetPayload

func (*GetCoachingAppointmentsGatewayTimeout) IsClientError

func (o *GetCoachingAppointmentsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointments gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentsGatewayTimeout) IsCode

IsCode returns true when this get coaching appointments gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentsGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointments gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentsGatewayTimeout) IsServerError

func (o *GetCoachingAppointmentsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointments gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentsGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointments gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentsGatewayTimeout) String

type GetCoachingAppointmentsInternalServerError

type GetCoachingAppointmentsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentsInternalServerError

func NewGetCoachingAppointmentsInternalServerError() *GetCoachingAppointmentsInternalServerError

NewGetCoachingAppointmentsInternalServerError creates a GetCoachingAppointmentsInternalServerError with default headers values

func (*GetCoachingAppointmentsInternalServerError) Error

func (*GetCoachingAppointmentsInternalServerError) GetPayload

func (*GetCoachingAppointmentsInternalServerError) IsClientError

IsClientError returns true when this get coaching appointments internal server error response has a 4xx status code

func (*GetCoachingAppointmentsInternalServerError) IsCode

IsCode returns true when this get coaching appointments internal server error response a status code equal to that given

func (*GetCoachingAppointmentsInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointments internal server error response has a 3xx status code

func (*GetCoachingAppointmentsInternalServerError) IsServerError

IsServerError returns true when this get coaching appointments internal server error response has a 5xx status code

func (*GetCoachingAppointmentsInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointments internal server error response has a 2xx status code

func (*GetCoachingAppointmentsInternalServerError) String

type GetCoachingAppointmentsMeBadRequest

type GetCoachingAppointmentsMeBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingAppointmentsMeBadRequest

func NewGetCoachingAppointmentsMeBadRequest() *GetCoachingAppointmentsMeBadRequest

NewGetCoachingAppointmentsMeBadRequest creates a GetCoachingAppointmentsMeBadRequest with default headers values

func (*GetCoachingAppointmentsMeBadRequest) Error

func (*GetCoachingAppointmentsMeBadRequest) GetPayload

func (*GetCoachingAppointmentsMeBadRequest) IsClientError

func (o *GetCoachingAppointmentsMeBadRequest) IsClientError() bool

IsClientError returns true when this get coaching appointments me bad request response has a 4xx status code

func (*GetCoachingAppointmentsMeBadRequest) IsCode

IsCode returns true when this get coaching appointments me bad request response a status code equal to that given

func (*GetCoachingAppointmentsMeBadRequest) IsRedirect

func (o *GetCoachingAppointmentsMeBadRequest) IsRedirect() bool

IsRedirect returns true when this get coaching appointments me bad request response has a 3xx status code

func (*GetCoachingAppointmentsMeBadRequest) IsServerError

func (o *GetCoachingAppointmentsMeBadRequest) IsServerError() bool

IsServerError returns true when this get coaching appointments me bad request response has a 5xx status code

func (*GetCoachingAppointmentsMeBadRequest) IsSuccess

IsSuccess returns true when this get coaching appointments me bad request response has a 2xx status code

func (*GetCoachingAppointmentsMeBadRequest) String

type GetCoachingAppointmentsMeForbidden

type GetCoachingAppointmentsMeForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingAppointmentsMeForbidden

func NewGetCoachingAppointmentsMeForbidden() *GetCoachingAppointmentsMeForbidden

NewGetCoachingAppointmentsMeForbidden creates a GetCoachingAppointmentsMeForbidden with default headers values

func (*GetCoachingAppointmentsMeForbidden) Error

func (*GetCoachingAppointmentsMeForbidden) GetPayload

func (*GetCoachingAppointmentsMeForbidden) IsClientError

func (o *GetCoachingAppointmentsMeForbidden) IsClientError() bool

IsClientError returns true when this get coaching appointments me forbidden response has a 4xx status code

func (*GetCoachingAppointmentsMeForbidden) IsCode

IsCode returns true when this get coaching appointments me forbidden response a status code equal to that given

func (*GetCoachingAppointmentsMeForbidden) IsRedirect

func (o *GetCoachingAppointmentsMeForbidden) IsRedirect() bool

IsRedirect returns true when this get coaching appointments me forbidden response has a 3xx status code

func (*GetCoachingAppointmentsMeForbidden) IsServerError

func (o *GetCoachingAppointmentsMeForbidden) IsServerError() bool

IsServerError returns true when this get coaching appointments me forbidden response has a 5xx status code

func (*GetCoachingAppointmentsMeForbidden) IsSuccess

IsSuccess returns true when this get coaching appointments me forbidden response has a 2xx status code

func (*GetCoachingAppointmentsMeForbidden) String

type GetCoachingAppointmentsMeGatewayTimeout

type GetCoachingAppointmentsMeGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingAppointmentsMeGatewayTimeout

func NewGetCoachingAppointmentsMeGatewayTimeout() *GetCoachingAppointmentsMeGatewayTimeout

NewGetCoachingAppointmentsMeGatewayTimeout creates a GetCoachingAppointmentsMeGatewayTimeout with default headers values

func (*GetCoachingAppointmentsMeGatewayTimeout) Error

func (*GetCoachingAppointmentsMeGatewayTimeout) GetPayload

func (*GetCoachingAppointmentsMeGatewayTimeout) IsClientError

func (o *GetCoachingAppointmentsMeGatewayTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointments me gateway timeout response has a 4xx status code

func (*GetCoachingAppointmentsMeGatewayTimeout) IsCode

IsCode returns true when this get coaching appointments me gateway timeout response a status code equal to that given

func (*GetCoachingAppointmentsMeGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching appointments me gateway timeout response has a 3xx status code

func (*GetCoachingAppointmentsMeGatewayTimeout) IsServerError

func (o *GetCoachingAppointmentsMeGatewayTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointments me gateway timeout response has a 5xx status code

func (*GetCoachingAppointmentsMeGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching appointments me gateway timeout response has a 2xx status code

func (*GetCoachingAppointmentsMeGatewayTimeout) String

type GetCoachingAppointmentsMeInternalServerError

type GetCoachingAppointmentsMeInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingAppointmentsMeInternalServerError

func NewGetCoachingAppointmentsMeInternalServerError() *GetCoachingAppointmentsMeInternalServerError

NewGetCoachingAppointmentsMeInternalServerError creates a GetCoachingAppointmentsMeInternalServerError with default headers values

func (*GetCoachingAppointmentsMeInternalServerError) Error

func (*GetCoachingAppointmentsMeInternalServerError) GetPayload

func (*GetCoachingAppointmentsMeInternalServerError) IsClientError

IsClientError returns true when this get coaching appointments me internal server error response has a 4xx status code

func (*GetCoachingAppointmentsMeInternalServerError) IsCode

IsCode returns true when this get coaching appointments me internal server error response a status code equal to that given

func (*GetCoachingAppointmentsMeInternalServerError) IsRedirect

IsRedirect returns true when this get coaching appointments me internal server error response has a 3xx status code

func (*GetCoachingAppointmentsMeInternalServerError) IsServerError

IsServerError returns true when this get coaching appointments me internal server error response has a 5xx status code

func (*GetCoachingAppointmentsMeInternalServerError) IsSuccess

IsSuccess returns true when this get coaching appointments me internal server error response has a 2xx status code

func (*GetCoachingAppointmentsMeInternalServerError) String

type GetCoachingAppointmentsMeNotFound

type GetCoachingAppointmentsMeNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentsMeNotFound

func NewGetCoachingAppointmentsMeNotFound() *GetCoachingAppointmentsMeNotFound

NewGetCoachingAppointmentsMeNotFound creates a GetCoachingAppointmentsMeNotFound with default headers values

func (*GetCoachingAppointmentsMeNotFound) Error

func (*GetCoachingAppointmentsMeNotFound) GetPayload

func (*GetCoachingAppointmentsMeNotFound) IsClientError

func (o *GetCoachingAppointmentsMeNotFound) IsClientError() bool

IsClientError returns true when this get coaching appointments me not found response has a 4xx status code

func (*GetCoachingAppointmentsMeNotFound) IsCode

func (o *GetCoachingAppointmentsMeNotFound) IsCode(code int) bool

IsCode returns true when this get coaching appointments me not found response a status code equal to that given

func (*GetCoachingAppointmentsMeNotFound) IsRedirect

func (o *GetCoachingAppointmentsMeNotFound) IsRedirect() bool

IsRedirect returns true when this get coaching appointments me not found response has a 3xx status code

func (*GetCoachingAppointmentsMeNotFound) IsServerError

func (o *GetCoachingAppointmentsMeNotFound) IsServerError() bool

IsServerError returns true when this get coaching appointments me not found response has a 5xx status code

func (*GetCoachingAppointmentsMeNotFound) IsSuccess

func (o *GetCoachingAppointmentsMeNotFound) IsSuccess() bool

IsSuccess returns true when this get coaching appointments me not found response has a 2xx status code

func (*GetCoachingAppointmentsMeNotFound) String

type GetCoachingAppointmentsMeOK

type GetCoachingAppointmentsMeOK struct {
	Payload *models.CoachingAppointmentResponseList
}

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

Get my coaching appointments successful

func NewGetCoachingAppointmentsMeOK

func NewGetCoachingAppointmentsMeOK() *GetCoachingAppointmentsMeOK

NewGetCoachingAppointmentsMeOK creates a GetCoachingAppointmentsMeOK with default headers values

func (*GetCoachingAppointmentsMeOK) Error

func (*GetCoachingAppointmentsMeOK) GetPayload

func (*GetCoachingAppointmentsMeOK) IsClientError

func (o *GetCoachingAppointmentsMeOK) IsClientError() bool

IsClientError returns true when this get coaching appointments me o k response has a 4xx status code

func (*GetCoachingAppointmentsMeOK) IsCode

func (o *GetCoachingAppointmentsMeOK) IsCode(code int) bool

IsCode returns true when this get coaching appointments me o k response a status code equal to that given

func (*GetCoachingAppointmentsMeOK) IsRedirect

func (o *GetCoachingAppointmentsMeOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointments me o k response has a 3xx status code

func (*GetCoachingAppointmentsMeOK) IsServerError

func (o *GetCoachingAppointmentsMeOK) IsServerError() bool

IsServerError returns true when this get coaching appointments me o k response has a 5xx status code

func (*GetCoachingAppointmentsMeOK) IsSuccess

func (o *GetCoachingAppointmentsMeOK) IsSuccess() bool

IsSuccess returns true when this get coaching appointments me o k response has a 2xx status code

func (*GetCoachingAppointmentsMeOK) String

func (o *GetCoachingAppointmentsMeOK) String() string

type GetCoachingAppointmentsMeParams

type GetCoachingAppointmentsMeParams struct {

	/* CompletionInterval.

	   Appointment completion start and end to filter by. End date is not inclusive. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss

	   Format: interval
	*/
	CompletionInterval *string

	/* FacilitatorIds.

	   The facilitator IDs for which to retrieve appointments
	*/
	FacilitatorIds []string

	/* Interval.

	   Interval to filter data by. End date is not inclusive. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss

	   Format: interval
	*/
	Interval *string

	/* IntervalCondition.

	   Filter condition for interval
	*/
	IntervalCondition *string

	/* Overdue.

	   Overdue status to filter by
	*/
	Overdue *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* Relationships.

	   Relationships to filter by
	*/
	Relationships []string

	/* SortOrder.

	   Sort (by due date) either Asc or Desc
	*/
	SortOrder *string

	/* Statuses.

	   Appointment Statuses to filter by
	*/
	Statuses []string

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

GetCoachingAppointmentsMeParams contains all the parameters to send to the API endpoint

for the get coaching appointments me operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentsMeParams

func NewGetCoachingAppointmentsMeParams() *GetCoachingAppointmentsMeParams

NewGetCoachingAppointmentsMeParams creates a new GetCoachingAppointmentsMeParams 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 NewGetCoachingAppointmentsMeParamsWithContext

func NewGetCoachingAppointmentsMeParamsWithContext(ctx context.Context) *GetCoachingAppointmentsMeParams

NewGetCoachingAppointmentsMeParamsWithContext creates a new GetCoachingAppointmentsMeParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentsMeParamsWithHTTPClient

func NewGetCoachingAppointmentsMeParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentsMeParams

NewGetCoachingAppointmentsMeParamsWithHTTPClient creates a new GetCoachingAppointmentsMeParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentsMeParamsWithTimeout

func NewGetCoachingAppointmentsMeParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentsMeParams

NewGetCoachingAppointmentsMeParamsWithTimeout creates a new GetCoachingAppointmentsMeParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentsMeParams) SetCompletionInterval

func (o *GetCoachingAppointmentsMeParams) SetCompletionInterval(completionInterval *string)

SetCompletionInterval adds the completionInterval to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetContext

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

SetContext adds the context to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetDefaults

func (o *GetCoachingAppointmentsMeParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointments me params (not the query body).

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

func (*GetCoachingAppointmentsMeParams) SetFacilitatorIds

func (o *GetCoachingAppointmentsMeParams) SetFacilitatorIds(facilitatorIds []string)

SetFacilitatorIds adds the facilitatorIds to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetInterval

func (o *GetCoachingAppointmentsMeParams) SetInterval(interval *string)

SetInterval adds the interval to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetIntervalCondition

func (o *GetCoachingAppointmentsMeParams) SetIntervalCondition(intervalCondition *string)

SetIntervalCondition adds the intervalCondition to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetOverdue

func (o *GetCoachingAppointmentsMeParams) SetOverdue(overdue *string)

SetOverdue adds the overdue to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetPageNumber

func (o *GetCoachingAppointmentsMeParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetPageSize

func (o *GetCoachingAppointmentsMeParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetRelationships

func (o *GetCoachingAppointmentsMeParams) SetRelationships(relationships []string)

SetRelationships adds the relationships to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetSortOrder

func (o *GetCoachingAppointmentsMeParams) SetSortOrder(sortOrder *string)

SetSortOrder adds the sortOrder to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetStatuses

func (o *GetCoachingAppointmentsMeParams) SetStatuses(statuses []string)

SetStatuses adds the statuses to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithCompletionInterval

func (o *GetCoachingAppointmentsMeParams) WithCompletionInterval(completionInterval *string) *GetCoachingAppointmentsMeParams

WithCompletionInterval adds the completionInterval to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithContext

WithContext adds the context to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointments me params (not the query body).

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

func (*GetCoachingAppointmentsMeParams) WithFacilitatorIds

func (o *GetCoachingAppointmentsMeParams) WithFacilitatorIds(facilitatorIds []string) *GetCoachingAppointmentsMeParams

WithFacilitatorIds adds the facilitatorIds to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithInterval

WithInterval adds the interval to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithIntervalCondition

func (o *GetCoachingAppointmentsMeParams) WithIntervalCondition(intervalCondition *string) *GetCoachingAppointmentsMeParams

WithIntervalCondition adds the intervalCondition to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithOverdue

WithOverdue adds the overdue to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithPageNumber

WithPageNumber adds the pageNumber to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithPageSize

WithPageSize adds the pageSize to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithRelationships

func (o *GetCoachingAppointmentsMeParams) WithRelationships(relationships []string) *GetCoachingAppointmentsMeParams

WithRelationships adds the relationships to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithSortOrder

WithSortOrder adds the sortOrder to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithStatuses

WithStatuses adds the statuses to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointments me params

func (*GetCoachingAppointmentsMeParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentsMeReader

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

GetCoachingAppointmentsMeReader is a Reader for the GetCoachingAppointmentsMe structure.

func (*GetCoachingAppointmentsMeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentsMeRequestEntityTooLarge

type GetCoachingAppointmentsMeRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsMeRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentsMeRequestEntityTooLarge

func NewGetCoachingAppointmentsMeRequestEntityTooLarge() *GetCoachingAppointmentsMeRequestEntityTooLarge

NewGetCoachingAppointmentsMeRequestEntityTooLarge creates a GetCoachingAppointmentsMeRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) Error

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointments me request entity too large response has a 4xx status code

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointments me request entity too large response a status code equal to that given

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointments me request entity too large response has a 3xx status code

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointments me request entity too large response has a 5xx status code

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointments me request entity too large response has a 2xx status code

func (*GetCoachingAppointmentsMeRequestEntityTooLarge) String

type GetCoachingAppointmentsMeRequestTimeout

type GetCoachingAppointmentsMeRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsMeRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentsMeRequestTimeout

func NewGetCoachingAppointmentsMeRequestTimeout() *GetCoachingAppointmentsMeRequestTimeout

NewGetCoachingAppointmentsMeRequestTimeout creates a GetCoachingAppointmentsMeRequestTimeout with default headers values

func (*GetCoachingAppointmentsMeRequestTimeout) Error

func (*GetCoachingAppointmentsMeRequestTimeout) GetPayload

func (*GetCoachingAppointmentsMeRequestTimeout) IsClientError

func (o *GetCoachingAppointmentsMeRequestTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointments me request timeout response has a 4xx status code

func (*GetCoachingAppointmentsMeRequestTimeout) IsCode

IsCode returns true when this get coaching appointments me request timeout response a status code equal to that given

func (*GetCoachingAppointmentsMeRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointments me request timeout response has a 3xx status code

func (*GetCoachingAppointmentsMeRequestTimeout) IsServerError

func (o *GetCoachingAppointmentsMeRequestTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointments me request timeout response has a 5xx status code

func (*GetCoachingAppointmentsMeRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointments me request timeout response has a 2xx status code

func (*GetCoachingAppointmentsMeRequestTimeout) String

type GetCoachingAppointmentsMeServiceUnavailable

type GetCoachingAppointmentsMeServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentsMeServiceUnavailable

func NewGetCoachingAppointmentsMeServiceUnavailable() *GetCoachingAppointmentsMeServiceUnavailable

NewGetCoachingAppointmentsMeServiceUnavailable creates a GetCoachingAppointmentsMeServiceUnavailable with default headers values

func (*GetCoachingAppointmentsMeServiceUnavailable) Error

func (*GetCoachingAppointmentsMeServiceUnavailable) GetPayload

func (*GetCoachingAppointmentsMeServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointments me service unavailable response has a 4xx status code

func (*GetCoachingAppointmentsMeServiceUnavailable) IsCode

IsCode returns true when this get coaching appointments me service unavailable response a status code equal to that given

func (*GetCoachingAppointmentsMeServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointments me service unavailable response has a 3xx status code

func (*GetCoachingAppointmentsMeServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointments me service unavailable response has a 5xx status code

func (*GetCoachingAppointmentsMeServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointments me service unavailable response has a 2xx status code

func (*GetCoachingAppointmentsMeServiceUnavailable) String

type GetCoachingAppointmentsMeTooManyRequests

type GetCoachingAppointmentsMeTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsMeTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentsMeTooManyRequests

func NewGetCoachingAppointmentsMeTooManyRequests() *GetCoachingAppointmentsMeTooManyRequests

NewGetCoachingAppointmentsMeTooManyRequests creates a GetCoachingAppointmentsMeTooManyRequests with default headers values

func (*GetCoachingAppointmentsMeTooManyRequests) Error

func (*GetCoachingAppointmentsMeTooManyRequests) GetPayload

func (*GetCoachingAppointmentsMeTooManyRequests) IsClientError

IsClientError returns true when this get coaching appointments me too many requests response has a 4xx status code

func (*GetCoachingAppointmentsMeTooManyRequests) IsCode

IsCode returns true when this get coaching appointments me too many requests response a status code equal to that given

func (*GetCoachingAppointmentsMeTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointments me too many requests response has a 3xx status code

func (*GetCoachingAppointmentsMeTooManyRequests) IsServerError

IsServerError returns true when this get coaching appointments me too many requests response has a 5xx status code

func (*GetCoachingAppointmentsMeTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointments me too many requests response has a 2xx status code

func (*GetCoachingAppointmentsMeTooManyRequests) String

type GetCoachingAppointmentsMeUnauthorized

type GetCoachingAppointmentsMeUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentsMeUnauthorized

func NewGetCoachingAppointmentsMeUnauthorized() *GetCoachingAppointmentsMeUnauthorized

NewGetCoachingAppointmentsMeUnauthorized creates a GetCoachingAppointmentsMeUnauthorized with default headers values

func (*GetCoachingAppointmentsMeUnauthorized) Error

func (*GetCoachingAppointmentsMeUnauthorized) GetPayload

func (*GetCoachingAppointmentsMeUnauthorized) IsClientError

func (o *GetCoachingAppointmentsMeUnauthorized) IsClientError() bool

IsClientError returns true when this get coaching appointments me unauthorized response has a 4xx status code

func (*GetCoachingAppointmentsMeUnauthorized) IsCode

IsCode returns true when this get coaching appointments me unauthorized response a status code equal to that given

func (*GetCoachingAppointmentsMeUnauthorized) IsRedirect

IsRedirect returns true when this get coaching appointments me unauthorized response has a 3xx status code

func (*GetCoachingAppointmentsMeUnauthorized) IsServerError

func (o *GetCoachingAppointmentsMeUnauthorized) IsServerError() bool

IsServerError returns true when this get coaching appointments me unauthorized response has a 5xx status code

func (*GetCoachingAppointmentsMeUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointments me unauthorized response has a 2xx status code

func (*GetCoachingAppointmentsMeUnauthorized) String

type GetCoachingAppointmentsMeUnsupportedMediaType

type GetCoachingAppointmentsMeUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsMeUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentsMeUnsupportedMediaType

func NewGetCoachingAppointmentsMeUnsupportedMediaType() *GetCoachingAppointmentsMeUnsupportedMediaType

NewGetCoachingAppointmentsMeUnsupportedMediaType creates a GetCoachingAppointmentsMeUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentsMeUnsupportedMediaType) Error

func (*GetCoachingAppointmentsMeUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentsMeUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointments me unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentsMeUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointments me unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentsMeUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointments me unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentsMeUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointments me unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentsMeUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointments me unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentsMeUnsupportedMediaType) String

type GetCoachingAppointmentsNotFound

type GetCoachingAppointmentsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingAppointmentsNotFound

func NewGetCoachingAppointmentsNotFound() *GetCoachingAppointmentsNotFound

NewGetCoachingAppointmentsNotFound creates a GetCoachingAppointmentsNotFound with default headers values

func (*GetCoachingAppointmentsNotFound) Error

func (*GetCoachingAppointmentsNotFound) GetPayload

func (*GetCoachingAppointmentsNotFound) IsClientError

func (o *GetCoachingAppointmentsNotFound) IsClientError() bool

IsClientError returns true when this get coaching appointments not found response has a 4xx status code

func (*GetCoachingAppointmentsNotFound) IsCode

func (o *GetCoachingAppointmentsNotFound) IsCode(code int) bool

IsCode returns true when this get coaching appointments not found response a status code equal to that given

func (*GetCoachingAppointmentsNotFound) IsRedirect

func (o *GetCoachingAppointmentsNotFound) IsRedirect() bool

IsRedirect returns true when this get coaching appointments not found response has a 3xx status code

func (*GetCoachingAppointmentsNotFound) IsServerError

func (o *GetCoachingAppointmentsNotFound) IsServerError() bool

IsServerError returns true when this get coaching appointments not found response has a 5xx status code

func (*GetCoachingAppointmentsNotFound) IsSuccess

func (o *GetCoachingAppointmentsNotFound) IsSuccess() bool

IsSuccess returns true when this get coaching appointments not found response has a 2xx status code

func (*GetCoachingAppointmentsNotFound) String

type GetCoachingAppointmentsOK

type GetCoachingAppointmentsOK struct {
	Payload *models.CoachingAppointmentResponseList
}

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

Get users coaching appointments successful

func NewGetCoachingAppointmentsOK

func NewGetCoachingAppointmentsOK() *GetCoachingAppointmentsOK

NewGetCoachingAppointmentsOK creates a GetCoachingAppointmentsOK with default headers values

func (*GetCoachingAppointmentsOK) Error

func (o *GetCoachingAppointmentsOK) Error() string

func (*GetCoachingAppointmentsOK) GetPayload

func (*GetCoachingAppointmentsOK) IsClientError

func (o *GetCoachingAppointmentsOK) IsClientError() bool

IsClientError returns true when this get coaching appointments o k response has a 4xx status code

func (*GetCoachingAppointmentsOK) IsCode

func (o *GetCoachingAppointmentsOK) IsCode(code int) bool

IsCode returns true when this get coaching appointments o k response a status code equal to that given

func (*GetCoachingAppointmentsOK) IsRedirect

func (o *GetCoachingAppointmentsOK) IsRedirect() bool

IsRedirect returns true when this get coaching appointments o k response has a 3xx status code

func (*GetCoachingAppointmentsOK) IsServerError

func (o *GetCoachingAppointmentsOK) IsServerError() bool

IsServerError returns true when this get coaching appointments o k response has a 5xx status code

func (*GetCoachingAppointmentsOK) IsSuccess

func (o *GetCoachingAppointmentsOK) IsSuccess() bool

IsSuccess returns true when this get coaching appointments o k response has a 2xx status code

func (*GetCoachingAppointmentsOK) String

func (o *GetCoachingAppointmentsOK) String() string

type GetCoachingAppointmentsParams

type GetCoachingAppointmentsParams struct {

	/* CompletionInterval.

	   Appointment completion start and end to filter by. End date is not inclusive. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss

	   Format: interval
	*/
	CompletionInterval *string

	/* FacilitatorIds.

	   The facilitator IDs for which to retrieve appointments
	*/
	FacilitatorIds []string

	/* Interval.

	   Interval to filter data by. End date is not inclusive. Intervals are represented as an ISO-8601 string. For example: YYYY-MM-DDThh:mm:ss/YYYY-MM-DDThh:mm:ss

	   Format: interval
	*/
	Interval *string

	/* IntervalCondition.

	   Filter condition for interval
	*/
	IntervalCondition *string

	/* Overdue.

	   Overdue status to filter by
	*/
	Overdue *string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

	/* Relationships.

	   Relationships to filter by
	*/
	Relationships []string

	/* SortOrder.

	   Sort (by due date) either Asc or Desc
	*/
	SortOrder *string

	/* Statuses.

	   Appointment Statuses to filter by
	*/
	Statuses []string

	/* UserIds.

	   The user IDs for which to retrieve appointments
	*/
	UserIds []string

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

GetCoachingAppointmentsParams contains all the parameters to send to the API endpoint

for the get coaching appointments operation.

Typically these are written to a http.Request.

func NewGetCoachingAppointmentsParams

func NewGetCoachingAppointmentsParams() *GetCoachingAppointmentsParams

NewGetCoachingAppointmentsParams creates a new GetCoachingAppointmentsParams 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 NewGetCoachingAppointmentsParamsWithContext

func NewGetCoachingAppointmentsParamsWithContext(ctx context.Context) *GetCoachingAppointmentsParams

NewGetCoachingAppointmentsParamsWithContext creates a new GetCoachingAppointmentsParams object with the ability to set a context for a request.

func NewGetCoachingAppointmentsParamsWithHTTPClient

func NewGetCoachingAppointmentsParamsWithHTTPClient(client *http.Client) *GetCoachingAppointmentsParams

NewGetCoachingAppointmentsParamsWithHTTPClient creates a new GetCoachingAppointmentsParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingAppointmentsParamsWithTimeout

func NewGetCoachingAppointmentsParamsWithTimeout(timeout time.Duration) *GetCoachingAppointmentsParams

NewGetCoachingAppointmentsParamsWithTimeout creates a new GetCoachingAppointmentsParams object with the ability to set a timeout on a request.

func (*GetCoachingAppointmentsParams) SetCompletionInterval

func (o *GetCoachingAppointmentsParams) SetCompletionInterval(completionInterval *string)

SetCompletionInterval adds the completionInterval to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetContext

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

SetContext adds the context to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetDefaults

func (o *GetCoachingAppointmentsParams) SetDefaults()

SetDefaults hydrates default values in the get coaching appointments params (not the query body).

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

func (*GetCoachingAppointmentsParams) SetFacilitatorIds

func (o *GetCoachingAppointmentsParams) SetFacilitatorIds(facilitatorIds []string)

SetFacilitatorIds adds the facilitatorIds to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetInterval

func (o *GetCoachingAppointmentsParams) SetInterval(interval *string)

SetInterval adds the interval to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetIntervalCondition

func (o *GetCoachingAppointmentsParams) SetIntervalCondition(intervalCondition *string)

SetIntervalCondition adds the intervalCondition to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetOverdue

func (o *GetCoachingAppointmentsParams) SetOverdue(overdue *string)

SetOverdue adds the overdue to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetPageNumber

func (o *GetCoachingAppointmentsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetPageSize

func (o *GetCoachingAppointmentsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetRelationships

func (o *GetCoachingAppointmentsParams) SetRelationships(relationships []string)

SetRelationships adds the relationships to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetSortOrder

func (o *GetCoachingAppointmentsParams) SetSortOrder(sortOrder *string)

SetSortOrder adds the sortOrder to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetStatuses

func (o *GetCoachingAppointmentsParams) SetStatuses(statuses []string)

SetStatuses adds the statuses to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching appointments params

func (*GetCoachingAppointmentsParams) SetUserIds

func (o *GetCoachingAppointmentsParams) SetUserIds(userIds []string)

SetUserIds adds the userIds to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithCompletionInterval

func (o *GetCoachingAppointmentsParams) WithCompletionInterval(completionInterval *string) *GetCoachingAppointmentsParams

WithCompletionInterval adds the completionInterval to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithContext

WithContext adds the context to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithDefaults

WithDefaults hydrates default values in the get coaching appointments params (not the query body).

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

func (*GetCoachingAppointmentsParams) WithFacilitatorIds

func (o *GetCoachingAppointmentsParams) WithFacilitatorIds(facilitatorIds []string) *GetCoachingAppointmentsParams

WithFacilitatorIds adds the facilitatorIds to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithInterval

WithInterval adds the interval to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithIntervalCondition

func (o *GetCoachingAppointmentsParams) WithIntervalCondition(intervalCondition *string) *GetCoachingAppointmentsParams

WithIntervalCondition adds the intervalCondition to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithOverdue

WithOverdue adds the overdue to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithPageNumber

func (o *GetCoachingAppointmentsParams) WithPageNumber(pageNumber *int32) *GetCoachingAppointmentsParams

WithPageNumber adds the pageNumber to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithPageSize

WithPageSize adds the pageSize to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithRelationships

func (o *GetCoachingAppointmentsParams) WithRelationships(relationships []string) *GetCoachingAppointmentsParams

WithRelationships adds the relationships to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithSortOrder

WithSortOrder adds the sortOrder to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithStatuses

WithStatuses adds the statuses to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithTimeout

WithTimeout adds the timeout to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WithUserIds

WithUserIds adds the userIds to the get coaching appointments params

func (*GetCoachingAppointmentsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingAppointmentsReader

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

GetCoachingAppointmentsReader is a Reader for the GetCoachingAppointments structure.

func (*GetCoachingAppointmentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingAppointmentsRequestEntityTooLarge

type GetCoachingAppointmentsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingAppointmentsRequestEntityTooLarge

func NewGetCoachingAppointmentsRequestEntityTooLarge() *GetCoachingAppointmentsRequestEntityTooLarge

NewGetCoachingAppointmentsRequestEntityTooLarge creates a GetCoachingAppointmentsRequestEntityTooLarge with default headers values

func (*GetCoachingAppointmentsRequestEntityTooLarge) Error

func (*GetCoachingAppointmentsRequestEntityTooLarge) GetPayload

func (*GetCoachingAppointmentsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching appointments request entity too large response has a 4xx status code

func (*GetCoachingAppointmentsRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching appointments request entity too large response a status code equal to that given

func (*GetCoachingAppointmentsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching appointments request entity too large response has a 3xx status code

func (*GetCoachingAppointmentsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching appointments request entity too large response has a 5xx status code

func (*GetCoachingAppointmentsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching appointments request entity too large response has a 2xx status code

func (*GetCoachingAppointmentsRequestEntityTooLarge) String

type GetCoachingAppointmentsRequestTimeout

type GetCoachingAppointmentsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingAppointmentsRequestTimeout

func NewGetCoachingAppointmentsRequestTimeout() *GetCoachingAppointmentsRequestTimeout

NewGetCoachingAppointmentsRequestTimeout creates a GetCoachingAppointmentsRequestTimeout with default headers values

func (*GetCoachingAppointmentsRequestTimeout) Error

func (*GetCoachingAppointmentsRequestTimeout) GetPayload

func (*GetCoachingAppointmentsRequestTimeout) IsClientError

func (o *GetCoachingAppointmentsRequestTimeout) IsClientError() bool

IsClientError returns true when this get coaching appointments request timeout response has a 4xx status code

func (*GetCoachingAppointmentsRequestTimeout) IsCode

IsCode returns true when this get coaching appointments request timeout response a status code equal to that given

func (*GetCoachingAppointmentsRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching appointments request timeout response has a 3xx status code

func (*GetCoachingAppointmentsRequestTimeout) IsServerError

func (o *GetCoachingAppointmentsRequestTimeout) IsServerError() bool

IsServerError returns true when this get coaching appointments request timeout response has a 5xx status code

func (*GetCoachingAppointmentsRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching appointments request timeout response has a 2xx status code

func (*GetCoachingAppointmentsRequestTimeout) String

type GetCoachingAppointmentsServiceUnavailable

type GetCoachingAppointmentsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingAppointmentsServiceUnavailable

func NewGetCoachingAppointmentsServiceUnavailable() *GetCoachingAppointmentsServiceUnavailable

NewGetCoachingAppointmentsServiceUnavailable creates a GetCoachingAppointmentsServiceUnavailable with default headers values

func (*GetCoachingAppointmentsServiceUnavailable) Error

func (*GetCoachingAppointmentsServiceUnavailable) GetPayload

func (*GetCoachingAppointmentsServiceUnavailable) IsClientError

IsClientError returns true when this get coaching appointments service unavailable response has a 4xx status code

func (*GetCoachingAppointmentsServiceUnavailable) IsCode

IsCode returns true when this get coaching appointments service unavailable response a status code equal to that given

func (*GetCoachingAppointmentsServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching appointments service unavailable response has a 3xx status code

func (*GetCoachingAppointmentsServiceUnavailable) IsServerError

IsServerError returns true when this get coaching appointments service unavailable response has a 5xx status code

func (*GetCoachingAppointmentsServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching appointments service unavailable response has a 2xx status code

func (*GetCoachingAppointmentsServiceUnavailable) String

type GetCoachingAppointmentsTooManyRequests

type GetCoachingAppointmentsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingAppointmentsTooManyRequests

func NewGetCoachingAppointmentsTooManyRequests() *GetCoachingAppointmentsTooManyRequests

NewGetCoachingAppointmentsTooManyRequests creates a GetCoachingAppointmentsTooManyRequests with default headers values

func (*GetCoachingAppointmentsTooManyRequests) Error

func (*GetCoachingAppointmentsTooManyRequests) GetPayload

func (*GetCoachingAppointmentsTooManyRequests) IsClientError

func (o *GetCoachingAppointmentsTooManyRequests) IsClientError() bool

IsClientError returns true when this get coaching appointments too many requests response has a 4xx status code

func (*GetCoachingAppointmentsTooManyRequests) IsCode

IsCode returns true when this get coaching appointments too many requests response a status code equal to that given

func (*GetCoachingAppointmentsTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching appointments too many requests response has a 3xx status code

func (*GetCoachingAppointmentsTooManyRequests) IsServerError

func (o *GetCoachingAppointmentsTooManyRequests) IsServerError() bool

IsServerError returns true when this get coaching appointments too many requests response has a 5xx status code

func (*GetCoachingAppointmentsTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching appointments too many requests response has a 2xx status code

func (*GetCoachingAppointmentsTooManyRequests) String

type GetCoachingAppointmentsUnauthorized

type GetCoachingAppointmentsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingAppointmentsUnauthorized

func NewGetCoachingAppointmentsUnauthorized() *GetCoachingAppointmentsUnauthorized

NewGetCoachingAppointmentsUnauthorized creates a GetCoachingAppointmentsUnauthorized with default headers values

func (*GetCoachingAppointmentsUnauthorized) Error

func (*GetCoachingAppointmentsUnauthorized) GetPayload

func (*GetCoachingAppointmentsUnauthorized) IsClientError

func (o *GetCoachingAppointmentsUnauthorized) IsClientError() bool

IsClientError returns true when this get coaching appointments unauthorized response has a 4xx status code

func (*GetCoachingAppointmentsUnauthorized) IsCode

IsCode returns true when this get coaching appointments unauthorized response a status code equal to that given

func (*GetCoachingAppointmentsUnauthorized) IsRedirect

func (o *GetCoachingAppointmentsUnauthorized) IsRedirect() bool

IsRedirect returns true when this get coaching appointments unauthorized response has a 3xx status code

func (*GetCoachingAppointmentsUnauthorized) IsServerError

func (o *GetCoachingAppointmentsUnauthorized) IsServerError() bool

IsServerError returns true when this get coaching appointments unauthorized response has a 5xx status code

func (*GetCoachingAppointmentsUnauthorized) IsSuccess

IsSuccess returns true when this get coaching appointments unauthorized response has a 2xx status code

func (*GetCoachingAppointmentsUnauthorized) String

type GetCoachingAppointmentsUnsupportedMediaType

type GetCoachingAppointmentsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingAppointmentsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingAppointmentsUnsupportedMediaType

func NewGetCoachingAppointmentsUnsupportedMediaType() *GetCoachingAppointmentsUnsupportedMediaType

NewGetCoachingAppointmentsUnsupportedMediaType creates a GetCoachingAppointmentsUnsupportedMediaType with default headers values

func (*GetCoachingAppointmentsUnsupportedMediaType) Error

func (*GetCoachingAppointmentsUnsupportedMediaType) GetPayload

func (*GetCoachingAppointmentsUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching appointments unsupported media type response has a 4xx status code

func (*GetCoachingAppointmentsUnsupportedMediaType) IsCode

IsCode returns true when this get coaching appointments unsupported media type response a status code equal to that given

func (*GetCoachingAppointmentsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching appointments unsupported media type response has a 3xx status code

func (*GetCoachingAppointmentsUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching appointments unsupported media type response has a 5xx status code

func (*GetCoachingAppointmentsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching appointments unsupported media type response has a 2xx status code

func (*GetCoachingAppointmentsUnsupportedMediaType) String

type GetCoachingNotificationBadRequest

type GetCoachingNotificationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingNotificationBadRequest

func NewGetCoachingNotificationBadRequest() *GetCoachingNotificationBadRequest

NewGetCoachingNotificationBadRequest creates a GetCoachingNotificationBadRequest with default headers values

func (*GetCoachingNotificationBadRequest) Error

func (*GetCoachingNotificationBadRequest) GetPayload

func (*GetCoachingNotificationBadRequest) IsClientError

func (o *GetCoachingNotificationBadRequest) IsClientError() bool

IsClientError returns true when this get coaching notification bad request response has a 4xx status code

func (*GetCoachingNotificationBadRequest) IsCode

func (o *GetCoachingNotificationBadRequest) IsCode(code int) bool

IsCode returns true when this get coaching notification bad request response a status code equal to that given

func (*GetCoachingNotificationBadRequest) IsRedirect

func (o *GetCoachingNotificationBadRequest) IsRedirect() bool

IsRedirect returns true when this get coaching notification bad request response has a 3xx status code

func (*GetCoachingNotificationBadRequest) IsServerError

func (o *GetCoachingNotificationBadRequest) IsServerError() bool

IsServerError returns true when this get coaching notification bad request response has a 5xx status code

func (*GetCoachingNotificationBadRequest) IsSuccess

func (o *GetCoachingNotificationBadRequest) IsSuccess() bool

IsSuccess returns true when this get coaching notification bad request response has a 2xx status code

func (*GetCoachingNotificationBadRequest) String

type GetCoachingNotificationForbidden

type GetCoachingNotificationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingNotificationForbidden

func NewGetCoachingNotificationForbidden() *GetCoachingNotificationForbidden

NewGetCoachingNotificationForbidden creates a GetCoachingNotificationForbidden with default headers values

func (*GetCoachingNotificationForbidden) Error

func (*GetCoachingNotificationForbidden) GetPayload

func (*GetCoachingNotificationForbidden) IsClientError

func (o *GetCoachingNotificationForbidden) IsClientError() bool

IsClientError returns true when this get coaching notification forbidden response has a 4xx status code

func (*GetCoachingNotificationForbidden) IsCode

func (o *GetCoachingNotificationForbidden) IsCode(code int) bool

IsCode returns true when this get coaching notification forbidden response a status code equal to that given

func (*GetCoachingNotificationForbidden) IsRedirect

func (o *GetCoachingNotificationForbidden) IsRedirect() bool

IsRedirect returns true when this get coaching notification forbidden response has a 3xx status code

func (*GetCoachingNotificationForbidden) IsServerError

func (o *GetCoachingNotificationForbidden) IsServerError() bool

IsServerError returns true when this get coaching notification forbidden response has a 5xx status code

func (*GetCoachingNotificationForbidden) IsSuccess

func (o *GetCoachingNotificationForbidden) IsSuccess() bool

IsSuccess returns true when this get coaching notification forbidden response has a 2xx status code

func (*GetCoachingNotificationForbidden) String

type GetCoachingNotificationGatewayTimeout

type GetCoachingNotificationGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingNotificationGatewayTimeout

func NewGetCoachingNotificationGatewayTimeout() *GetCoachingNotificationGatewayTimeout

NewGetCoachingNotificationGatewayTimeout creates a GetCoachingNotificationGatewayTimeout with default headers values

func (*GetCoachingNotificationGatewayTimeout) Error

func (*GetCoachingNotificationGatewayTimeout) GetPayload

func (*GetCoachingNotificationGatewayTimeout) IsClientError

func (o *GetCoachingNotificationGatewayTimeout) IsClientError() bool

IsClientError returns true when this get coaching notification gateway timeout response has a 4xx status code

func (*GetCoachingNotificationGatewayTimeout) IsCode

IsCode returns true when this get coaching notification gateway timeout response a status code equal to that given

func (*GetCoachingNotificationGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching notification gateway timeout response has a 3xx status code

func (*GetCoachingNotificationGatewayTimeout) IsServerError

func (o *GetCoachingNotificationGatewayTimeout) IsServerError() bool

IsServerError returns true when this get coaching notification gateway timeout response has a 5xx status code

func (*GetCoachingNotificationGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching notification gateway timeout response has a 2xx status code

func (*GetCoachingNotificationGatewayTimeout) String

type GetCoachingNotificationInternalServerError

type GetCoachingNotificationInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingNotificationInternalServerError

func NewGetCoachingNotificationInternalServerError() *GetCoachingNotificationInternalServerError

NewGetCoachingNotificationInternalServerError creates a GetCoachingNotificationInternalServerError with default headers values

func (*GetCoachingNotificationInternalServerError) Error

func (*GetCoachingNotificationInternalServerError) GetPayload

func (*GetCoachingNotificationInternalServerError) IsClientError

IsClientError returns true when this get coaching notification internal server error response has a 4xx status code

func (*GetCoachingNotificationInternalServerError) IsCode

IsCode returns true when this get coaching notification internal server error response a status code equal to that given

func (*GetCoachingNotificationInternalServerError) IsRedirect

IsRedirect returns true when this get coaching notification internal server error response has a 3xx status code

func (*GetCoachingNotificationInternalServerError) IsServerError

IsServerError returns true when this get coaching notification internal server error response has a 5xx status code

func (*GetCoachingNotificationInternalServerError) IsSuccess

IsSuccess returns true when this get coaching notification internal server error response has a 2xx status code

func (*GetCoachingNotificationInternalServerError) String

type GetCoachingNotificationNotFound

type GetCoachingNotificationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingNotificationNotFound

func NewGetCoachingNotificationNotFound() *GetCoachingNotificationNotFound

NewGetCoachingNotificationNotFound creates a GetCoachingNotificationNotFound with default headers values

func (*GetCoachingNotificationNotFound) Error

func (*GetCoachingNotificationNotFound) GetPayload

func (*GetCoachingNotificationNotFound) IsClientError

func (o *GetCoachingNotificationNotFound) IsClientError() bool

IsClientError returns true when this get coaching notification not found response has a 4xx status code

func (*GetCoachingNotificationNotFound) IsCode

func (o *GetCoachingNotificationNotFound) IsCode(code int) bool

IsCode returns true when this get coaching notification not found response a status code equal to that given

func (*GetCoachingNotificationNotFound) IsRedirect

func (o *GetCoachingNotificationNotFound) IsRedirect() bool

IsRedirect returns true when this get coaching notification not found response has a 3xx status code

func (*GetCoachingNotificationNotFound) IsServerError

func (o *GetCoachingNotificationNotFound) IsServerError() bool

IsServerError returns true when this get coaching notification not found response has a 5xx status code

func (*GetCoachingNotificationNotFound) IsSuccess

func (o *GetCoachingNotificationNotFound) IsSuccess() bool

IsSuccess returns true when this get coaching notification not found response has a 2xx status code

func (*GetCoachingNotificationNotFound) String

type GetCoachingNotificationOK

type GetCoachingNotificationOK struct {
	Payload *models.CoachingNotification
}

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

successful operation

func NewGetCoachingNotificationOK

func NewGetCoachingNotificationOK() *GetCoachingNotificationOK

NewGetCoachingNotificationOK creates a GetCoachingNotificationOK with default headers values

func (*GetCoachingNotificationOK) Error

func (o *GetCoachingNotificationOK) Error() string

func (*GetCoachingNotificationOK) GetPayload

func (*GetCoachingNotificationOK) IsClientError

func (o *GetCoachingNotificationOK) IsClientError() bool

IsClientError returns true when this get coaching notification o k response has a 4xx status code

func (*GetCoachingNotificationOK) IsCode

func (o *GetCoachingNotificationOK) IsCode(code int) bool

IsCode returns true when this get coaching notification o k response a status code equal to that given

func (*GetCoachingNotificationOK) IsRedirect

func (o *GetCoachingNotificationOK) IsRedirect() bool

IsRedirect returns true when this get coaching notification o k response has a 3xx status code

func (*GetCoachingNotificationOK) IsServerError

func (o *GetCoachingNotificationOK) IsServerError() bool

IsServerError returns true when this get coaching notification o k response has a 5xx status code

func (*GetCoachingNotificationOK) IsSuccess

func (o *GetCoachingNotificationOK) IsSuccess() bool

IsSuccess returns true when this get coaching notification o k response has a 2xx status code

func (*GetCoachingNotificationOK) String

func (o *GetCoachingNotificationOK) String() string

type GetCoachingNotificationParams

type GetCoachingNotificationParams struct {

	/* Expand.

	   Indicates a field in the response which should be expanded.
	*/
	Expand []string

	/* NotificationID.

	   The ID of the notification.
	*/
	NotificationID string

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

GetCoachingNotificationParams contains all the parameters to send to the API endpoint

for the get coaching notification operation.

Typically these are written to a http.Request.

func NewGetCoachingNotificationParams

func NewGetCoachingNotificationParams() *GetCoachingNotificationParams

NewGetCoachingNotificationParams creates a new GetCoachingNotificationParams 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 NewGetCoachingNotificationParamsWithContext

func NewGetCoachingNotificationParamsWithContext(ctx context.Context) *GetCoachingNotificationParams

NewGetCoachingNotificationParamsWithContext creates a new GetCoachingNotificationParams object with the ability to set a context for a request.

func NewGetCoachingNotificationParamsWithHTTPClient

func NewGetCoachingNotificationParamsWithHTTPClient(client *http.Client) *GetCoachingNotificationParams

NewGetCoachingNotificationParamsWithHTTPClient creates a new GetCoachingNotificationParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingNotificationParamsWithTimeout

func NewGetCoachingNotificationParamsWithTimeout(timeout time.Duration) *GetCoachingNotificationParams

NewGetCoachingNotificationParamsWithTimeout creates a new GetCoachingNotificationParams object with the ability to set a timeout on a request.

func (*GetCoachingNotificationParams) SetContext

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

SetContext adds the context to the get coaching notification params

func (*GetCoachingNotificationParams) SetDefaults

func (o *GetCoachingNotificationParams) SetDefaults()

SetDefaults hydrates default values in the get coaching notification params (not the query body).

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

func (*GetCoachingNotificationParams) SetExpand

func (o *GetCoachingNotificationParams) SetExpand(expand []string)

SetExpand adds the expand to the get coaching notification params

func (*GetCoachingNotificationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching notification params

func (*GetCoachingNotificationParams) SetNotificationID

func (o *GetCoachingNotificationParams) SetNotificationID(notificationID string)

SetNotificationID adds the notificationId to the get coaching notification params

func (*GetCoachingNotificationParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching notification params

func (*GetCoachingNotificationParams) WithContext

WithContext adds the context to the get coaching notification params

func (*GetCoachingNotificationParams) WithDefaults

WithDefaults hydrates default values in the get coaching notification params (not the query body).

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

func (*GetCoachingNotificationParams) WithExpand

WithExpand adds the expand to the get coaching notification params

func (*GetCoachingNotificationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching notification params

func (*GetCoachingNotificationParams) WithNotificationID

func (o *GetCoachingNotificationParams) WithNotificationID(notificationID string) *GetCoachingNotificationParams

WithNotificationID adds the notificationID to the get coaching notification params

func (*GetCoachingNotificationParams) WithTimeout

WithTimeout adds the timeout to the get coaching notification params

func (*GetCoachingNotificationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingNotificationReader

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

GetCoachingNotificationReader is a Reader for the GetCoachingNotification structure.

func (*GetCoachingNotificationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingNotificationRequestEntityTooLarge

type GetCoachingNotificationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingNotificationRequestEntityTooLarge

func NewGetCoachingNotificationRequestEntityTooLarge() *GetCoachingNotificationRequestEntityTooLarge

NewGetCoachingNotificationRequestEntityTooLarge creates a GetCoachingNotificationRequestEntityTooLarge with default headers values

func (*GetCoachingNotificationRequestEntityTooLarge) Error

func (*GetCoachingNotificationRequestEntityTooLarge) GetPayload

func (*GetCoachingNotificationRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching notification request entity too large response has a 4xx status code

func (*GetCoachingNotificationRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching notification request entity too large response a status code equal to that given

func (*GetCoachingNotificationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching notification request entity too large response has a 3xx status code

func (*GetCoachingNotificationRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching notification request entity too large response has a 5xx status code

func (*GetCoachingNotificationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching notification request entity too large response has a 2xx status code

func (*GetCoachingNotificationRequestEntityTooLarge) String

type GetCoachingNotificationRequestTimeout

type GetCoachingNotificationRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingNotificationRequestTimeout

func NewGetCoachingNotificationRequestTimeout() *GetCoachingNotificationRequestTimeout

NewGetCoachingNotificationRequestTimeout creates a GetCoachingNotificationRequestTimeout with default headers values

func (*GetCoachingNotificationRequestTimeout) Error

func (*GetCoachingNotificationRequestTimeout) GetPayload

func (*GetCoachingNotificationRequestTimeout) IsClientError

func (o *GetCoachingNotificationRequestTimeout) IsClientError() bool

IsClientError returns true when this get coaching notification request timeout response has a 4xx status code

func (*GetCoachingNotificationRequestTimeout) IsCode

IsCode returns true when this get coaching notification request timeout response a status code equal to that given

func (*GetCoachingNotificationRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching notification request timeout response has a 3xx status code

func (*GetCoachingNotificationRequestTimeout) IsServerError

func (o *GetCoachingNotificationRequestTimeout) IsServerError() bool

IsServerError returns true when this get coaching notification request timeout response has a 5xx status code

func (*GetCoachingNotificationRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching notification request timeout response has a 2xx status code

func (*GetCoachingNotificationRequestTimeout) String

type GetCoachingNotificationServiceUnavailable

type GetCoachingNotificationServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingNotificationServiceUnavailable

func NewGetCoachingNotificationServiceUnavailable() *GetCoachingNotificationServiceUnavailable

NewGetCoachingNotificationServiceUnavailable creates a GetCoachingNotificationServiceUnavailable with default headers values

func (*GetCoachingNotificationServiceUnavailable) Error

func (*GetCoachingNotificationServiceUnavailable) GetPayload

func (*GetCoachingNotificationServiceUnavailable) IsClientError

IsClientError returns true when this get coaching notification service unavailable response has a 4xx status code

func (*GetCoachingNotificationServiceUnavailable) IsCode

IsCode returns true when this get coaching notification service unavailable response a status code equal to that given

func (*GetCoachingNotificationServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching notification service unavailable response has a 3xx status code

func (*GetCoachingNotificationServiceUnavailable) IsServerError

IsServerError returns true when this get coaching notification service unavailable response has a 5xx status code

func (*GetCoachingNotificationServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching notification service unavailable response has a 2xx status code

func (*GetCoachingNotificationServiceUnavailable) String

type GetCoachingNotificationTooManyRequests

type GetCoachingNotificationTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingNotificationTooManyRequests

func NewGetCoachingNotificationTooManyRequests() *GetCoachingNotificationTooManyRequests

NewGetCoachingNotificationTooManyRequests creates a GetCoachingNotificationTooManyRequests with default headers values

func (*GetCoachingNotificationTooManyRequests) Error

func (*GetCoachingNotificationTooManyRequests) GetPayload

func (*GetCoachingNotificationTooManyRequests) IsClientError

func (o *GetCoachingNotificationTooManyRequests) IsClientError() bool

IsClientError returns true when this get coaching notification too many requests response has a 4xx status code

func (*GetCoachingNotificationTooManyRequests) IsCode

IsCode returns true when this get coaching notification too many requests response a status code equal to that given

func (*GetCoachingNotificationTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching notification too many requests response has a 3xx status code

func (*GetCoachingNotificationTooManyRequests) IsServerError

func (o *GetCoachingNotificationTooManyRequests) IsServerError() bool

IsServerError returns true when this get coaching notification too many requests response has a 5xx status code

func (*GetCoachingNotificationTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching notification too many requests response has a 2xx status code

func (*GetCoachingNotificationTooManyRequests) String

type GetCoachingNotificationUnauthorized

type GetCoachingNotificationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingNotificationUnauthorized

func NewGetCoachingNotificationUnauthorized() *GetCoachingNotificationUnauthorized

NewGetCoachingNotificationUnauthorized creates a GetCoachingNotificationUnauthorized with default headers values

func (*GetCoachingNotificationUnauthorized) Error

func (*GetCoachingNotificationUnauthorized) GetPayload

func (*GetCoachingNotificationUnauthorized) IsClientError

func (o *GetCoachingNotificationUnauthorized) IsClientError() bool

IsClientError returns true when this get coaching notification unauthorized response has a 4xx status code

func (*GetCoachingNotificationUnauthorized) IsCode

IsCode returns true when this get coaching notification unauthorized response a status code equal to that given

func (*GetCoachingNotificationUnauthorized) IsRedirect

func (o *GetCoachingNotificationUnauthorized) IsRedirect() bool

IsRedirect returns true when this get coaching notification unauthorized response has a 3xx status code

func (*GetCoachingNotificationUnauthorized) IsServerError

func (o *GetCoachingNotificationUnauthorized) IsServerError() bool

IsServerError returns true when this get coaching notification unauthorized response has a 5xx status code

func (*GetCoachingNotificationUnauthorized) IsSuccess

IsSuccess returns true when this get coaching notification unauthorized response has a 2xx status code

func (*GetCoachingNotificationUnauthorized) String

type GetCoachingNotificationUnsupportedMediaType

type GetCoachingNotificationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingNotificationUnsupportedMediaType

func NewGetCoachingNotificationUnsupportedMediaType() *GetCoachingNotificationUnsupportedMediaType

NewGetCoachingNotificationUnsupportedMediaType creates a GetCoachingNotificationUnsupportedMediaType with default headers values

func (*GetCoachingNotificationUnsupportedMediaType) Error

func (*GetCoachingNotificationUnsupportedMediaType) GetPayload

func (*GetCoachingNotificationUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching notification unsupported media type response has a 4xx status code

func (*GetCoachingNotificationUnsupportedMediaType) IsCode

IsCode returns true when this get coaching notification unsupported media type response a status code equal to that given

func (*GetCoachingNotificationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching notification unsupported media type response has a 3xx status code

func (*GetCoachingNotificationUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching notification unsupported media type response has a 5xx status code

func (*GetCoachingNotificationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching notification unsupported media type response has a 2xx status code

func (*GetCoachingNotificationUnsupportedMediaType) String

type GetCoachingNotificationsBadRequest

type GetCoachingNotificationsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewGetCoachingNotificationsBadRequest

func NewGetCoachingNotificationsBadRequest() *GetCoachingNotificationsBadRequest

NewGetCoachingNotificationsBadRequest creates a GetCoachingNotificationsBadRequest with default headers values

func (*GetCoachingNotificationsBadRequest) Error

func (*GetCoachingNotificationsBadRequest) GetPayload

func (*GetCoachingNotificationsBadRequest) IsClientError

func (o *GetCoachingNotificationsBadRequest) IsClientError() bool

IsClientError returns true when this get coaching notifications bad request response has a 4xx status code

func (*GetCoachingNotificationsBadRequest) IsCode

IsCode returns true when this get coaching notifications bad request response a status code equal to that given

func (*GetCoachingNotificationsBadRequest) IsRedirect

func (o *GetCoachingNotificationsBadRequest) IsRedirect() bool

IsRedirect returns true when this get coaching notifications bad request response has a 3xx status code

func (*GetCoachingNotificationsBadRequest) IsServerError

func (o *GetCoachingNotificationsBadRequest) IsServerError() bool

IsServerError returns true when this get coaching notifications bad request response has a 5xx status code

func (*GetCoachingNotificationsBadRequest) IsSuccess

IsSuccess returns true when this get coaching notifications bad request response has a 2xx status code

func (*GetCoachingNotificationsBadRequest) String

type GetCoachingNotificationsForbidden

type GetCoachingNotificationsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewGetCoachingNotificationsForbidden

func NewGetCoachingNotificationsForbidden() *GetCoachingNotificationsForbidden

NewGetCoachingNotificationsForbidden creates a GetCoachingNotificationsForbidden with default headers values

func (*GetCoachingNotificationsForbidden) Error

func (*GetCoachingNotificationsForbidden) GetPayload

func (*GetCoachingNotificationsForbidden) IsClientError

func (o *GetCoachingNotificationsForbidden) IsClientError() bool

IsClientError returns true when this get coaching notifications forbidden response has a 4xx status code

func (*GetCoachingNotificationsForbidden) IsCode

func (o *GetCoachingNotificationsForbidden) IsCode(code int) bool

IsCode returns true when this get coaching notifications forbidden response a status code equal to that given

func (*GetCoachingNotificationsForbidden) IsRedirect

func (o *GetCoachingNotificationsForbidden) IsRedirect() bool

IsRedirect returns true when this get coaching notifications forbidden response has a 3xx status code

func (*GetCoachingNotificationsForbidden) IsServerError

func (o *GetCoachingNotificationsForbidden) IsServerError() bool

IsServerError returns true when this get coaching notifications forbidden response has a 5xx status code

func (*GetCoachingNotificationsForbidden) IsSuccess

func (o *GetCoachingNotificationsForbidden) IsSuccess() bool

IsSuccess returns true when this get coaching notifications forbidden response has a 2xx status code

func (*GetCoachingNotificationsForbidden) String

type GetCoachingNotificationsGatewayTimeout

type GetCoachingNotificationsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewGetCoachingNotificationsGatewayTimeout

func NewGetCoachingNotificationsGatewayTimeout() *GetCoachingNotificationsGatewayTimeout

NewGetCoachingNotificationsGatewayTimeout creates a GetCoachingNotificationsGatewayTimeout with default headers values

func (*GetCoachingNotificationsGatewayTimeout) Error

func (*GetCoachingNotificationsGatewayTimeout) GetPayload

func (*GetCoachingNotificationsGatewayTimeout) IsClientError

func (o *GetCoachingNotificationsGatewayTimeout) IsClientError() bool

IsClientError returns true when this get coaching notifications gateway timeout response has a 4xx status code

func (*GetCoachingNotificationsGatewayTimeout) IsCode

IsCode returns true when this get coaching notifications gateway timeout response a status code equal to that given

func (*GetCoachingNotificationsGatewayTimeout) IsRedirect

IsRedirect returns true when this get coaching notifications gateway timeout response has a 3xx status code

func (*GetCoachingNotificationsGatewayTimeout) IsServerError

func (o *GetCoachingNotificationsGatewayTimeout) IsServerError() bool

IsServerError returns true when this get coaching notifications gateway timeout response has a 5xx status code

func (*GetCoachingNotificationsGatewayTimeout) IsSuccess

IsSuccess returns true when this get coaching notifications gateway timeout response has a 2xx status code

func (*GetCoachingNotificationsGatewayTimeout) String

type GetCoachingNotificationsInternalServerError

type GetCoachingNotificationsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewGetCoachingNotificationsInternalServerError

func NewGetCoachingNotificationsInternalServerError() *GetCoachingNotificationsInternalServerError

NewGetCoachingNotificationsInternalServerError creates a GetCoachingNotificationsInternalServerError with default headers values

func (*GetCoachingNotificationsInternalServerError) Error

func (*GetCoachingNotificationsInternalServerError) GetPayload

func (*GetCoachingNotificationsInternalServerError) IsClientError

IsClientError returns true when this get coaching notifications internal server error response has a 4xx status code

func (*GetCoachingNotificationsInternalServerError) IsCode

IsCode returns true when this get coaching notifications internal server error response a status code equal to that given

func (*GetCoachingNotificationsInternalServerError) IsRedirect

IsRedirect returns true when this get coaching notifications internal server error response has a 3xx status code

func (*GetCoachingNotificationsInternalServerError) IsServerError

IsServerError returns true when this get coaching notifications internal server error response has a 5xx status code

func (*GetCoachingNotificationsInternalServerError) IsSuccess

IsSuccess returns true when this get coaching notifications internal server error response has a 2xx status code

func (*GetCoachingNotificationsInternalServerError) String

type GetCoachingNotificationsNotFound

type GetCoachingNotificationsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewGetCoachingNotificationsNotFound

func NewGetCoachingNotificationsNotFound() *GetCoachingNotificationsNotFound

NewGetCoachingNotificationsNotFound creates a GetCoachingNotificationsNotFound with default headers values

func (*GetCoachingNotificationsNotFound) Error

func (*GetCoachingNotificationsNotFound) GetPayload

func (*GetCoachingNotificationsNotFound) IsClientError

func (o *GetCoachingNotificationsNotFound) IsClientError() bool

IsClientError returns true when this get coaching notifications not found response has a 4xx status code

func (*GetCoachingNotificationsNotFound) IsCode

func (o *GetCoachingNotificationsNotFound) IsCode(code int) bool

IsCode returns true when this get coaching notifications not found response a status code equal to that given

func (*GetCoachingNotificationsNotFound) IsRedirect

func (o *GetCoachingNotificationsNotFound) IsRedirect() bool

IsRedirect returns true when this get coaching notifications not found response has a 3xx status code

func (*GetCoachingNotificationsNotFound) IsServerError

func (o *GetCoachingNotificationsNotFound) IsServerError() bool

IsServerError returns true when this get coaching notifications not found response has a 5xx status code

func (*GetCoachingNotificationsNotFound) IsSuccess

func (o *GetCoachingNotificationsNotFound) IsSuccess() bool

IsSuccess returns true when this get coaching notifications not found response has a 2xx status code

func (*GetCoachingNotificationsNotFound) String

type GetCoachingNotificationsOK

type GetCoachingNotificationsOK struct {
	Payload *models.CoachingNotificationList
}

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

successful operation

func NewGetCoachingNotificationsOK

func NewGetCoachingNotificationsOK() *GetCoachingNotificationsOK

NewGetCoachingNotificationsOK creates a GetCoachingNotificationsOK with default headers values

func (*GetCoachingNotificationsOK) Error

func (*GetCoachingNotificationsOK) GetPayload

func (*GetCoachingNotificationsOK) IsClientError

func (o *GetCoachingNotificationsOK) IsClientError() bool

IsClientError returns true when this get coaching notifications o k response has a 4xx status code

func (*GetCoachingNotificationsOK) IsCode

func (o *GetCoachingNotificationsOK) IsCode(code int) bool

IsCode returns true when this get coaching notifications o k response a status code equal to that given

func (*GetCoachingNotificationsOK) IsRedirect

func (o *GetCoachingNotificationsOK) IsRedirect() bool

IsRedirect returns true when this get coaching notifications o k response has a 3xx status code

func (*GetCoachingNotificationsOK) IsServerError

func (o *GetCoachingNotificationsOK) IsServerError() bool

IsServerError returns true when this get coaching notifications o k response has a 5xx status code

func (*GetCoachingNotificationsOK) IsSuccess

func (o *GetCoachingNotificationsOK) IsSuccess() bool

IsSuccess returns true when this get coaching notifications o k response has a 2xx status code

func (*GetCoachingNotificationsOK) String

func (o *GetCoachingNotificationsOK) String() string

type GetCoachingNotificationsParams

type GetCoachingNotificationsParams struct {

	/* Expand.

	   Indicates a field in the response which should be expanded.
	*/
	Expand []string

	/* PageNumber.

	   Page number

	   Format: int32
	   Default: 1
	*/
	PageNumber *int32

	/* PageSize.

	   Page size

	   Format: int32
	   Default: 25
	*/
	PageSize *int32

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

GetCoachingNotificationsParams contains all the parameters to send to the API endpoint

for the get coaching notifications operation.

Typically these are written to a http.Request.

func NewGetCoachingNotificationsParams

func NewGetCoachingNotificationsParams() *GetCoachingNotificationsParams

NewGetCoachingNotificationsParams creates a new GetCoachingNotificationsParams 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 NewGetCoachingNotificationsParamsWithContext

func NewGetCoachingNotificationsParamsWithContext(ctx context.Context) *GetCoachingNotificationsParams

NewGetCoachingNotificationsParamsWithContext creates a new GetCoachingNotificationsParams object with the ability to set a context for a request.

func NewGetCoachingNotificationsParamsWithHTTPClient

func NewGetCoachingNotificationsParamsWithHTTPClient(client *http.Client) *GetCoachingNotificationsParams

NewGetCoachingNotificationsParamsWithHTTPClient creates a new GetCoachingNotificationsParams object with the ability to set a custom HTTPClient for a request.

func NewGetCoachingNotificationsParamsWithTimeout

func NewGetCoachingNotificationsParamsWithTimeout(timeout time.Duration) *GetCoachingNotificationsParams

NewGetCoachingNotificationsParamsWithTimeout creates a new GetCoachingNotificationsParams object with the ability to set a timeout on a request.

func (*GetCoachingNotificationsParams) SetContext

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

SetContext adds the context to the get coaching notifications params

func (*GetCoachingNotificationsParams) SetDefaults

func (o *GetCoachingNotificationsParams) SetDefaults()

SetDefaults hydrates default values in the get coaching notifications params (not the query body).

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

func (*GetCoachingNotificationsParams) SetExpand

func (o *GetCoachingNotificationsParams) SetExpand(expand []string)

SetExpand adds the expand to the get coaching notifications params

func (*GetCoachingNotificationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get coaching notifications params

func (*GetCoachingNotificationsParams) SetPageNumber

func (o *GetCoachingNotificationsParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get coaching notifications params

func (*GetCoachingNotificationsParams) SetPageSize

func (o *GetCoachingNotificationsParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get coaching notifications params

func (*GetCoachingNotificationsParams) SetTimeout

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

SetTimeout adds the timeout to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithContext

WithContext adds the context to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithDefaults

WithDefaults hydrates default values in the get coaching notifications params (not the query body).

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

func (*GetCoachingNotificationsParams) WithExpand

WithExpand adds the expand to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithPageNumber

WithPageNumber adds the pageNumber to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithPageSize

WithPageSize adds the pageSize to the get coaching notifications params

func (*GetCoachingNotificationsParams) WithTimeout

WithTimeout adds the timeout to the get coaching notifications params

func (*GetCoachingNotificationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetCoachingNotificationsReader

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

GetCoachingNotificationsReader is a Reader for the GetCoachingNotifications structure.

func (*GetCoachingNotificationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCoachingNotificationsRequestEntityTooLarge

type GetCoachingNotificationsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewGetCoachingNotificationsRequestEntityTooLarge

func NewGetCoachingNotificationsRequestEntityTooLarge() *GetCoachingNotificationsRequestEntityTooLarge

NewGetCoachingNotificationsRequestEntityTooLarge creates a GetCoachingNotificationsRequestEntityTooLarge with default headers values

func (*GetCoachingNotificationsRequestEntityTooLarge) Error

func (*GetCoachingNotificationsRequestEntityTooLarge) GetPayload

func (*GetCoachingNotificationsRequestEntityTooLarge) IsClientError

IsClientError returns true when this get coaching notifications request entity too large response has a 4xx status code

func (*GetCoachingNotificationsRequestEntityTooLarge) IsCode

IsCode returns true when this get coaching notifications request entity too large response a status code equal to that given

func (*GetCoachingNotificationsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this get coaching notifications request entity too large response has a 3xx status code

func (*GetCoachingNotificationsRequestEntityTooLarge) IsServerError

IsServerError returns true when this get coaching notifications request entity too large response has a 5xx status code

func (*GetCoachingNotificationsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this get coaching notifications request entity too large response has a 2xx status code

func (*GetCoachingNotificationsRequestEntityTooLarge) String

type GetCoachingNotificationsRequestTimeout

type GetCoachingNotificationsRequestTimeout struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewGetCoachingNotificationsRequestTimeout

func NewGetCoachingNotificationsRequestTimeout() *GetCoachingNotificationsRequestTimeout

NewGetCoachingNotificationsRequestTimeout creates a GetCoachingNotificationsRequestTimeout with default headers values

func (*GetCoachingNotificationsRequestTimeout) Error

func (*GetCoachingNotificationsRequestTimeout) GetPayload

func (*GetCoachingNotificationsRequestTimeout) IsClientError

func (o *GetCoachingNotificationsRequestTimeout) IsClientError() bool

IsClientError returns true when this get coaching notifications request timeout response has a 4xx status code

func (*GetCoachingNotificationsRequestTimeout) IsCode

IsCode returns true when this get coaching notifications request timeout response a status code equal to that given

func (*GetCoachingNotificationsRequestTimeout) IsRedirect

IsRedirect returns true when this get coaching notifications request timeout response has a 3xx status code

func (*GetCoachingNotificationsRequestTimeout) IsServerError

func (o *GetCoachingNotificationsRequestTimeout) IsServerError() bool

IsServerError returns true when this get coaching notifications request timeout response has a 5xx status code

func (*GetCoachingNotificationsRequestTimeout) IsSuccess

IsSuccess returns true when this get coaching notifications request timeout response has a 2xx status code

func (*GetCoachingNotificationsRequestTimeout) String

type GetCoachingNotificationsServiceUnavailable

type GetCoachingNotificationsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewGetCoachingNotificationsServiceUnavailable

func NewGetCoachingNotificationsServiceUnavailable() *GetCoachingNotificationsServiceUnavailable

NewGetCoachingNotificationsServiceUnavailable creates a GetCoachingNotificationsServiceUnavailable with default headers values

func (*GetCoachingNotificationsServiceUnavailable) Error

func (*GetCoachingNotificationsServiceUnavailable) GetPayload

func (*GetCoachingNotificationsServiceUnavailable) IsClientError

IsClientError returns true when this get coaching notifications service unavailable response has a 4xx status code

func (*GetCoachingNotificationsServiceUnavailable) IsCode

IsCode returns true when this get coaching notifications service unavailable response a status code equal to that given

func (*GetCoachingNotificationsServiceUnavailable) IsRedirect

IsRedirect returns true when this get coaching notifications service unavailable response has a 3xx status code

func (*GetCoachingNotificationsServiceUnavailable) IsServerError

IsServerError returns true when this get coaching notifications service unavailable response has a 5xx status code

func (*GetCoachingNotificationsServiceUnavailable) IsSuccess

IsSuccess returns true when this get coaching notifications service unavailable response has a 2xx status code

func (*GetCoachingNotificationsServiceUnavailable) String

type GetCoachingNotificationsTooManyRequests

type GetCoachingNotificationsTooManyRequests struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewGetCoachingNotificationsTooManyRequests

func NewGetCoachingNotificationsTooManyRequests() *GetCoachingNotificationsTooManyRequests

NewGetCoachingNotificationsTooManyRequests creates a GetCoachingNotificationsTooManyRequests with default headers values

func (*GetCoachingNotificationsTooManyRequests) Error

func (*GetCoachingNotificationsTooManyRequests) GetPayload

func (*GetCoachingNotificationsTooManyRequests) IsClientError

func (o *GetCoachingNotificationsTooManyRequests) IsClientError() bool

IsClientError returns true when this get coaching notifications too many requests response has a 4xx status code

func (*GetCoachingNotificationsTooManyRequests) IsCode

IsCode returns true when this get coaching notifications too many requests response a status code equal to that given

func (*GetCoachingNotificationsTooManyRequests) IsRedirect

IsRedirect returns true when this get coaching notifications too many requests response has a 3xx status code

func (*GetCoachingNotificationsTooManyRequests) IsServerError

func (o *GetCoachingNotificationsTooManyRequests) IsServerError() bool

IsServerError returns true when this get coaching notifications too many requests response has a 5xx status code

func (*GetCoachingNotificationsTooManyRequests) IsSuccess

IsSuccess returns true when this get coaching notifications too many requests response has a 2xx status code

func (*GetCoachingNotificationsTooManyRequests) String

type GetCoachingNotificationsUnauthorized

type GetCoachingNotificationsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewGetCoachingNotificationsUnauthorized

func NewGetCoachingNotificationsUnauthorized() *GetCoachingNotificationsUnauthorized

NewGetCoachingNotificationsUnauthorized creates a GetCoachingNotificationsUnauthorized with default headers values

func (*GetCoachingNotificationsUnauthorized) Error

func (*GetCoachingNotificationsUnauthorized) GetPayload

func (*GetCoachingNotificationsUnauthorized) IsClientError

func (o *GetCoachingNotificationsUnauthorized) IsClientError() bool

IsClientError returns true when this get coaching notifications unauthorized response has a 4xx status code

func (*GetCoachingNotificationsUnauthorized) IsCode

IsCode returns true when this get coaching notifications unauthorized response a status code equal to that given

func (*GetCoachingNotificationsUnauthorized) IsRedirect

IsRedirect returns true when this get coaching notifications unauthorized response has a 3xx status code

func (*GetCoachingNotificationsUnauthorized) IsServerError

func (o *GetCoachingNotificationsUnauthorized) IsServerError() bool

IsServerError returns true when this get coaching notifications unauthorized response has a 5xx status code

func (*GetCoachingNotificationsUnauthorized) IsSuccess

IsSuccess returns true when this get coaching notifications unauthorized response has a 2xx status code

func (*GetCoachingNotificationsUnauthorized) String

type GetCoachingNotificationsUnsupportedMediaType

type GetCoachingNotificationsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

GetCoachingNotificationsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewGetCoachingNotificationsUnsupportedMediaType

func NewGetCoachingNotificationsUnsupportedMediaType() *GetCoachingNotificationsUnsupportedMediaType

NewGetCoachingNotificationsUnsupportedMediaType creates a GetCoachingNotificationsUnsupportedMediaType with default headers values

func (*GetCoachingNotificationsUnsupportedMediaType) Error

func (*GetCoachingNotificationsUnsupportedMediaType) GetPayload

func (*GetCoachingNotificationsUnsupportedMediaType) IsClientError

IsClientError returns true when this get coaching notifications unsupported media type response has a 4xx status code

func (*GetCoachingNotificationsUnsupportedMediaType) IsCode

IsCode returns true when this get coaching notifications unsupported media type response a status code equal to that given

func (*GetCoachingNotificationsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this get coaching notifications unsupported media type response has a 3xx status code

func (*GetCoachingNotificationsUnsupportedMediaType) IsServerError

IsServerError returns true when this get coaching notifications unsupported media type response has a 5xx status code

func (*GetCoachingNotificationsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this get coaching notifications unsupported media type response has a 2xx status code

func (*GetCoachingNotificationsUnsupportedMediaType) String

type PatchCoachingAppointmentAccepted

type PatchCoachingAppointmentAccepted struct {
	Payload *models.CoachingAppointmentReference
}

PatchCoachingAppointmentAccepted describes a response with status code 202, with default header values.

Appointment update request accepted.

func NewPatchCoachingAppointmentAccepted

func NewPatchCoachingAppointmentAccepted() *PatchCoachingAppointmentAccepted

NewPatchCoachingAppointmentAccepted creates a PatchCoachingAppointmentAccepted with default headers values

func (*PatchCoachingAppointmentAccepted) Error

func (*PatchCoachingAppointmentAccepted) GetPayload

func (*PatchCoachingAppointmentAccepted) IsClientError

func (o *PatchCoachingAppointmentAccepted) IsClientError() bool

IsClientError returns true when this patch coaching appointment accepted response has a 4xx status code

func (*PatchCoachingAppointmentAccepted) IsCode

func (o *PatchCoachingAppointmentAccepted) IsCode(code int) bool

IsCode returns true when this patch coaching appointment accepted response a status code equal to that given

func (*PatchCoachingAppointmentAccepted) IsRedirect

func (o *PatchCoachingAppointmentAccepted) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment accepted response has a 3xx status code

func (*PatchCoachingAppointmentAccepted) IsServerError

func (o *PatchCoachingAppointmentAccepted) IsServerError() bool

IsServerError returns true when this patch coaching appointment accepted response has a 5xx status code

func (*PatchCoachingAppointmentAccepted) IsSuccess

func (o *PatchCoachingAppointmentAccepted) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment accepted response has a 2xx status code

func (*PatchCoachingAppointmentAccepted) String

type PatchCoachingAppointmentAnnotationBadRequest

type PatchCoachingAppointmentAnnotationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPatchCoachingAppointmentAnnotationBadRequest

func NewPatchCoachingAppointmentAnnotationBadRequest() *PatchCoachingAppointmentAnnotationBadRequest

NewPatchCoachingAppointmentAnnotationBadRequest creates a PatchCoachingAppointmentAnnotationBadRequest with default headers values

func (*PatchCoachingAppointmentAnnotationBadRequest) Error

func (*PatchCoachingAppointmentAnnotationBadRequest) GetPayload

func (*PatchCoachingAppointmentAnnotationBadRequest) IsClientError

IsClientError returns true when this patch coaching appointment annotation bad request response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationBadRequest) IsCode

IsCode returns true when this patch coaching appointment annotation bad request response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationBadRequest) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation bad request response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationBadRequest) IsServerError

IsServerError returns true when this patch coaching appointment annotation bad request response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationBadRequest) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation bad request response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationBadRequest) String

type PatchCoachingAppointmentAnnotationForbidden

type PatchCoachingAppointmentAnnotationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPatchCoachingAppointmentAnnotationForbidden

func NewPatchCoachingAppointmentAnnotationForbidden() *PatchCoachingAppointmentAnnotationForbidden

NewPatchCoachingAppointmentAnnotationForbidden creates a PatchCoachingAppointmentAnnotationForbidden with default headers values

func (*PatchCoachingAppointmentAnnotationForbidden) Error

func (*PatchCoachingAppointmentAnnotationForbidden) GetPayload

func (*PatchCoachingAppointmentAnnotationForbidden) IsClientError

IsClientError returns true when this patch coaching appointment annotation forbidden response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationForbidden) IsCode

IsCode returns true when this patch coaching appointment annotation forbidden response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationForbidden) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation forbidden response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationForbidden) IsServerError

IsServerError returns true when this patch coaching appointment annotation forbidden response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationForbidden) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation forbidden response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationForbidden) String

type PatchCoachingAppointmentAnnotationGatewayTimeout

type PatchCoachingAppointmentAnnotationGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPatchCoachingAppointmentAnnotationGatewayTimeout

func NewPatchCoachingAppointmentAnnotationGatewayTimeout() *PatchCoachingAppointmentAnnotationGatewayTimeout

NewPatchCoachingAppointmentAnnotationGatewayTimeout creates a PatchCoachingAppointmentAnnotationGatewayTimeout with default headers values

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) Error

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) GetPayload

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) IsClientError

IsClientError returns true when this patch coaching appointment annotation gateway timeout response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) IsCode

IsCode returns true when this patch coaching appointment annotation gateway timeout response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation gateway timeout response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) IsServerError

IsServerError returns true when this patch coaching appointment annotation gateway timeout response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation gateway timeout response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationGatewayTimeout) String

type PatchCoachingAppointmentAnnotationInternalServerError

type PatchCoachingAppointmentAnnotationInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPatchCoachingAppointmentAnnotationInternalServerError

func NewPatchCoachingAppointmentAnnotationInternalServerError() *PatchCoachingAppointmentAnnotationInternalServerError

NewPatchCoachingAppointmentAnnotationInternalServerError creates a PatchCoachingAppointmentAnnotationInternalServerError with default headers values

func (*PatchCoachingAppointmentAnnotationInternalServerError) Error

func (*PatchCoachingAppointmentAnnotationInternalServerError) GetPayload

func (*PatchCoachingAppointmentAnnotationInternalServerError) IsClientError

IsClientError returns true when this patch coaching appointment annotation internal server error response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationInternalServerError) IsCode

IsCode returns true when this patch coaching appointment annotation internal server error response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationInternalServerError) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation internal server error response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationInternalServerError) IsServerError

IsServerError returns true when this patch coaching appointment annotation internal server error response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationInternalServerError) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation internal server error response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationInternalServerError) String

type PatchCoachingAppointmentAnnotationNotFound

type PatchCoachingAppointmentAnnotationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPatchCoachingAppointmentAnnotationNotFound

func NewPatchCoachingAppointmentAnnotationNotFound() *PatchCoachingAppointmentAnnotationNotFound

NewPatchCoachingAppointmentAnnotationNotFound creates a PatchCoachingAppointmentAnnotationNotFound with default headers values

func (*PatchCoachingAppointmentAnnotationNotFound) Error

func (*PatchCoachingAppointmentAnnotationNotFound) GetPayload

func (*PatchCoachingAppointmentAnnotationNotFound) IsClientError

IsClientError returns true when this patch coaching appointment annotation not found response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationNotFound) IsCode

IsCode returns true when this patch coaching appointment annotation not found response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationNotFound) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation not found response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationNotFound) IsServerError

IsServerError returns true when this patch coaching appointment annotation not found response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationNotFound) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation not found response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationNotFound) String

type PatchCoachingAppointmentAnnotationOK

type PatchCoachingAppointmentAnnotationOK struct {
	Payload *models.CoachingAnnotation
}

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

successful operation

func NewPatchCoachingAppointmentAnnotationOK

func NewPatchCoachingAppointmentAnnotationOK() *PatchCoachingAppointmentAnnotationOK

NewPatchCoachingAppointmentAnnotationOK creates a PatchCoachingAppointmentAnnotationOK with default headers values

func (*PatchCoachingAppointmentAnnotationOK) Error

func (*PatchCoachingAppointmentAnnotationOK) GetPayload

func (*PatchCoachingAppointmentAnnotationOK) IsClientError

func (o *PatchCoachingAppointmentAnnotationOK) IsClientError() bool

IsClientError returns true when this patch coaching appointment annotation o k response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationOK) IsCode

IsCode returns true when this patch coaching appointment annotation o k response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationOK) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation o k response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationOK) IsServerError

func (o *PatchCoachingAppointmentAnnotationOK) IsServerError() bool

IsServerError returns true when this patch coaching appointment annotation o k response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationOK) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation o k response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationOK) String

type PatchCoachingAppointmentAnnotationParams

type PatchCoachingAppointmentAnnotationParams struct {

	/* AnnotationID.

	   The ID of the annotation.
	*/
	AnnotationID string

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* Body.

	   The new version of the annotation
	*/
	Body *models.CoachingAnnotation

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

PatchCoachingAppointmentAnnotationParams contains all the parameters to send to the API endpoint

for the patch coaching appointment annotation operation.

Typically these are written to a http.Request.

func NewPatchCoachingAppointmentAnnotationParams

func NewPatchCoachingAppointmentAnnotationParams() *PatchCoachingAppointmentAnnotationParams

NewPatchCoachingAppointmentAnnotationParams creates a new PatchCoachingAppointmentAnnotationParams 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 NewPatchCoachingAppointmentAnnotationParamsWithContext

func NewPatchCoachingAppointmentAnnotationParamsWithContext(ctx context.Context) *PatchCoachingAppointmentAnnotationParams

NewPatchCoachingAppointmentAnnotationParamsWithContext creates a new PatchCoachingAppointmentAnnotationParams object with the ability to set a context for a request.

func NewPatchCoachingAppointmentAnnotationParamsWithHTTPClient

func NewPatchCoachingAppointmentAnnotationParamsWithHTTPClient(client *http.Client) *PatchCoachingAppointmentAnnotationParams

NewPatchCoachingAppointmentAnnotationParamsWithHTTPClient creates a new PatchCoachingAppointmentAnnotationParams object with the ability to set a custom HTTPClient for a request.

func NewPatchCoachingAppointmentAnnotationParamsWithTimeout

func NewPatchCoachingAppointmentAnnotationParamsWithTimeout(timeout time.Duration) *PatchCoachingAppointmentAnnotationParams

NewPatchCoachingAppointmentAnnotationParamsWithTimeout creates a new PatchCoachingAppointmentAnnotationParams object with the ability to set a timeout on a request.

func (*PatchCoachingAppointmentAnnotationParams) SetAnnotationID

func (o *PatchCoachingAppointmentAnnotationParams) SetAnnotationID(annotationID string)

SetAnnotationID adds the annotationId to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) SetAppointmentID

func (o *PatchCoachingAppointmentAnnotationParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) SetBody

SetBody adds the body to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) SetContext

SetContext adds the context to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) SetDefaults

SetDefaults hydrates default values in the patch coaching appointment annotation params (not the query body).

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

func (*PatchCoachingAppointmentAnnotationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) SetTimeout

SetTimeout adds the timeout to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithAnnotationID

WithAnnotationID adds the annotationID to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithBody

WithBody adds the body to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithContext

WithContext adds the context to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithDefaults

WithDefaults hydrates default values in the patch coaching appointment annotation params (not the query body).

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

func (*PatchCoachingAppointmentAnnotationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WithTimeout

WithTimeout adds the timeout to the patch coaching appointment annotation params

func (*PatchCoachingAppointmentAnnotationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchCoachingAppointmentAnnotationReader

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

PatchCoachingAppointmentAnnotationReader is a Reader for the PatchCoachingAppointmentAnnotation structure.

func (*PatchCoachingAppointmentAnnotationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchCoachingAppointmentAnnotationRequestEntityTooLarge

type PatchCoachingAppointmentAnnotationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentAnnotationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPatchCoachingAppointmentAnnotationRequestEntityTooLarge

func NewPatchCoachingAppointmentAnnotationRequestEntityTooLarge() *PatchCoachingAppointmentAnnotationRequestEntityTooLarge

NewPatchCoachingAppointmentAnnotationRequestEntityTooLarge creates a PatchCoachingAppointmentAnnotationRequestEntityTooLarge with default headers values

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) Error

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) GetPayload

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) IsClientError

IsClientError returns true when this patch coaching appointment annotation request entity too large response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) IsCode

IsCode returns true when this patch coaching appointment annotation request entity too large response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation request entity too large response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) IsServerError

IsServerError returns true when this patch coaching appointment annotation request entity too large response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation request entity too large response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationRequestEntityTooLarge) String

type PatchCoachingAppointmentAnnotationRequestTimeout

type PatchCoachingAppointmentAnnotationRequestTimeout struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentAnnotationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPatchCoachingAppointmentAnnotationRequestTimeout

func NewPatchCoachingAppointmentAnnotationRequestTimeout() *PatchCoachingAppointmentAnnotationRequestTimeout

NewPatchCoachingAppointmentAnnotationRequestTimeout creates a PatchCoachingAppointmentAnnotationRequestTimeout with default headers values

func (*PatchCoachingAppointmentAnnotationRequestTimeout) Error

func (*PatchCoachingAppointmentAnnotationRequestTimeout) GetPayload

func (*PatchCoachingAppointmentAnnotationRequestTimeout) IsClientError

IsClientError returns true when this patch coaching appointment annotation request timeout response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationRequestTimeout) IsCode

IsCode returns true when this patch coaching appointment annotation request timeout response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationRequestTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation request timeout response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationRequestTimeout) IsServerError

IsServerError returns true when this patch coaching appointment annotation request timeout response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationRequestTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation request timeout response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationRequestTimeout) String

type PatchCoachingAppointmentAnnotationServiceUnavailable

type PatchCoachingAppointmentAnnotationServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPatchCoachingAppointmentAnnotationServiceUnavailable

func NewPatchCoachingAppointmentAnnotationServiceUnavailable() *PatchCoachingAppointmentAnnotationServiceUnavailable

NewPatchCoachingAppointmentAnnotationServiceUnavailable creates a PatchCoachingAppointmentAnnotationServiceUnavailable with default headers values

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) Error

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) GetPayload

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) IsClientError

IsClientError returns true when this patch coaching appointment annotation service unavailable response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) IsCode

IsCode returns true when this patch coaching appointment annotation service unavailable response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation service unavailable response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) IsServerError

IsServerError returns true when this patch coaching appointment annotation service unavailable response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation service unavailable response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationServiceUnavailable) String

type PatchCoachingAppointmentAnnotationTooManyRequests

type PatchCoachingAppointmentAnnotationTooManyRequests struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentAnnotationTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPatchCoachingAppointmentAnnotationTooManyRequests

func NewPatchCoachingAppointmentAnnotationTooManyRequests() *PatchCoachingAppointmentAnnotationTooManyRequests

NewPatchCoachingAppointmentAnnotationTooManyRequests creates a PatchCoachingAppointmentAnnotationTooManyRequests with default headers values

func (*PatchCoachingAppointmentAnnotationTooManyRequests) Error

func (*PatchCoachingAppointmentAnnotationTooManyRequests) GetPayload

func (*PatchCoachingAppointmentAnnotationTooManyRequests) IsClientError

IsClientError returns true when this patch coaching appointment annotation too many requests response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationTooManyRequests) IsCode

IsCode returns true when this patch coaching appointment annotation too many requests response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationTooManyRequests) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation too many requests response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationTooManyRequests) IsServerError

IsServerError returns true when this patch coaching appointment annotation too many requests response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationTooManyRequests) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation too many requests response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationTooManyRequests) String

type PatchCoachingAppointmentAnnotationUnauthorized

type PatchCoachingAppointmentAnnotationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPatchCoachingAppointmentAnnotationUnauthorized

func NewPatchCoachingAppointmentAnnotationUnauthorized() *PatchCoachingAppointmentAnnotationUnauthorized

NewPatchCoachingAppointmentAnnotationUnauthorized creates a PatchCoachingAppointmentAnnotationUnauthorized with default headers values

func (*PatchCoachingAppointmentAnnotationUnauthorized) Error

func (*PatchCoachingAppointmentAnnotationUnauthorized) GetPayload

func (*PatchCoachingAppointmentAnnotationUnauthorized) IsClientError

IsClientError returns true when this patch coaching appointment annotation unauthorized response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationUnauthorized) IsCode

IsCode returns true when this patch coaching appointment annotation unauthorized response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationUnauthorized) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation unauthorized response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationUnauthorized) IsServerError

IsServerError returns true when this patch coaching appointment annotation unauthorized response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationUnauthorized) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation unauthorized response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationUnauthorized) String

type PatchCoachingAppointmentAnnotationUnsupportedMediaType

type PatchCoachingAppointmentAnnotationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentAnnotationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPatchCoachingAppointmentAnnotationUnsupportedMediaType

func NewPatchCoachingAppointmentAnnotationUnsupportedMediaType() *PatchCoachingAppointmentAnnotationUnsupportedMediaType

NewPatchCoachingAppointmentAnnotationUnsupportedMediaType creates a PatchCoachingAppointmentAnnotationUnsupportedMediaType with default headers values

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) Error

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) GetPayload

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) IsClientError

IsClientError returns true when this patch coaching appointment annotation unsupported media type response has a 4xx status code

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) IsCode

IsCode returns true when this patch coaching appointment annotation unsupported media type response a status code equal to that given

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this patch coaching appointment annotation unsupported media type response has a 3xx status code

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) IsServerError

IsServerError returns true when this patch coaching appointment annotation unsupported media type response has a 5xx status code

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this patch coaching appointment annotation unsupported media type response has a 2xx status code

func (*PatchCoachingAppointmentAnnotationUnsupportedMediaType) String

type PatchCoachingAppointmentBadRequest

type PatchCoachingAppointmentBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPatchCoachingAppointmentBadRequest

func NewPatchCoachingAppointmentBadRequest() *PatchCoachingAppointmentBadRequest

NewPatchCoachingAppointmentBadRequest creates a PatchCoachingAppointmentBadRequest with default headers values

func (*PatchCoachingAppointmentBadRequest) Error

func (*PatchCoachingAppointmentBadRequest) GetPayload

func (*PatchCoachingAppointmentBadRequest) IsClientError

func (o *PatchCoachingAppointmentBadRequest) IsClientError() bool

IsClientError returns true when this patch coaching appointment bad request response has a 4xx status code

func (*PatchCoachingAppointmentBadRequest) IsCode

IsCode returns true when this patch coaching appointment bad request response a status code equal to that given

func (*PatchCoachingAppointmentBadRequest) IsRedirect

func (o *PatchCoachingAppointmentBadRequest) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment bad request response has a 3xx status code

func (*PatchCoachingAppointmentBadRequest) IsServerError

func (o *PatchCoachingAppointmentBadRequest) IsServerError() bool

IsServerError returns true when this patch coaching appointment bad request response has a 5xx status code

func (*PatchCoachingAppointmentBadRequest) IsSuccess

IsSuccess returns true when this patch coaching appointment bad request response has a 2xx status code

func (*PatchCoachingAppointmentBadRequest) String

type PatchCoachingAppointmentConflict

type PatchCoachingAppointmentConflict struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentConflict describes a response with status code 409, with default header values.

Conflict

func NewPatchCoachingAppointmentConflict

func NewPatchCoachingAppointmentConflict() *PatchCoachingAppointmentConflict

NewPatchCoachingAppointmentConflict creates a PatchCoachingAppointmentConflict with default headers values

func (*PatchCoachingAppointmentConflict) Error

func (*PatchCoachingAppointmentConflict) GetPayload

func (*PatchCoachingAppointmentConflict) IsClientError

func (o *PatchCoachingAppointmentConflict) IsClientError() bool

IsClientError returns true when this patch coaching appointment conflict response has a 4xx status code

func (*PatchCoachingAppointmentConflict) IsCode

func (o *PatchCoachingAppointmentConflict) IsCode(code int) bool

IsCode returns true when this patch coaching appointment conflict response a status code equal to that given

func (*PatchCoachingAppointmentConflict) IsRedirect

func (o *PatchCoachingAppointmentConflict) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment conflict response has a 3xx status code

func (*PatchCoachingAppointmentConflict) IsServerError

func (o *PatchCoachingAppointmentConflict) IsServerError() bool

IsServerError returns true when this patch coaching appointment conflict response has a 5xx status code

func (*PatchCoachingAppointmentConflict) IsSuccess

func (o *PatchCoachingAppointmentConflict) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment conflict response has a 2xx status code

func (*PatchCoachingAppointmentConflict) String

type PatchCoachingAppointmentForbidden

type PatchCoachingAppointmentForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPatchCoachingAppointmentForbidden

func NewPatchCoachingAppointmentForbidden() *PatchCoachingAppointmentForbidden

NewPatchCoachingAppointmentForbidden creates a PatchCoachingAppointmentForbidden with default headers values

func (*PatchCoachingAppointmentForbidden) Error

func (*PatchCoachingAppointmentForbidden) GetPayload

func (*PatchCoachingAppointmentForbidden) IsClientError

func (o *PatchCoachingAppointmentForbidden) IsClientError() bool

IsClientError returns true when this patch coaching appointment forbidden response has a 4xx status code

func (*PatchCoachingAppointmentForbidden) IsCode

func (o *PatchCoachingAppointmentForbidden) IsCode(code int) bool

IsCode returns true when this patch coaching appointment forbidden response a status code equal to that given

func (*PatchCoachingAppointmentForbidden) IsRedirect

func (o *PatchCoachingAppointmentForbidden) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment forbidden response has a 3xx status code

func (*PatchCoachingAppointmentForbidden) IsServerError

func (o *PatchCoachingAppointmentForbidden) IsServerError() bool

IsServerError returns true when this patch coaching appointment forbidden response has a 5xx status code

func (*PatchCoachingAppointmentForbidden) IsSuccess

func (o *PatchCoachingAppointmentForbidden) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment forbidden response has a 2xx status code

func (*PatchCoachingAppointmentForbidden) String

type PatchCoachingAppointmentGatewayTimeout

type PatchCoachingAppointmentGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPatchCoachingAppointmentGatewayTimeout

func NewPatchCoachingAppointmentGatewayTimeout() *PatchCoachingAppointmentGatewayTimeout

NewPatchCoachingAppointmentGatewayTimeout creates a PatchCoachingAppointmentGatewayTimeout with default headers values

func (*PatchCoachingAppointmentGatewayTimeout) Error

func (*PatchCoachingAppointmentGatewayTimeout) GetPayload

func (*PatchCoachingAppointmentGatewayTimeout) IsClientError

func (o *PatchCoachingAppointmentGatewayTimeout) IsClientError() bool

IsClientError returns true when this patch coaching appointment gateway timeout response has a 4xx status code

func (*PatchCoachingAppointmentGatewayTimeout) IsCode

IsCode returns true when this patch coaching appointment gateway timeout response a status code equal to that given

func (*PatchCoachingAppointmentGatewayTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment gateway timeout response has a 3xx status code

func (*PatchCoachingAppointmentGatewayTimeout) IsServerError

func (o *PatchCoachingAppointmentGatewayTimeout) IsServerError() bool

IsServerError returns true when this patch coaching appointment gateway timeout response has a 5xx status code

func (*PatchCoachingAppointmentGatewayTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment gateway timeout response has a 2xx status code

func (*PatchCoachingAppointmentGatewayTimeout) String

type PatchCoachingAppointmentInternalServerError

type PatchCoachingAppointmentInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPatchCoachingAppointmentInternalServerError

func NewPatchCoachingAppointmentInternalServerError() *PatchCoachingAppointmentInternalServerError

NewPatchCoachingAppointmentInternalServerError creates a PatchCoachingAppointmentInternalServerError with default headers values

func (*PatchCoachingAppointmentInternalServerError) Error

func (*PatchCoachingAppointmentInternalServerError) GetPayload

func (*PatchCoachingAppointmentInternalServerError) IsClientError

IsClientError returns true when this patch coaching appointment internal server error response has a 4xx status code

func (*PatchCoachingAppointmentInternalServerError) IsCode

IsCode returns true when this patch coaching appointment internal server error response a status code equal to that given

func (*PatchCoachingAppointmentInternalServerError) IsRedirect

IsRedirect returns true when this patch coaching appointment internal server error response has a 3xx status code

func (*PatchCoachingAppointmentInternalServerError) IsServerError

IsServerError returns true when this patch coaching appointment internal server error response has a 5xx status code

func (*PatchCoachingAppointmentInternalServerError) IsSuccess

IsSuccess returns true when this patch coaching appointment internal server error response has a 2xx status code

func (*PatchCoachingAppointmentInternalServerError) String

type PatchCoachingAppointmentNotFound

type PatchCoachingAppointmentNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPatchCoachingAppointmentNotFound

func NewPatchCoachingAppointmentNotFound() *PatchCoachingAppointmentNotFound

NewPatchCoachingAppointmentNotFound creates a PatchCoachingAppointmentNotFound with default headers values

func (*PatchCoachingAppointmentNotFound) Error

func (*PatchCoachingAppointmentNotFound) GetPayload

func (*PatchCoachingAppointmentNotFound) IsClientError

func (o *PatchCoachingAppointmentNotFound) IsClientError() bool

IsClientError returns true when this patch coaching appointment not found response has a 4xx status code

func (*PatchCoachingAppointmentNotFound) IsCode

func (o *PatchCoachingAppointmentNotFound) IsCode(code int) bool

IsCode returns true when this patch coaching appointment not found response a status code equal to that given

func (*PatchCoachingAppointmentNotFound) IsRedirect

func (o *PatchCoachingAppointmentNotFound) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment not found response has a 3xx status code

func (*PatchCoachingAppointmentNotFound) IsServerError

func (o *PatchCoachingAppointmentNotFound) IsServerError() bool

IsServerError returns true when this patch coaching appointment not found response has a 5xx status code

func (*PatchCoachingAppointmentNotFound) IsSuccess

func (o *PatchCoachingAppointmentNotFound) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment not found response has a 2xx status code

func (*PatchCoachingAppointmentNotFound) String

type PatchCoachingAppointmentOK

type PatchCoachingAppointmentOK struct {
	Payload *models.CoachingAppointmentResponse
}

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

Appointment updated

func NewPatchCoachingAppointmentOK

func NewPatchCoachingAppointmentOK() *PatchCoachingAppointmentOK

NewPatchCoachingAppointmentOK creates a PatchCoachingAppointmentOK with default headers values

func (*PatchCoachingAppointmentOK) Error

func (*PatchCoachingAppointmentOK) GetPayload

func (*PatchCoachingAppointmentOK) IsClientError

func (o *PatchCoachingAppointmentOK) IsClientError() bool

IsClientError returns true when this patch coaching appointment o k response has a 4xx status code

func (*PatchCoachingAppointmentOK) IsCode

func (o *PatchCoachingAppointmentOK) IsCode(code int) bool

IsCode returns true when this patch coaching appointment o k response a status code equal to that given

func (*PatchCoachingAppointmentOK) IsRedirect

func (o *PatchCoachingAppointmentOK) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment o k response has a 3xx status code

func (*PatchCoachingAppointmentOK) IsServerError

func (o *PatchCoachingAppointmentOK) IsServerError() bool

IsServerError returns true when this patch coaching appointment o k response has a 5xx status code

func (*PatchCoachingAppointmentOK) IsSuccess

func (o *PatchCoachingAppointmentOK) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment o k response has a 2xx status code

func (*PatchCoachingAppointmentOK) String

func (o *PatchCoachingAppointmentOK) String() string

type PatchCoachingAppointmentParams

type PatchCoachingAppointmentParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* Body.

	   The new version of the appointment
	*/
	Body *models.UpdateCoachingAppointmentRequest

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

PatchCoachingAppointmentParams contains all the parameters to send to the API endpoint

for the patch coaching appointment operation.

Typically these are written to a http.Request.

func NewPatchCoachingAppointmentParams

func NewPatchCoachingAppointmentParams() *PatchCoachingAppointmentParams

NewPatchCoachingAppointmentParams creates a new PatchCoachingAppointmentParams 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 NewPatchCoachingAppointmentParamsWithContext

func NewPatchCoachingAppointmentParamsWithContext(ctx context.Context) *PatchCoachingAppointmentParams

NewPatchCoachingAppointmentParamsWithContext creates a new PatchCoachingAppointmentParams object with the ability to set a context for a request.

func NewPatchCoachingAppointmentParamsWithHTTPClient

func NewPatchCoachingAppointmentParamsWithHTTPClient(client *http.Client) *PatchCoachingAppointmentParams

NewPatchCoachingAppointmentParamsWithHTTPClient creates a new PatchCoachingAppointmentParams object with the ability to set a custom HTTPClient for a request.

func NewPatchCoachingAppointmentParamsWithTimeout

func NewPatchCoachingAppointmentParamsWithTimeout(timeout time.Duration) *PatchCoachingAppointmentParams

NewPatchCoachingAppointmentParamsWithTimeout creates a new PatchCoachingAppointmentParams object with the ability to set a timeout on a request.

func (*PatchCoachingAppointmentParams) SetAppointmentID

func (o *PatchCoachingAppointmentParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) SetBody

SetBody adds the body to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) SetContext

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

SetContext adds the context to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) SetDefaults

func (o *PatchCoachingAppointmentParams) SetDefaults()

SetDefaults hydrates default values in the patch coaching appointment params (not the query body).

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

func (*PatchCoachingAppointmentParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) SetTimeout

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

SetTimeout adds the timeout to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WithAppointmentID

func (o *PatchCoachingAppointmentParams) WithAppointmentID(appointmentID string) *PatchCoachingAppointmentParams

WithAppointmentID adds the appointmentID to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WithBody

WithBody adds the body to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WithContext

WithContext adds the context to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WithDefaults

WithDefaults hydrates default values in the patch coaching appointment params (not the query body).

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

func (*PatchCoachingAppointmentParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WithTimeout

WithTimeout adds the timeout to the patch coaching appointment params

func (*PatchCoachingAppointmentParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchCoachingAppointmentReader

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

PatchCoachingAppointmentReader is a Reader for the PatchCoachingAppointment structure.

func (*PatchCoachingAppointmentReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchCoachingAppointmentRequestEntityTooLarge

type PatchCoachingAppointmentRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPatchCoachingAppointmentRequestEntityTooLarge

func NewPatchCoachingAppointmentRequestEntityTooLarge() *PatchCoachingAppointmentRequestEntityTooLarge

NewPatchCoachingAppointmentRequestEntityTooLarge creates a PatchCoachingAppointmentRequestEntityTooLarge with default headers values

func (*PatchCoachingAppointmentRequestEntityTooLarge) Error

func (*PatchCoachingAppointmentRequestEntityTooLarge) GetPayload

func (*PatchCoachingAppointmentRequestEntityTooLarge) IsClientError

IsClientError returns true when this patch coaching appointment request entity too large response has a 4xx status code

func (*PatchCoachingAppointmentRequestEntityTooLarge) IsCode

IsCode returns true when this patch coaching appointment request entity too large response a status code equal to that given

func (*PatchCoachingAppointmentRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this patch coaching appointment request entity too large response has a 3xx status code

func (*PatchCoachingAppointmentRequestEntityTooLarge) IsServerError

IsServerError returns true when this patch coaching appointment request entity too large response has a 5xx status code

func (*PatchCoachingAppointmentRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this patch coaching appointment request entity too large response has a 2xx status code

func (*PatchCoachingAppointmentRequestEntityTooLarge) String

type PatchCoachingAppointmentRequestTimeout

type PatchCoachingAppointmentRequestTimeout struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPatchCoachingAppointmentRequestTimeout

func NewPatchCoachingAppointmentRequestTimeout() *PatchCoachingAppointmentRequestTimeout

NewPatchCoachingAppointmentRequestTimeout creates a PatchCoachingAppointmentRequestTimeout with default headers values

func (*PatchCoachingAppointmentRequestTimeout) Error

func (*PatchCoachingAppointmentRequestTimeout) GetPayload

func (*PatchCoachingAppointmentRequestTimeout) IsClientError

func (o *PatchCoachingAppointmentRequestTimeout) IsClientError() bool

IsClientError returns true when this patch coaching appointment request timeout response has a 4xx status code

func (*PatchCoachingAppointmentRequestTimeout) IsCode

IsCode returns true when this patch coaching appointment request timeout response a status code equal to that given

func (*PatchCoachingAppointmentRequestTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment request timeout response has a 3xx status code

func (*PatchCoachingAppointmentRequestTimeout) IsServerError

func (o *PatchCoachingAppointmentRequestTimeout) IsServerError() bool

IsServerError returns true when this patch coaching appointment request timeout response has a 5xx status code

func (*PatchCoachingAppointmentRequestTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment request timeout response has a 2xx status code

func (*PatchCoachingAppointmentRequestTimeout) String

type PatchCoachingAppointmentServiceUnavailable

type PatchCoachingAppointmentServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPatchCoachingAppointmentServiceUnavailable

func NewPatchCoachingAppointmentServiceUnavailable() *PatchCoachingAppointmentServiceUnavailable

NewPatchCoachingAppointmentServiceUnavailable creates a PatchCoachingAppointmentServiceUnavailable with default headers values

func (*PatchCoachingAppointmentServiceUnavailable) Error

func (*PatchCoachingAppointmentServiceUnavailable) GetPayload

func (*PatchCoachingAppointmentServiceUnavailable) IsClientError

IsClientError returns true when this patch coaching appointment service unavailable response has a 4xx status code

func (*PatchCoachingAppointmentServiceUnavailable) IsCode

IsCode returns true when this patch coaching appointment service unavailable response a status code equal to that given

func (*PatchCoachingAppointmentServiceUnavailable) IsRedirect

IsRedirect returns true when this patch coaching appointment service unavailable response has a 3xx status code

func (*PatchCoachingAppointmentServiceUnavailable) IsServerError

IsServerError returns true when this patch coaching appointment service unavailable response has a 5xx status code

func (*PatchCoachingAppointmentServiceUnavailable) IsSuccess

IsSuccess returns true when this patch coaching appointment service unavailable response has a 2xx status code

func (*PatchCoachingAppointmentServiceUnavailable) String

type PatchCoachingAppointmentStatusBadRequest

type PatchCoachingAppointmentStatusBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPatchCoachingAppointmentStatusBadRequest

func NewPatchCoachingAppointmentStatusBadRequest() *PatchCoachingAppointmentStatusBadRequest

NewPatchCoachingAppointmentStatusBadRequest creates a PatchCoachingAppointmentStatusBadRequest with default headers values

func (*PatchCoachingAppointmentStatusBadRequest) Error

func (*PatchCoachingAppointmentStatusBadRequest) GetPayload

func (*PatchCoachingAppointmentStatusBadRequest) IsClientError

IsClientError returns true when this patch coaching appointment status bad request response has a 4xx status code

func (*PatchCoachingAppointmentStatusBadRequest) IsCode

IsCode returns true when this patch coaching appointment status bad request response a status code equal to that given

func (*PatchCoachingAppointmentStatusBadRequest) IsRedirect

IsRedirect returns true when this patch coaching appointment status bad request response has a 3xx status code

func (*PatchCoachingAppointmentStatusBadRequest) IsServerError

IsServerError returns true when this patch coaching appointment status bad request response has a 5xx status code

func (*PatchCoachingAppointmentStatusBadRequest) IsSuccess

IsSuccess returns true when this patch coaching appointment status bad request response has a 2xx status code

func (*PatchCoachingAppointmentStatusBadRequest) String

type PatchCoachingAppointmentStatusConflict

type PatchCoachingAppointmentStatusConflict struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentStatusConflict describes a response with status code 409, with default header values.

Conflict

func NewPatchCoachingAppointmentStatusConflict

func NewPatchCoachingAppointmentStatusConflict() *PatchCoachingAppointmentStatusConflict

NewPatchCoachingAppointmentStatusConflict creates a PatchCoachingAppointmentStatusConflict with default headers values

func (*PatchCoachingAppointmentStatusConflict) Error

func (*PatchCoachingAppointmentStatusConflict) GetPayload

func (*PatchCoachingAppointmentStatusConflict) IsClientError

func (o *PatchCoachingAppointmentStatusConflict) IsClientError() bool

IsClientError returns true when this patch coaching appointment status conflict response has a 4xx status code

func (*PatchCoachingAppointmentStatusConflict) IsCode

IsCode returns true when this patch coaching appointment status conflict response a status code equal to that given

func (*PatchCoachingAppointmentStatusConflict) IsRedirect

IsRedirect returns true when this patch coaching appointment status conflict response has a 3xx status code

func (*PatchCoachingAppointmentStatusConflict) IsServerError

func (o *PatchCoachingAppointmentStatusConflict) IsServerError() bool

IsServerError returns true when this patch coaching appointment status conflict response has a 5xx status code

func (*PatchCoachingAppointmentStatusConflict) IsSuccess

IsSuccess returns true when this patch coaching appointment status conflict response has a 2xx status code

func (*PatchCoachingAppointmentStatusConflict) String

type PatchCoachingAppointmentStatusForbidden

type PatchCoachingAppointmentStatusForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPatchCoachingAppointmentStatusForbidden

func NewPatchCoachingAppointmentStatusForbidden() *PatchCoachingAppointmentStatusForbidden

NewPatchCoachingAppointmentStatusForbidden creates a PatchCoachingAppointmentStatusForbidden with default headers values

func (*PatchCoachingAppointmentStatusForbidden) Error

func (*PatchCoachingAppointmentStatusForbidden) GetPayload

func (*PatchCoachingAppointmentStatusForbidden) IsClientError

func (o *PatchCoachingAppointmentStatusForbidden) IsClientError() bool

IsClientError returns true when this patch coaching appointment status forbidden response has a 4xx status code

func (*PatchCoachingAppointmentStatusForbidden) IsCode

IsCode returns true when this patch coaching appointment status forbidden response a status code equal to that given

func (*PatchCoachingAppointmentStatusForbidden) IsRedirect

IsRedirect returns true when this patch coaching appointment status forbidden response has a 3xx status code

func (*PatchCoachingAppointmentStatusForbidden) IsServerError

func (o *PatchCoachingAppointmentStatusForbidden) IsServerError() bool

IsServerError returns true when this patch coaching appointment status forbidden response has a 5xx status code

func (*PatchCoachingAppointmentStatusForbidden) IsSuccess

IsSuccess returns true when this patch coaching appointment status forbidden response has a 2xx status code

func (*PatchCoachingAppointmentStatusForbidden) String

type PatchCoachingAppointmentStatusGatewayTimeout

type PatchCoachingAppointmentStatusGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPatchCoachingAppointmentStatusGatewayTimeout

func NewPatchCoachingAppointmentStatusGatewayTimeout() *PatchCoachingAppointmentStatusGatewayTimeout

NewPatchCoachingAppointmentStatusGatewayTimeout creates a PatchCoachingAppointmentStatusGatewayTimeout with default headers values

func (*PatchCoachingAppointmentStatusGatewayTimeout) Error

func (*PatchCoachingAppointmentStatusGatewayTimeout) GetPayload

func (*PatchCoachingAppointmentStatusGatewayTimeout) IsClientError

IsClientError returns true when this patch coaching appointment status gateway timeout response has a 4xx status code

func (*PatchCoachingAppointmentStatusGatewayTimeout) IsCode

IsCode returns true when this patch coaching appointment status gateway timeout response a status code equal to that given

func (*PatchCoachingAppointmentStatusGatewayTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment status gateway timeout response has a 3xx status code

func (*PatchCoachingAppointmentStatusGatewayTimeout) IsServerError

IsServerError returns true when this patch coaching appointment status gateway timeout response has a 5xx status code

func (*PatchCoachingAppointmentStatusGatewayTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment status gateway timeout response has a 2xx status code

func (*PatchCoachingAppointmentStatusGatewayTimeout) String

type PatchCoachingAppointmentStatusInternalServerError

type PatchCoachingAppointmentStatusInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPatchCoachingAppointmentStatusInternalServerError

func NewPatchCoachingAppointmentStatusInternalServerError() *PatchCoachingAppointmentStatusInternalServerError

NewPatchCoachingAppointmentStatusInternalServerError creates a PatchCoachingAppointmentStatusInternalServerError with default headers values

func (*PatchCoachingAppointmentStatusInternalServerError) Error

func (*PatchCoachingAppointmentStatusInternalServerError) GetPayload

func (*PatchCoachingAppointmentStatusInternalServerError) IsClientError

IsClientError returns true when this patch coaching appointment status internal server error response has a 4xx status code

func (*PatchCoachingAppointmentStatusInternalServerError) IsCode

IsCode returns true when this patch coaching appointment status internal server error response a status code equal to that given

func (*PatchCoachingAppointmentStatusInternalServerError) IsRedirect

IsRedirect returns true when this patch coaching appointment status internal server error response has a 3xx status code

func (*PatchCoachingAppointmentStatusInternalServerError) IsServerError

IsServerError returns true when this patch coaching appointment status internal server error response has a 5xx status code

func (*PatchCoachingAppointmentStatusInternalServerError) IsSuccess

IsSuccess returns true when this patch coaching appointment status internal server error response has a 2xx status code

func (*PatchCoachingAppointmentStatusInternalServerError) String

type PatchCoachingAppointmentStatusNotFound

type PatchCoachingAppointmentStatusNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPatchCoachingAppointmentStatusNotFound

func NewPatchCoachingAppointmentStatusNotFound() *PatchCoachingAppointmentStatusNotFound

NewPatchCoachingAppointmentStatusNotFound creates a PatchCoachingAppointmentStatusNotFound with default headers values

func (*PatchCoachingAppointmentStatusNotFound) Error

func (*PatchCoachingAppointmentStatusNotFound) GetPayload

func (*PatchCoachingAppointmentStatusNotFound) IsClientError

func (o *PatchCoachingAppointmentStatusNotFound) IsClientError() bool

IsClientError returns true when this patch coaching appointment status not found response has a 4xx status code

func (*PatchCoachingAppointmentStatusNotFound) IsCode

IsCode returns true when this patch coaching appointment status not found response a status code equal to that given

func (*PatchCoachingAppointmentStatusNotFound) IsRedirect

IsRedirect returns true when this patch coaching appointment status not found response has a 3xx status code

func (*PatchCoachingAppointmentStatusNotFound) IsServerError

func (o *PatchCoachingAppointmentStatusNotFound) IsServerError() bool

IsServerError returns true when this patch coaching appointment status not found response has a 5xx status code

func (*PatchCoachingAppointmentStatusNotFound) IsSuccess

IsSuccess returns true when this patch coaching appointment status not found response has a 2xx status code

func (*PatchCoachingAppointmentStatusNotFound) String

type PatchCoachingAppointmentStatusOK

type PatchCoachingAppointmentStatusOK struct {
	Payload *models.CoachingAppointmentStatusResponse
}

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

The status is posted successfully

func NewPatchCoachingAppointmentStatusOK

func NewPatchCoachingAppointmentStatusOK() *PatchCoachingAppointmentStatusOK

NewPatchCoachingAppointmentStatusOK creates a PatchCoachingAppointmentStatusOK with default headers values

func (*PatchCoachingAppointmentStatusOK) Error

func (*PatchCoachingAppointmentStatusOK) GetPayload

func (*PatchCoachingAppointmentStatusOK) IsClientError

func (o *PatchCoachingAppointmentStatusOK) IsClientError() bool

IsClientError returns true when this patch coaching appointment status o k response has a 4xx status code

func (*PatchCoachingAppointmentStatusOK) IsCode

func (o *PatchCoachingAppointmentStatusOK) IsCode(code int) bool

IsCode returns true when this patch coaching appointment status o k response a status code equal to that given

func (*PatchCoachingAppointmentStatusOK) IsRedirect

func (o *PatchCoachingAppointmentStatusOK) IsRedirect() bool

IsRedirect returns true when this patch coaching appointment status o k response has a 3xx status code

func (*PatchCoachingAppointmentStatusOK) IsServerError

func (o *PatchCoachingAppointmentStatusOK) IsServerError() bool

IsServerError returns true when this patch coaching appointment status o k response has a 5xx status code

func (*PatchCoachingAppointmentStatusOK) IsSuccess

func (o *PatchCoachingAppointmentStatusOK) IsSuccess() bool

IsSuccess returns true when this patch coaching appointment status o k response has a 2xx status code

func (*PatchCoachingAppointmentStatusOK) String

type PatchCoachingAppointmentStatusParams

type PatchCoachingAppointmentStatusParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* Body.

	   Updated status of the coaching appointment
	*/
	Body *models.CoachingAppointmentStatusRequest

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

PatchCoachingAppointmentStatusParams contains all the parameters to send to the API endpoint

for the patch coaching appointment status operation.

Typically these are written to a http.Request.

func NewPatchCoachingAppointmentStatusParams

func NewPatchCoachingAppointmentStatusParams() *PatchCoachingAppointmentStatusParams

NewPatchCoachingAppointmentStatusParams creates a new PatchCoachingAppointmentStatusParams 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 NewPatchCoachingAppointmentStatusParamsWithContext

func NewPatchCoachingAppointmentStatusParamsWithContext(ctx context.Context) *PatchCoachingAppointmentStatusParams

NewPatchCoachingAppointmentStatusParamsWithContext creates a new PatchCoachingAppointmentStatusParams object with the ability to set a context for a request.

func NewPatchCoachingAppointmentStatusParamsWithHTTPClient

func NewPatchCoachingAppointmentStatusParamsWithHTTPClient(client *http.Client) *PatchCoachingAppointmentStatusParams

NewPatchCoachingAppointmentStatusParamsWithHTTPClient creates a new PatchCoachingAppointmentStatusParams object with the ability to set a custom HTTPClient for a request.

func NewPatchCoachingAppointmentStatusParamsWithTimeout

func NewPatchCoachingAppointmentStatusParamsWithTimeout(timeout time.Duration) *PatchCoachingAppointmentStatusParams

NewPatchCoachingAppointmentStatusParamsWithTimeout creates a new PatchCoachingAppointmentStatusParams object with the ability to set a timeout on a request.

func (*PatchCoachingAppointmentStatusParams) SetAppointmentID

func (o *PatchCoachingAppointmentStatusParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) SetBody

SetBody adds the body to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) SetContext

SetContext adds the context to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) SetDefaults

func (o *PatchCoachingAppointmentStatusParams) SetDefaults()

SetDefaults hydrates default values in the patch coaching appointment status params (not the query body).

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

func (*PatchCoachingAppointmentStatusParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) SetTimeout

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

SetTimeout adds the timeout to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WithBody

WithBody adds the body to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WithContext

WithContext adds the context to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WithDefaults

WithDefaults hydrates default values in the patch coaching appointment status params (not the query body).

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

func (*PatchCoachingAppointmentStatusParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WithTimeout

WithTimeout adds the timeout to the patch coaching appointment status params

func (*PatchCoachingAppointmentStatusParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchCoachingAppointmentStatusReader

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

PatchCoachingAppointmentStatusReader is a Reader for the PatchCoachingAppointmentStatus structure.

func (*PatchCoachingAppointmentStatusReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchCoachingAppointmentStatusRequestEntityTooLarge

type PatchCoachingAppointmentStatusRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentStatusRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPatchCoachingAppointmentStatusRequestEntityTooLarge

func NewPatchCoachingAppointmentStatusRequestEntityTooLarge() *PatchCoachingAppointmentStatusRequestEntityTooLarge

NewPatchCoachingAppointmentStatusRequestEntityTooLarge creates a PatchCoachingAppointmentStatusRequestEntityTooLarge with default headers values

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) Error

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) GetPayload

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) IsClientError

IsClientError returns true when this patch coaching appointment status request entity too large response has a 4xx status code

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) IsCode

IsCode returns true when this patch coaching appointment status request entity too large response a status code equal to that given

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this patch coaching appointment status request entity too large response has a 3xx status code

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) IsServerError

IsServerError returns true when this patch coaching appointment status request entity too large response has a 5xx status code

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this patch coaching appointment status request entity too large response has a 2xx status code

func (*PatchCoachingAppointmentStatusRequestEntityTooLarge) String

type PatchCoachingAppointmentStatusRequestTimeout

type PatchCoachingAppointmentStatusRequestTimeout struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentStatusRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPatchCoachingAppointmentStatusRequestTimeout

func NewPatchCoachingAppointmentStatusRequestTimeout() *PatchCoachingAppointmentStatusRequestTimeout

NewPatchCoachingAppointmentStatusRequestTimeout creates a PatchCoachingAppointmentStatusRequestTimeout with default headers values

func (*PatchCoachingAppointmentStatusRequestTimeout) Error

func (*PatchCoachingAppointmentStatusRequestTimeout) GetPayload

func (*PatchCoachingAppointmentStatusRequestTimeout) IsClientError

IsClientError returns true when this patch coaching appointment status request timeout response has a 4xx status code

func (*PatchCoachingAppointmentStatusRequestTimeout) IsCode

IsCode returns true when this patch coaching appointment status request timeout response a status code equal to that given

func (*PatchCoachingAppointmentStatusRequestTimeout) IsRedirect

IsRedirect returns true when this patch coaching appointment status request timeout response has a 3xx status code

func (*PatchCoachingAppointmentStatusRequestTimeout) IsServerError

IsServerError returns true when this patch coaching appointment status request timeout response has a 5xx status code

func (*PatchCoachingAppointmentStatusRequestTimeout) IsSuccess

IsSuccess returns true when this patch coaching appointment status request timeout response has a 2xx status code

func (*PatchCoachingAppointmentStatusRequestTimeout) String

type PatchCoachingAppointmentStatusServiceUnavailable

type PatchCoachingAppointmentStatusServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPatchCoachingAppointmentStatusServiceUnavailable

func NewPatchCoachingAppointmentStatusServiceUnavailable() *PatchCoachingAppointmentStatusServiceUnavailable

NewPatchCoachingAppointmentStatusServiceUnavailable creates a PatchCoachingAppointmentStatusServiceUnavailable with default headers values

func (*PatchCoachingAppointmentStatusServiceUnavailable) Error

func (*PatchCoachingAppointmentStatusServiceUnavailable) GetPayload

func (*PatchCoachingAppointmentStatusServiceUnavailable) IsClientError

IsClientError returns true when this patch coaching appointment status service unavailable response has a 4xx status code

func (*PatchCoachingAppointmentStatusServiceUnavailable) IsCode

IsCode returns true when this patch coaching appointment status service unavailable response a status code equal to that given

func (*PatchCoachingAppointmentStatusServiceUnavailable) IsRedirect

IsRedirect returns true when this patch coaching appointment status service unavailable response has a 3xx status code

func (*PatchCoachingAppointmentStatusServiceUnavailable) IsServerError

IsServerError returns true when this patch coaching appointment status service unavailable response has a 5xx status code

func (*PatchCoachingAppointmentStatusServiceUnavailable) IsSuccess

IsSuccess returns true when this patch coaching appointment status service unavailable response has a 2xx status code

func (*PatchCoachingAppointmentStatusServiceUnavailable) String

type PatchCoachingAppointmentStatusTooManyRequests

type PatchCoachingAppointmentStatusTooManyRequests struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentStatusTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPatchCoachingAppointmentStatusTooManyRequests

func NewPatchCoachingAppointmentStatusTooManyRequests() *PatchCoachingAppointmentStatusTooManyRequests

NewPatchCoachingAppointmentStatusTooManyRequests creates a PatchCoachingAppointmentStatusTooManyRequests with default headers values

func (*PatchCoachingAppointmentStatusTooManyRequests) Error

func (*PatchCoachingAppointmentStatusTooManyRequests) GetPayload

func (*PatchCoachingAppointmentStatusTooManyRequests) IsClientError

IsClientError returns true when this patch coaching appointment status too many requests response has a 4xx status code

func (*PatchCoachingAppointmentStatusTooManyRequests) IsCode

IsCode returns true when this patch coaching appointment status too many requests response a status code equal to that given

func (*PatchCoachingAppointmentStatusTooManyRequests) IsRedirect

IsRedirect returns true when this patch coaching appointment status too many requests response has a 3xx status code

func (*PatchCoachingAppointmentStatusTooManyRequests) IsServerError

IsServerError returns true when this patch coaching appointment status too many requests response has a 5xx status code

func (*PatchCoachingAppointmentStatusTooManyRequests) IsSuccess

IsSuccess returns true when this patch coaching appointment status too many requests response has a 2xx status code

func (*PatchCoachingAppointmentStatusTooManyRequests) String

type PatchCoachingAppointmentStatusUnauthorized

type PatchCoachingAppointmentStatusUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPatchCoachingAppointmentStatusUnauthorized

func NewPatchCoachingAppointmentStatusUnauthorized() *PatchCoachingAppointmentStatusUnauthorized

NewPatchCoachingAppointmentStatusUnauthorized creates a PatchCoachingAppointmentStatusUnauthorized with default headers values

func (*PatchCoachingAppointmentStatusUnauthorized) Error

func (*PatchCoachingAppointmentStatusUnauthorized) GetPayload

func (*PatchCoachingAppointmentStatusUnauthorized) IsClientError

IsClientError returns true when this patch coaching appointment status unauthorized response has a 4xx status code

func (*PatchCoachingAppointmentStatusUnauthorized) IsCode

IsCode returns true when this patch coaching appointment status unauthorized response a status code equal to that given

func (*PatchCoachingAppointmentStatusUnauthorized) IsRedirect

IsRedirect returns true when this patch coaching appointment status unauthorized response has a 3xx status code

func (*PatchCoachingAppointmentStatusUnauthorized) IsServerError

IsServerError returns true when this patch coaching appointment status unauthorized response has a 5xx status code

func (*PatchCoachingAppointmentStatusUnauthorized) IsSuccess

IsSuccess returns true when this patch coaching appointment status unauthorized response has a 2xx status code

func (*PatchCoachingAppointmentStatusUnauthorized) String

type PatchCoachingAppointmentStatusUnsupportedMediaType

type PatchCoachingAppointmentStatusUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentStatusUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPatchCoachingAppointmentStatusUnsupportedMediaType

func NewPatchCoachingAppointmentStatusUnsupportedMediaType() *PatchCoachingAppointmentStatusUnsupportedMediaType

NewPatchCoachingAppointmentStatusUnsupportedMediaType creates a PatchCoachingAppointmentStatusUnsupportedMediaType with default headers values

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) Error

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) GetPayload

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) IsClientError

IsClientError returns true when this patch coaching appointment status unsupported media type response has a 4xx status code

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) IsCode

IsCode returns true when this patch coaching appointment status unsupported media type response a status code equal to that given

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) IsRedirect

IsRedirect returns true when this patch coaching appointment status unsupported media type response has a 3xx status code

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) IsServerError

IsServerError returns true when this patch coaching appointment status unsupported media type response has a 5xx status code

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) IsSuccess

IsSuccess returns true when this patch coaching appointment status unsupported media type response has a 2xx status code

func (*PatchCoachingAppointmentStatusUnsupportedMediaType) String

type PatchCoachingAppointmentTooManyRequests

type PatchCoachingAppointmentTooManyRequests struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPatchCoachingAppointmentTooManyRequests

func NewPatchCoachingAppointmentTooManyRequests() *PatchCoachingAppointmentTooManyRequests

NewPatchCoachingAppointmentTooManyRequests creates a PatchCoachingAppointmentTooManyRequests with default headers values

func (*PatchCoachingAppointmentTooManyRequests) Error

func (*PatchCoachingAppointmentTooManyRequests) GetPayload

func (*PatchCoachingAppointmentTooManyRequests) IsClientError

func (o *PatchCoachingAppointmentTooManyRequests) IsClientError() bool

IsClientError returns true when this patch coaching appointment too many requests response has a 4xx status code

func (*PatchCoachingAppointmentTooManyRequests) IsCode

IsCode returns true when this patch coaching appointment too many requests response a status code equal to that given

func (*PatchCoachingAppointmentTooManyRequests) IsRedirect

IsRedirect returns true when this patch coaching appointment too many requests response has a 3xx status code

func (*PatchCoachingAppointmentTooManyRequests) IsServerError

func (o *PatchCoachingAppointmentTooManyRequests) IsServerError() bool

IsServerError returns true when this patch coaching appointment too many requests response has a 5xx status code

func (*PatchCoachingAppointmentTooManyRequests) IsSuccess

IsSuccess returns true when this patch coaching appointment too many requests response has a 2xx status code

func (*PatchCoachingAppointmentTooManyRequests) String

type PatchCoachingAppointmentUnauthorized

type PatchCoachingAppointmentUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPatchCoachingAppointmentUnauthorized

func NewPatchCoachingAppointmentUnauthorized() *PatchCoachingAppointmentUnauthorized

NewPatchCoachingAppointmentUnauthorized creates a PatchCoachingAppointmentUnauthorized with default headers values

func (*PatchCoachingAppointmentUnauthorized) Error

func (*PatchCoachingAppointmentUnauthorized) GetPayload

func (*PatchCoachingAppointmentUnauthorized) IsClientError

func (o *PatchCoachingAppointmentUnauthorized) IsClientError() bool

IsClientError returns true when this patch coaching appointment unauthorized response has a 4xx status code

func (*PatchCoachingAppointmentUnauthorized) IsCode

IsCode returns true when this patch coaching appointment unauthorized response a status code equal to that given

func (*PatchCoachingAppointmentUnauthorized) IsRedirect

IsRedirect returns true when this patch coaching appointment unauthorized response has a 3xx status code

func (*PatchCoachingAppointmentUnauthorized) IsServerError

func (o *PatchCoachingAppointmentUnauthorized) IsServerError() bool

IsServerError returns true when this patch coaching appointment unauthorized response has a 5xx status code

func (*PatchCoachingAppointmentUnauthorized) IsSuccess

IsSuccess returns true when this patch coaching appointment unauthorized response has a 2xx status code

func (*PatchCoachingAppointmentUnauthorized) String

type PatchCoachingAppointmentUnsupportedMediaType

type PatchCoachingAppointmentUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PatchCoachingAppointmentUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPatchCoachingAppointmentUnsupportedMediaType

func NewPatchCoachingAppointmentUnsupportedMediaType() *PatchCoachingAppointmentUnsupportedMediaType

NewPatchCoachingAppointmentUnsupportedMediaType creates a PatchCoachingAppointmentUnsupportedMediaType with default headers values

func (*PatchCoachingAppointmentUnsupportedMediaType) Error

func (*PatchCoachingAppointmentUnsupportedMediaType) GetPayload

func (*PatchCoachingAppointmentUnsupportedMediaType) IsClientError

IsClientError returns true when this patch coaching appointment unsupported media type response has a 4xx status code

func (*PatchCoachingAppointmentUnsupportedMediaType) IsCode

IsCode returns true when this patch coaching appointment unsupported media type response a status code equal to that given

func (*PatchCoachingAppointmentUnsupportedMediaType) IsRedirect

IsRedirect returns true when this patch coaching appointment unsupported media type response has a 3xx status code

func (*PatchCoachingAppointmentUnsupportedMediaType) IsServerError

IsServerError returns true when this patch coaching appointment unsupported media type response has a 5xx status code

func (*PatchCoachingAppointmentUnsupportedMediaType) IsSuccess

IsSuccess returns true when this patch coaching appointment unsupported media type response has a 2xx status code

func (*PatchCoachingAppointmentUnsupportedMediaType) String

type PatchCoachingNotificationBadRequest

type PatchCoachingNotificationBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPatchCoachingNotificationBadRequest

func NewPatchCoachingNotificationBadRequest() *PatchCoachingNotificationBadRequest

NewPatchCoachingNotificationBadRequest creates a PatchCoachingNotificationBadRequest with default headers values

func (*PatchCoachingNotificationBadRequest) Error

func (*PatchCoachingNotificationBadRequest) GetPayload

func (*PatchCoachingNotificationBadRequest) IsClientError

func (o *PatchCoachingNotificationBadRequest) IsClientError() bool

IsClientError returns true when this patch coaching notification bad request response has a 4xx status code

func (*PatchCoachingNotificationBadRequest) IsCode

IsCode returns true when this patch coaching notification bad request response a status code equal to that given

func (*PatchCoachingNotificationBadRequest) IsRedirect

func (o *PatchCoachingNotificationBadRequest) IsRedirect() bool

IsRedirect returns true when this patch coaching notification bad request response has a 3xx status code

func (*PatchCoachingNotificationBadRequest) IsServerError

func (o *PatchCoachingNotificationBadRequest) IsServerError() bool

IsServerError returns true when this patch coaching notification bad request response has a 5xx status code

func (*PatchCoachingNotificationBadRequest) IsSuccess

IsSuccess returns true when this patch coaching notification bad request response has a 2xx status code

func (*PatchCoachingNotificationBadRequest) String

type PatchCoachingNotificationForbidden

type PatchCoachingNotificationForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPatchCoachingNotificationForbidden

func NewPatchCoachingNotificationForbidden() *PatchCoachingNotificationForbidden

NewPatchCoachingNotificationForbidden creates a PatchCoachingNotificationForbidden with default headers values

func (*PatchCoachingNotificationForbidden) Error

func (*PatchCoachingNotificationForbidden) GetPayload

func (*PatchCoachingNotificationForbidden) IsClientError

func (o *PatchCoachingNotificationForbidden) IsClientError() bool

IsClientError returns true when this patch coaching notification forbidden response has a 4xx status code

func (*PatchCoachingNotificationForbidden) IsCode

IsCode returns true when this patch coaching notification forbidden response a status code equal to that given

func (*PatchCoachingNotificationForbidden) IsRedirect

func (o *PatchCoachingNotificationForbidden) IsRedirect() bool

IsRedirect returns true when this patch coaching notification forbidden response has a 3xx status code

func (*PatchCoachingNotificationForbidden) IsServerError

func (o *PatchCoachingNotificationForbidden) IsServerError() bool

IsServerError returns true when this patch coaching notification forbidden response has a 5xx status code

func (*PatchCoachingNotificationForbidden) IsSuccess

IsSuccess returns true when this patch coaching notification forbidden response has a 2xx status code

func (*PatchCoachingNotificationForbidden) String

type PatchCoachingNotificationGatewayTimeout

type PatchCoachingNotificationGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPatchCoachingNotificationGatewayTimeout

func NewPatchCoachingNotificationGatewayTimeout() *PatchCoachingNotificationGatewayTimeout

NewPatchCoachingNotificationGatewayTimeout creates a PatchCoachingNotificationGatewayTimeout with default headers values

func (*PatchCoachingNotificationGatewayTimeout) Error

func (*PatchCoachingNotificationGatewayTimeout) GetPayload

func (*PatchCoachingNotificationGatewayTimeout) IsClientError

func (o *PatchCoachingNotificationGatewayTimeout) IsClientError() bool

IsClientError returns true when this patch coaching notification gateway timeout response has a 4xx status code

func (*PatchCoachingNotificationGatewayTimeout) IsCode

IsCode returns true when this patch coaching notification gateway timeout response a status code equal to that given

func (*PatchCoachingNotificationGatewayTimeout) IsRedirect

IsRedirect returns true when this patch coaching notification gateway timeout response has a 3xx status code

func (*PatchCoachingNotificationGatewayTimeout) IsServerError

func (o *PatchCoachingNotificationGatewayTimeout) IsServerError() bool

IsServerError returns true when this patch coaching notification gateway timeout response has a 5xx status code

func (*PatchCoachingNotificationGatewayTimeout) IsSuccess

IsSuccess returns true when this patch coaching notification gateway timeout response has a 2xx status code

func (*PatchCoachingNotificationGatewayTimeout) String

type PatchCoachingNotificationInternalServerError

type PatchCoachingNotificationInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPatchCoachingNotificationInternalServerError

func NewPatchCoachingNotificationInternalServerError() *PatchCoachingNotificationInternalServerError

NewPatchCoachingNotificationInternalServerError creates a PatchCoachingNotificationInternalServerError with default headers values

func (*PatchCoachingNotificationInternalServerError) Error

func (*PatchCoachingNotificationInternalServerError) GetPayload

func (*PatchCoachingNotificationInternalServerError) IsClientError

IsClientError returns true when this patch coaching notification internal server error response has a 4xx status code

func (*PatchCoachingNotificationInternalServerError) IsCode

IsCode returns true when this patch coaching notification internal server error response a status code equal to that given

func (*PatchCoachingNotificationInternalServerError) IsRedirect

IsRedirect returns true when this patch coaching notification internal server error response has a 3xx status code

func (*PatchCoachingNotificationInternalServerError) IsServerError

IsServerError returns true when this patch coaching notification internal server error response has a 5xx status code

func (*PatchCoachingNotificationInternalServerError) IsSuccess

IsSuccess returns true when this patch coaching notification internal server error response has a 2xx status code

func (*PatchCoachingNotificationInternalServerError) String

type PatchCoachingNotificationNotFound

type PatchCoachingNotificationNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPatchCoachingNotificationNotFound

func NewPatchCoachingNotificationNotFound() *PatchCoachingNotificationNotFound

NewPatchCoachingNotificationNotFound creates a PatchCoachingNotificationNotFound with default headers values

func (*PatchCoachingNotificationNotFound) Error

func (*PatchCoachingNotificationNotFound) GetPayload

func (*PatchCoachingNotificationNotFound) IsClientError

func (o *PatchCoachingNotificationNotFound) IsClientError() bool

IsClientError returns true when this patch coaching notification not found response has a 4xx status code

func (*PatchCoachingNotificationNotFound) IsCode

func (o *PatchCoachingNotificationNotFound) IsCode(code int) bool

IsCode returns true when this patch coaching notification not found response a status code equal to that given

func (*PatchCoachingNotificationNotFound) IsRedirect

func (o *PatchCoachingNotificationNotFound) IsRedirect() bool

IsRedirect returns true when this patch coaching notification not found response has a 3xx status code

func (*PatchCoachingNotificationNotFound) IsServerError

func (o *PatchCoachingNotificationNotFound) IsServerError() bool

IsServerError returns true when this patch coaching notification not found response has a 5xx status code

func (*PatchCoachingNotificationNotFound) IsSuccess

func (o *PatchCoachingNotificationNotFound) IsSuccess() bool

IsSuccess returns true when this patch coaching notification not found response has a 2xx status code

func (*PatchCoachingNotificationNotFound) String

type PatchCoachingNotificationOK

type PatchCoachingNotificationOK struct {
	Payload *models.CoachingNotification
}

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

successful operation

func NewPatchCoachingNotificationOK

func NewPatchCoachingNotificationOK() *PatchCoachingNotificationOK

NewPatchCoachingNotificationOK creates a PatchCoachingNotificationOK with default headers values

func (*PatchCoachingNotificationOK) Error

func (*PatchCoachingNotificationOK) GetPayload

func (*PatchCoachingNotificationOK) IsClientError

func (o *PatchCoachingNotificationOK) IsClientError() bool

IsClientError returns true when this patch coaching notification o k response has a 4xx status code

func (*PatchCoachingNotificationOK) IsCode

func (o *PatchCoachingNotificationOK) IsCode(code int) bool

IsCode returns true when this patch coaching notification o k response a status code equal to that given

func (*PatchCoachingNotificationOK) IsRedirect

func (o *PatchCoachingNotificationOK) IsRedirect() bool

IsRedirect returns true when this patch coaching notification o k response has a 3xx status code

func (*PatchCoachingNotificationOK) IsServerError

func (o *PatchCoachingNotificationOK) IsServerError() bool

IsServerError returns true when this patch coaching notification o k response has a 5xx status code

func (*PatchCoachingNotificationOK) IsSuccess

func (o *PatchCoachingNotificationOK) IsSuccess() bool

IsSuccess returns true when this patch coaching notification o k response has a 2xx status code

func (*PatchCoachingNotificationOK) String

func (o *PatchCoachingNotificationOK) String() string

type PatchCoachingNotificationParams

type PatchCoachingNotificationParams struct {

	/* Body.

	   Change the read state of a notification
	*/
	Body *models.CoachingNotification

	/* NotificationID.

	   The ID of the notification.
	*/
	NotificationID string

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

PatchCoachingNotificationParams contains all the parameters to send to the API endpoint

for the patch coaching notification operation.

Typically these are written to a http.Request.

func NewPatchCoachingNotificationParams

func NewPatchCoachingNotificationParams() *PatchCoachingNotificationParams

NewPatchCoachingNotificationParams creates a new PatchCoachingNotificationParams 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 NewPatchCoachingNotificationParamsWithContext

func NewPatchCoachingNotificationParamsWithContext(ctx context.Context) *PatchCoachingNotificationParams

NewPatchCoachingNotificationParamsWithContext creates a new PatchCoachingNotificationParams object with the ability to set a context for a request.

func NewPatchCoachingNotificationParamsWithHTTPClient

func NewPatchCoachingNotificationParamsWithHTTPClient(client *http.Client) *PatchCoachingNotificationParams

NewPatchCoachingNotificationParamsWithHTTPClient creates a new PatchCoachingNotificationParams object with the ability to set a custom HTTPClient for a request.

func NewPatchCoachingNotificationParamsWithTimeout

func NewPatchCoachingNotificationParamsWithTimeout(timeout time.Duration) *PatchCoachingNotificationParams

NewPatchCoachingNotificationParamsWithTimeout creates a new PatchCoachingNotificationParams object with the ability to set a timeout on a request.

func (*PatchCoachingNotificationParams) SetBody

SetBody adds the body to the patch coaching notification params

func (*PatchCoachingNotificationParams) SetContext

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

SetContext adds the context to the patch coaching notification params

func (*PatchCoachingNotificationParams) SetDefaults

func (o *PatchCoachingNotificationParams) SetDefaults()

SetDefaults hydrates default values in the patch coaching notification params (not the query body).

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

func (*PatchCoachingNotificationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch coaching notification params

func (*PatchCoachingNotificationParams) SetNotificationID

func (o *PatchCoachingNotificationParams) SetNotificationID(notificationID string)

SetNotificationID adds the notificationId to the patch coaching notification params

func (*PatchCoachingNotificationParams) SetTimeout

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

SetTimeout adds the timeout to the patch coaching notification params

func (*PatchCoachingNotificationParams) WithBody

WithBody adds the body to the patch coaching notification params

func (*PatchCoachingNotificationParams) WithContext

WithContext adds the context to the patch coaching notification params

func (*PatchCoachingNotificationParams) WithDefaults

WithDefaults hydrates default values in the patch coaching notification params (not the query body).

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

func (*PatchCoachingNotificationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch coaching notification params

func (*PatchCoachingNotificationParams) WithNotificationID

func (o *PatchCoachingNotificationParams) WithNotificationID(notificationID string) *PatchCoachingNotificationParams

WithNotificationID adds the notificationID to the patch coaching notification params

func (*PatchCoachingNotificationParams) WithTimeout

WithTimeout adds the timeout to the patch coaching notification params

func (*PatchCoachingNotificationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchCoachingNotificationReader

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

PatchCoachingNotificationReader is a Reader for the PatchCoachingNotification structure.

func (*PatchCoachingNotificationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchCoachingNotificationRequestEntityTooLarge

type PatchCoachingNotificationRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PatchCoachingNotificationRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPatchCoachingNotificationRequestEntityTooLarge

func NewPatchCoachingNotificationRequestEntityTooLarge() *PatchCoachingNotificationRequestEntityTooLarge

NewPatchCoachingNotificationRequestEntityTooLarge creates a PatchCoachingNotificationRequestEntityTooLarge with default headers values

func (*PatchCoachingNotificationRequestEntityTooLarge) Error

func (*PatchCoachingNotificationRequestEntityTooLarge) GetPayload

func (*PatchCoachingNotificationRequestEntityTooLarge) IsClientError

IsClientError returns true when this patch coaching notification request entity too large response has a 4xx status code

func (*PatchCoachingNotificationRequestEntityTooLarge) IsCode

IsCode returns true when this patch coaching notification request entity too large response a status code equal to that given

func (*PatchCoachingNotificationRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this patch coaching notification request entity too large response has a 3xx status code

func (*PatchCoachingNotificationRequestEntityTooLarge) IsServerError

IsServerError returns true when this patch coaching notification request entity too large response has a 5xx status code

func (*PatchCoachingNotificationRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this patch coaching notification request entity too large response has a 2xx status code

func (*PatchCoachingNotificationRequestEntityTooLarge) String

type PatchCoachingNotificationRequestTimeout

type PatchCoachingNotificationRequestTimeout struct {
	Payload *models.ErrorBody
}

PatchCoachingNotificationRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPatchCoachingNotificationRequestTimeout

func NewPatchCoachingNotificationRequestTimeout() *PatchCoachingNotificationRequestTimeout

NewPatchCoachingNotificationRequestTimeout creates a PatchCoachingNotificationRequestTimeout with default headers values

func (*PatchCoachingNotificationRequestTimeout) Error

func (*PatchCoachingNotificationRequestTimeout) GetPayload

func (*PatchCoachingNotificationRequestTimeout) IsClientError

func (o *PatchCoachingNotificationRequestTimeout) IsClientError() bool

IsClientError returns true when this patch coaching notification request timeout response has a 4xx status code

func (*PatchCoachingNotificationRequestTimeout) IsCode

IsCode returns true when this patch coaching notification request timeout response a status code equal to that given

func (*PatchCoachingNotificationRequestTimeout) IsRedirect

IsRedirect returns true when this patch coaching notification request timeout response has a 3xx status code

func (*PatchCoachingNotificationRequestTimeout) IsServerError

func (o *PatchCoachingNotificationRequestTimeout) IsServerError() bool

IsServerError returns true when this patch coaching notification request timeout response has a 5xx status code

func (*PatchCoachingNotificationRequestTimeout) IsSuccess

IsSuccess returns true when this patch coaching notification request timeout response has a 2xx status code

func (*PatchCoachingNotificationRequestTimeout) String

type PatchCoachingNotificationServiceUnavailable

type PatchCoachingNotificationServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPatchCoachingNotificationServiceUnavailable

func NewPatchCoachingNotificationServiceUnavailable() *PatchCoachingNotificationServiceUnavailable

NewPatchCoachingNotificationServiceUnavailable creates a PatchCoachingNotificationServiceUnavailable with default headers values

func (*PatchCoachingNotificationServiceUnavailable) Error

func (*PatchCoachingNotificationServiceUnavailable) GetPayload

func (*PatchCoachingNotificationServiceUnavailable) IsClientError

IsClientError returns true when this patch coaching notification service unavailable response has a 4xx status code

func (*PatchCoachingNotificationServiceUnavailable) IsCode

IsCode returns true when this patch coaching notification service unavailable response a status code equal to that given

func (*PatchCoachingNotificationServiceUnavailable) IsRedirect

IsRedirect returns true when this patch coaching notification service unavailable response has a 3xx status code

func (*PatchCoachingNotificationServiceUnavailable) IsServerError

IsServerError returns true when this patch coaching notification service unavailable response has a 5xx status code

func (*PatchCoachingNotificationServiceUnavailable) IsSuccess

IsSuccess returns true when this patch coaching notification service unavailable response has a 2xx status code

func (*PatchCoachingNotificationServiceUnavailable) String

type PatchCoachingNotificationTooManyRequests

type PatchCoachingNotificationTooManyRequests struct {
	Payload *models.ErrorBody
}

PatchCoachingNotificationTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPatchCoachingNotificationTooManyRequests

func NewPatchCoachingNotificationTooManyRequests() *PatchCoachingNotificationTooManyRequests

NewPatchCoachingNotificationTooManyRequests creates a PatchCoachingNotificationTooManyRequests with default headers values

func (*PatchCoachingNotificationTooManyRequests) Error

func (*PatchCoachingNotificationTooManyRequests) GetPayload

func (*PatchCoachingNotificationTooManyRequests) IsClientError

IsClientError returns true when this patch coaching notification too many requests response has a 4xx status code

func (*PatchCoachingNotificationTooManyRequests) IsCode

IsCode returns true when this patch coaching notification too many requests response a status code equal to that given

func (*PatchCoachingNotificationTooManyRequests) IsRedirect

IsRedirect returns true when this patch coaching notification too many requests response has a 3xx status code

func (*PatchCoachingNotificationTooManyRequests) IsServerError

IsServerError returns true when this patch coaching notification too many requests response has a 5xx status code

func (*PatchCoachingNotificationTooManyRequests) IsSuccess

IsSuccess returns true when this patch coaching notification too many requests response has a 2xx status code

func (*PatchCoachingNotificationTooManyRequests) String

type PatchCoachingNotificationUnauthorized

type PatchCoachingNotificationUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPatchCoachingNotificationUnauthorized

func NewPatchCoachingNotificationUnauthorized() *PatchCoachingNotificationUnauthorized

NewPatchCoachingNotificationUnauthorized creates a PatchCoachingNotificationUnauthorized with default headers values

func (*PatchCoachingNotificationUnauthorized) Error

func (*PatchCoachingNotificationUnauthorized) GetPayload

func (*PatchCoachingNotificationUnauthorized) IsClientError

func (o *PatchCoachingNotificationUnauthorized) IsClientError() bool

IsClientError returns true when this patch coaching notification unauthorized response has a 4xx status code

func (*PatchCoachingNotificationUnauthorized) IsCode

IsCode returns true when this patch coaching notification unauthorized response a status code equal to that given

func (*PatchCoachingNotificationUnauthorized) IsRedirect

IsRedirect returns true when this patch coaching notification unauthorized response has a 3xx status code

func (*PatchCoachingNotificationUnauthorized) IsServerError

func (o *PatchCoachingNotificationUnauthorized) IsServerError() bool

IsServerError returns true when this patch coaching notification unauthorized response has a 5xx status code

func (*PatchCoachingNotificationUnauthorized) IsSuccess

IsSuccess returns true when this patch coaching notification unauthorized response has a 2xx status code

func (*PatchCoachingNotificationUnauthorized) String

type PatchCoachingNotificationUnsupportedMediaType

type PatchCoachingNotificationUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PatchCoachingNotificationUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPatchCoachingNotificationUnsupportedMediaType

func NewPatchCoachingNotificationUnsupportedMediaType() *PatchCoachingNotificationUnsupportedMediaType

NewPatchCoachingNotificationUnsupportedMediaType creates a PatchCoachingNotificationUnsupportedMediaType with default headers values

func (*PatchCoachingNotificationUnsupportedMediaType) Error

func (*PatchCoachingNotificationUnsupportedMediaType) GetPayload

func (*PatchCoachingNotificationUnsupportedMediaType) IsClientError

IsClientError returns true when this patch coaching notification unsupported media type response has a 4xx status code

func (*PatchCoachingNotificationUnsupportedMediaType) IsCode

IsCode returns true when this patch coaching notification unsupported media type response a status code equal to that given

func (*PatchCoachingNotificationUnsupportedMediaType) IsRedirect

IsRedirect returns true when this patch coaching notification unsupported media type response has a 3xx status code

func (*PatchCoachingNotificationUnsupportedMediaType) IsServerError

IsServerError returns true when this patch coaching notification unsupported media type response has a 5xx status code

func (*PatchCoachingNotificationUnsupportedMediaType) IsSuccess

IsSuccess returns true when this patch coaching notification unsupported media type response has a 2xx status code

func (*PatchCoachingNotificationUnsupportedMediaType) String

type PostCoachingAppointmentAnnotationsBadRequest

type PostCoachingAppointmentAnnotationsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostCoachingAppointmentAnnotationsBadRequest

func NewPostCoachingAppointmentAnnotationsBadRequest() *PostCoachingAppointmentAnnotationsBadRequest

NewPostCoachingAppointmentAnnotationsBadRequest creates a PostCoachingAppointmentAnnotationsBadRequest with default headers values

func (*PostCoachingAppointmentAnnotationsBadRequest) Error

func (*PostCoachingAppointmentAnnotationsBadRequest) GetPayload

func (*PostCoachingAppointmentAnnotationsBadRequest) IsClientError

IsClientError returns true when this post coaching appointment annotations bad request response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsBadRequest) IsCode

IsCode returns true when this post coaching appointment annotations bad request response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsBadRequest) IsRedirect

IsRedirect returns true when this post coaching appointment annotations bad request response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsBadRequest) IsServerError

IsServerError returns true when this post coaching appointment annotations bad request response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsBadRequest) IsSuccess

IsSuccess returns true when this post coaching appointment annotations bad request response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsBadRequest) String

type PostCoachingAppointmentAnnotationsCreated

type PostCoachingAppointmentAnnotationsCreated struct {
	Payload *models.CoachingAnnotation
}

PostCoachingAppointmentAnnotationsCreated describes a response with status code 201, with default header values.

Annotation created

func NewPostCoachingAppointmentAnnotationsCreated

func NewPostCoachingAppointmentAnnotationsCreated() *PostCoachingAppointmentAnnotationsCreated

NewPostCoachingAppointmentAnnotationsCreated creates a PostCoachingAppointmentAnnotationsCreated with default headers values

func (*PostCoachingAppointmentAnnotationsCreated) Error

func (*PostCoachingAppointmentAnnotationsCreated) GetPayload

func (*PostCoachingAppointmentAnnotationsCreated) IsClientError

IsClientError returns true when this post coaching appointment annotations created response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsCreated) IsCode

IsCode returns true when this post coaching appointment annotations created response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsCreated) IsRedirect

IsRedirect returns true when this post coaching appointment annotations created response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsCreated) IsServerError

IsServerError returns true when this post coaching appointment annotations created response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsCreated) IsSuccess

IsSuccess returns true when this post coaching appointment annotations created response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsCreated) String

type PostCoachingAppointmentAnnotationsForbidden

type PostCoachingAppointmentAnnotationsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostCoachingAppointmentAnnotationsForbidden

func NewPostCoachingAppointmentAnnotationsForbidden() *PostCoachingAppointmentAnnotationsForbidden

NewPostCoachingAppointmentAnnotationsForbidden creates a PostCoachingAppointmentAnnotationsForbidden with default headers values

func (*PostCoachingAppointmentAnnotationsForbidden) Error

func (*PostCoachingAppointmentAnnotationsForbidden) GetPayload

func (*PostCoachingAppointmentAnnotationsForbidden) IsClientError

IsClientError returns true when this post coaching appointment annotations forbidden response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsForbidden) IsCode

IsCode returns true when this post coaching appointment annotations forbidden response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsForbidden) IsRedirect

IsRedirect returns true when this post coaching appointment annotations forbidden response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsForbidden) IsServerError

IsServerError returns true when this post coaching appointment annotations forbidden response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsForbidden) IsSuccess

IsSuccess returns true when this post coaching appointment annotations forbidden response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsForbidden) String

type PostCoachingAppointmentAnnotationsGatewayTimeout

type PostCoachingAppointmentAnnotationsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostCoachingAppointmentAnnotationsGatewayTimeout

func NewPostCoachingAppointmentAnnotationsGatewayTimeout() *PostCoachingAppointmentAnnotationsGatewayTimeout

NewPostCoachingAppointmentAnnotationsGatewayTimeout creates a PostCoachingAppointmentAnnotationsGatewayTimeout with default headers values

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) Error

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) GetPayload

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) IsClientError

IsClientError returns true when this post coaching appointment annotations gateway timeout response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) IsCode

IsCode returns true when this post coaching appointment annotations gateway timeout response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) IsRedirect

IsRedirect returns true when this post coaching appointment annotations gateway timeout response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) IsServerError

IsServerError returns true when this post coaching appointment annotations gateway timeout response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) IsSuccess

IsSuccess returns true when this post coaching appointment annotations gateway timeout response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsGatewayTimeout) String

type PostCoachingAppointmentAnnotationsInternalServerError

type PostCoachingAppointmentAnnotationsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostCoachingAppointmentAnnotationsInternalServerError

func NewPostCoachingAppointmentAnnotationsInternalServerError() *PostCoachingAppointmentAnnotationsInternalServerError

NewPostCoachingAppointmentAnnotationsInternalServerError creates a PostCoachingAppointmentAnnotationsInternalServerError with default headers values

func (*PostCoachingAppointmentAnnotationsInternalServerError) Error

func (*PostCoachingAppointmentAnnotationsInternalServerError) GetPayload

func (*PostCoachingAppointmentAnnotationsInternalServerError) IsClientError

IsClientError returns true when this post coaching appointment annotations internal server error response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsInternalServerError) IsCode

IsCode returns true when this post coaching appointment annotations internal server error response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsInternalServerError) IsRedirect

IsRedirect returns true when this post coaching appointment annotations internal server error response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsInternalServerError) IsServerError

IsServerError returns true when this post coaching appointment annotations internal server error response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsInternalServerError) IsSuccess

IsSuccess returns true when this post coaching appointment annotations internal server error response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsInternalServerError) String

type PostCoachingAppointmentAnnotationsNotFound

type PostCoachingAppointmentAnnotationsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostCoachingAppointmentAnnotationsNotFound

func NewPostCoachingAppointmentAnnotationsNotFound() *PostCoachingAppointmentAnnotationsNotFound

NewPostCoachingAppointmentAnnotationsNotFound creates a PostCoachingAppointmentAnnotationsNotFound with default headers values

func (*PostCoachingAppointmentAnnotationsNotFound) Error

func (*PostCoachingAppointmentAnnotationsNotFound) GetPayload

func (*PostCoachingAppointmentAnnotationsNotFound) IsClientError

IsClientError returns true when this post coaching appointment annotations not found response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsNotFound) IsCode

IsCode returns true when this post coaching appointment annotations not found response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsNotFound) IsRedirect

IsRedirect returns true when this post coaching appointment annotations not found response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsNotFound) IsServerError

IsServerError returns true when this post coaching appointment annotations not found response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsNotFound) IsSuccess

IsSuccess returns true when this post coaching appointment annotations not found response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsNotFound) String

type PostCoachingAppointmentAnnotationsParams

type PostCoachingAppointmentAnnotationsParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* Body.

	   The annotation to add
	*/
	Body *models.CoachingAnnotationCreateRequest

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

PostCoachingAppointmentAnnotationsParams contains all the parameters to send to the API endpoint

for the post coaching appointment annotations operation.

Typically these are written to a http.Request.

func NewPostCoachingAppointmentAnnotationsParams

func NewPostCoachingAppointmentAnnotationsParams() *PostCoachingAppointmentAnnotationsParams

NewPostCoachingAppointmentAnnotationsParams creates a new PostCoachingAppointmentAnnotationsParams 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 NewPostCoachingAppointmentAnnotationsParamsWithContext

func NewPostCoachingAppointmentAnnotationsParamsWithContext(ctx context.Context) *PostCoachingAppointmentAnnotationsParams

NewPostCoachingAppointmentAnnotationsParamsWithContext creates a new PostCoachingAppointmentAnnotationsParams object with the ability to set a context for a request.

func NewPostCoachingAppointmentAnnotationsParamsWithHTTPClient

func NewPostCoachingAppointmentAnnotationsParamsWithHTTPClient(client *http.Client) *PostCoachingAppointmentAnnotationsParams

NewPostCoachingAppointmentAnnotationsParamsWithHTTPClient creates a new PostCoachingAppointmentAnnotationsParams object with the ability to set a custom HTTPClient for a request.

func NewPostCoachingAppointmentAnnotationsParamsWithTimeout

func NewPostCoachingAppointmentAnnotationsParamsWithTimeout(timeout time.Duration) *PostCoachingAppointmentAnnotationsParams

NewPostCoachingAppointmentAnnotationsParamsWithTimeout creates a new PostCoachingAppointmentAnnotationsParams object with the ability to set a timeout on a request.

func (*PostCoachingAppointmentAnnotationsParams) SetAppointmentID

func (o *PostCoachingAppointmentAnnotationsParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) SetBody

SetBody adds the body to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) SetContext

SetContext adds the context to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) SetDefaults

SetDefaults hydrates default values in the post coaching appointment annotations params (not the query body).

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

func (*PostCoachingAppointmentAnnotationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) SetTimeout

SetTimeout adds the timeout to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WithBody

WithBody adds the body to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WithContext

WithContext adds the context to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WithDefaults

WithDefaults hydrates default values in the post coaching appointment annotations params (not the query body).

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

func (*PostCoachingAppointmentAnnotationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WithTimeout

WithTimeout adds the timeout to the post coaching appointment annotations params

func (*PostCoachingAppointmentAnnotationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCoachingAppointmentAnnotationsReader

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

PostCoachingAppointmentAnnotationsReader is a Reader for the PostCoachingAppointmentAnnotations structure.

func (*PostCoachingAppointmentAnnotationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostCoachingAppointmentAnnotationsRequestEntityTooLarge

type PostCoachingAppointmentAnnotationsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentAnnotationsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostCoachingAppointmentAnnotationsRequestEntityTooLarge

func NewPostCoachingAppointmentAnnotationsRequestEntityTooLarge() *PostCoachingAppointmentAnnotationsRequestEntityTooLarge

NewPostCoachingAppointmentAnnotationsRequestEntityTooLarge creates a PostCoachingAppointmentAnnotationsRequestEntityTooLarge with default headers values

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) Error

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) GetPayload

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post coaching appointment annotations request entity too large response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) IsCode

IsCode returns true when this post coaching appointment annotations request entity too large response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post coaching appointment annotations request entity too large response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post coaching appointment annotations request entity too large response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post coaching appointment annotations request entity too large response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsRequestEntityTooLarge) String

type PostCoachingAppointmentAnnotationsRequestTimeout

type PostCoachingAppointmentAnnotationsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentAnnotationsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostCoachingAppointmentAnnotationsRequestTimeout

func NewPostCoachingAppointmentAnnotationsRequestTimeout() *PostCoachingAppointmentAnnotationsRequestTimeout

NewPostCoachingAppointmentAnnotationsRequestTimeout creates a PostCoachingAppointmentAnnotationsRequestTimeout with default headers values

func (*PostCoachingAppointmentAnnotationsRequestTimeout) Error

func (*PostCoachingAppointmentAnnotationsRequestTimeout) GetPayload

func (*PostCoachingAppointmentAnnotationsRequestTimeout) IsClientError

IsClientError returns true when this post coaching appointment annotations request timeout response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsRequestTimeout) IsCode

IsCode returns true when this post coaching appointment annotations request timeout response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsRequestTimeout) IsRedirect

IsRedirect returns true when this post coaching appointment annotations request timeout response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsRequestTimeout) IsServerError

IsServerError returns true when this post coaching appointment annotations request timeout response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsRequestTimeout) IsSuccess

IsSuccess returns true when this post coaching appointment annotations request timeout response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsRequestTimeout) String

type PostCoachingAppointmentAnnotationsServiceUnavailable

type PostCoachingAppointmentAnnotationsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostCoachingAppointmentAnnotationsServiceUnavailable

func NewPostCoachingAppointmentAnnotationsServiceUnavailable() *PostCoachingAppointmentAnnotationsServiceUnavailable

NewPostCoachingAppointmentAnnotationsServiceUnavailable creates a PostCoachingAppointmentAnnotationsServiceUnavailable with default headers values

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) Error

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) GetPayload

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) IsClientError

IsClientError returns true when this post coaching appointment annotations service unavailable response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) IsCode

IsCode returns true when this post coaching appointment annotations service unavailable response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) IsRedirect

IsRedirect returns true when this post coaching appointment annotations service unavailable response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) IsServerError

IsServerError returns true when this post coaching appointment annotations service unavailable response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) IsSuccess

IsSuccess returns true when this post coaching appointment annotations service unavailable response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsServiceUnavailable) String

type PostCoachingAppointmentAnnotationsTooManyRequests

type PostCoachingAppointmentAnnotationsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentAnnotationsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostCoachingAppointmentAnnotationsTooManyRequests

func NewPostCoachingAppointmentAnnotationsTooManyRequests() *PostCoachingAppointmentAnnotationsTooManyRequests

NewPostCoachingAppointmentAnnotationsTooManyRequests creates a PostCoachingAppointmentAnnotationsTooManyRequests with default headers values

func (*PostCoachingAppointmentAnnotationsTooManyRequests) Error

func (*PostCoachingAppointmentAnnotationsTooManyRequests) GetPayload

func (*PostCoachingAppointmentAnnotationsTooManyRequests) IsClientError

IsClientError returns true when this post coaching appointment annotations too many requests response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsTooManyRequests) IsCode

IsCode returns true when this post coaching appointment annotations too many requests response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsTooManyRequests) IsRedirect

IsRedirect returns true when this post coaching appointment annotations too many requests response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsTooManyRequests) IsServerError

IsServerError returns true when this post coaching appointment annotations too many requests response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsTooManyRequests) IsSuccess

IsSuccess returns true when this post coaching appointment annotations too many requests response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsTooManyRequests) String

type PostCoachingAppointmentAnnotationsUnauthorized

type PostCoachingAppointmentAnnotationsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostCoachingAppointmentAnnotationsUnauthorized

func NewPostCoachingAppointmentAnnotationsUnauthorized() *PostCoachingAppointmentAnnotationsUnauthorized

NewPostCoachingAppointmentAnnotationsUnauthorized creates a PostCoachingAppointmentAnnotationsUnauthorized with default headers values

func (*PostCoachingAppointmentAnnotationsUnauthorized) Error

func (*PostCoachingAppointmentAnnotationsUnauthorized) GetPayload

func (*PostCoachingAppointmentAnnotationsUnauthorized) IsClientError

IsClientError returns true when this post coaching appointment annotations unauthorized response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsUnauthorized) IsCode

IsCode returns true when this post coaching appointment annotations unauthorized response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsUnauthorized) IsRedirect

IsRedirect returns true when this post coaching appointment annotations unauthorized response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsUnauthorized) IsServerError

IsServerError returns true when this post coaching appointment annotations unauthorized response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsUnauthorized) IsSuccess

IsSuccess returns true when this post coaching appointment annotations unauthorized response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsUnauthorized) String

type PostCoachingAppointmentAnnotationsUnsupportedMediaType

type PostCoachingAppointmentAnnotationsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentAnnotationsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostCoachingAppointmentAnnotationsUnsupportedMediaType

func NewPostCoachingAppointmentAnnotationsUnsupportedMediaType() *PostCoachingAppointmentAnnotationsUnsupportedMediaType

NewPostCoachingAppointmentAnnotationsUnsupportedMediaType creates a PostCoachingAppointmentAnnotationsUnsupportedMediaType with default headers values

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) Error

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) GetPayload

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) IsClientError

IsClientError returns true when this post coaching appointment annotations unsupported media type response has a 4xx status code

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) IsCode

IsCode returns true when this post coaching appointment annotations unsupported media type response a status code equal to that given

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post coaching appointment annotations unsupported media type response has a 3xx status code

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) IsServerError

IsServerError returns true when this post coaching appointment annotations unsupported media type response has a 5xx status code

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post coaching appointment annotations unsupported media type response has a 2xx status code

func (*PostCoachingAppointmentAnnotationsUnsupportedMediaType) String

type PostCoachingAppointmentConversationsBadRequest

type PostCoachingAppointmentConversationsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostCoachingAppointmentConversationsBadRequest

func NewPostCoachingAppointmentConversationsBadRequest() *PostCoachingAppointmentConversationsBadRequest

NewPostCoachingAppointmentConversationsBadRequest creates a PostCoachingAppointmentConversationsBadRequest with default headers values

func (*PostCoachingAppointmentConversationsBadRequest) Error

func (*PostCoachingAppointmentConversationsBadRequest) GetPayload

func (*PostCoachingAppointmentConversationsBadRequest) IsClientError

IsClientError returns true when this post coaching appointment conversations bad request response has a 4xx status code

func (*PostCoachingAppointmentConversationsBadRequest) IsCode

IsCode returns true when this post coaching appointment conversations bad request response a status code equal to that given

func (*PostCoachingAppointmentConversationsBadRequest) IsRedirect

IsRedirect returns true when this post coaching appointment conversations bad request response has a 3xx status code

func (*PostCoachingAppointmentConversationsBadRequest) IsServerError

IsServerError returns true when this post coaching appointment conversations bad request response has a 5xx status code

func (*PostCoachingAppointmentConversationsBadRequest) IsSuccess

IsSuccess returns true when this post coaching appointment conversations bad request response has a 2xx status code

func (*PostCoachingAppointmentConversationsBadRequest) String

type PostCoachingAppointmentConversationsConflict

type PostCoachingAppointmentConversationsConflict struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentConversationsConflict describes a response with status code 409, with default header values.

Conflict

func NewPostCoachingAppointmentConversationsConflict

func NewPostCoachingAppointmentConversationsConflict() *PostCoachingAppointmentConversationsConflict

NewPostCoachingAppointmentConversationsConflict creates a PostCoachingAppointmentConversationsConflict with default headers values

func (*PostCoachingAppointmentConversationsConflict) Error

func (*PostCoachingAppointmentConversationsConflict) GetPayload

func (*PostCoachingAppointmentConversationsConflict) IsClientError

IsClientError returns true when this post coaching appointment conversations conflict response has a 4xx status code

func (*PostCoachingAppointmentConversationsConflict) IsCode

IsCode returns true when this post coaching appointment conversations conflict response a status code equal to that given

func (*PostCoachingAppointmentConversationsConflict) IsRedirect

IsRedirect returns true when this post coaching appointment conversations conflict response has a 3xx status code

func (*PostCoachingAppointmentConversationsConflict) IsServerError

IsServerError returns true when this post coaching appointment conversations conflict response has a 5xx status code

func (*PostCoachingAppointmentConversationsConflict) IsSuccess

IsSuccess returns true when this post coaching appointment conversations conflict response has a 2xx status code

func (*PostCoachingAppointmentConversationsConflict) String

type PostCoachingAppointmentConversationsForbidden

type PostCoachingAppointmentConversationsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostCoachingAppointmentConversationsForbidden

func NewPostCoachingAppointmentConversationsForbidden() *PostCoachingAppointmentConversationsForbidden

NewPostCoachingAppointmentConversationsForbidden creates a PostCoachingAppointmentConversationsForbidden with default headers values

func (*PostCoachingAppointmentConversationsForbidden) Error

func (*PostCoachingAppointmentConversationsForbidden) GetPayload

func (*PostCoachingAppointmentConversationsForbidden) IsClientError

IsClientError returns true when this post coaching appointment conversations forbidden response has a 4xx status code

func (*PostCoachingAppointmentConversationsForbidden) IsCode

IsCode returns true when this post coaching appointment conversations forbidden response a status code equal to that given

func (*PostCoachingAppointmentConversationsForbidden) IsRedirect

IsRedirect returns true when this post coaching appointment conversations forbidden response has a 3xx status code

func (*PostCoachingAppointmentConversationsForbidden) IsServerError

IsServerError returns true when this post coaching appointment conversations forbidden response has a 5xx status code

func (*PostCoachingAppointmentConversationsForbidden) IsSuccess

IsSuccess returns true when this post coaching appointment conversations forbidden response has a 2xx status code

func (*PostCoachingAppointmentConversationsForbidden) String

type PostCoachingAppointmentConversationsGatewayTimeout

type PostCoachingAppointmentConversationsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostCoachingAppointmentConversationsGatewayTimeout

func NewPostCoachingAppointmentConversationsGatewayTimeout() *PostCoachingAppointmentConversationsGatewayTimeout

NewPostCoachingAppointmentConversationsGatewayTimeout creates a PostCoachingAppointmentConversationsGatewayTimeout with default headers values

func (*PostCoachingAppointmentConversationsGatewayTimeout) Error

func (*PostCoachingAppointmentConversationsGatewayTimeout) GetPayload

func (*PostCoachingAppointmentConversationsGatewayTimeout) IsClientError

IsClientError returns true when this post coaching appointment conversations gateway timeout response has a 4xx status code

func (*PostCoachingAppointmentConversationsGatewayTimeout) IsCode

IsCode returns true when this post coaching appointment conversations gateway timeout response a status code equal to that given

func (*PostCoachingAppointmentConversationsGatewayTimeout) IsRedirect

IsRedirect returns true when this post coaching appointment conversations gateway timeout response has a 3xx status code

func (*PostCoachingAppointmentConversationsGatewayTimeout) IsServerError

IsServerError returns true when this post coaching appointment conversations gateway timeout response has a 5xx status code

func (*PostCoachingAppointmentConversationsGatewayTimeout) IsSuccess

IsSuccess returns true when this post coaching appointment conversations gateway timeout response has a 2xx status code

func (*PostCoachingAppointmentConversationsGatewayTimeout) String

type PostCoachingAppointmentConversationsInternalServerError

type PostCoachingAppointmentConversationsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostCoachingAppointmentConversationsInternalServerError

func NewPostCoachingAppointmentConversationsInternalServerError() *PostCoachingAppointmentConversationsInternalServerError

NewPostCoachingAppointmentConversationsInternalServerError creates a PostCoachingAppointmentConversationsInternalServerError with default headers values

func (*PostCoachingAppointmentConversationsInternalServerError) Error

func (*PostCoachingAppointmentConversationsInternalServerError) GetPayload

func (*PostCoachingAppointmentConversationsInternalServerError) IsClientError

IsClientError returns true when this post coaching appointment conversations internal server error response has a 4xx status code

func (*PostCoachingAppointmentConversationsInternalServerError) IsCode

IsCode returns true when this post coaching appointment conversations internal server error response a status code equal to that given

func (*PostCoachingAppointmentConversationsInternalServerError) IsRedirect

IsRedirect returns true when this post coaching appointment conversations internal server error response has a 3xx status code

func (*PostCoachingAppointmentConversationsInternalServerError) IsServerError

IsServerError returns true when this post coaching appointment conversations internal server error response has a 5xx status code

func (*PostCoachingAppointmentConversationsInternalServerError) IsSuccess

IsSuccess returns true when this post coaching appointment conversations internal server error response has a 2xx status code

func (*PostCoachingAppointmentConversationsInternalServerError) String

type PostCoachingAppointmentConversationsNotFound

type PostCoachingAppointmentConversationsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostCoachingAppointmentConversationsNotFound

func NewPostCoachingAppointmentConversationsNotFound() *PostCoachingAppointmentConversationsNotFound

NewPostCoachingAppointmentConversationsNotFound creates a PostCoachingAppointmentConversationsNotFound with default headers values

func (*PostCoachingAppointmentConversationsNotFound) Error

func (*PostCoachingAppointmentConversationsNotFound) GetPayload

func (*PostCoachingAppointmentConversationsNotFound) IsClientError

IsClientError returns true when this post coaching appointment conversations not found response has a 4xx status code

func (*PostCoachingAppointmentConversationsNotFound) IsCode

IsCode returns true when this post coaching appointment conversations not found response a status code equal to that given

func (*PostCoachingAppointmentConversationsNotFound) IsRedirect

IsRedirect returns true when this post coaching appointment conversations not found response has a 3xx status code

func (*PostCoachingAppointmentConversationsNotFound) IsServerError

IsServerError returns true when this post coaching appointment conversations not found response has a 5xx status code

func (*PostCoachingAppointmentConversationsNotFound) IsSuccess

IsSuccess returns true when this post coaching appointment conversations not found response has a 2xx status code

func (*PostCoachingAppointmentConversationsNotFound) String

type PostCoachingAppointmentConversationsOK

type PostCoachingAppointmentConversationsOK struct {
	Payload *models.AddConversationResponse
}

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

Conversation Added

func NewPostCoachingAppointmentConversationsOK

func NewPostCoachingAppointmentConversationsOK() *PostCoachingAppointmentConversationsOK

NewPostCoachingAppointmentConversationsOK creates a PostCoachingAppointmentConversationsOK with default headers values

func (*PostCoachingAppointmentConversationsOK) Error

func (*PostCoachingAppointmentConversationsOK) GetPayload

func (*PostCoachingAppointmentConversationsOK) IsClientError

func (o *PostCoachingAppointmentConversationsOK) IsClientError() bool

IsClientError returns true when this post coaching appointment conversations o k response has a 4xx status code

func (*PostCoachingAppointmentConversationsOK) IsCode

IsCode returns true when this post coaching appointment conversations o k response a status code equal to that given

func (*PostCoachingAppointmentConversationsOK) IsRedirect

IsRedirect returns true when this post coaching appointment conversations o k response has a 3xx status code

func (*PostCoachingAppointmentConversationsOK) IsServerError

func (o *PostCoachingAppointmentConversationsOK) IsServerError() bool

IsServerError returns true when this post coaching appointment conversations o k response has a 5xx status code

func (*PostCoachingAppointmentConversationsOK) IsSuccess

IsSuccess returns true when this post coaching appointment conversations o k response has a 2xx status code

func (*PostCoachingAppointmentConversationsOK) String

type PostCoachingAppointmentConversationsParams

type PostCoachingAppointmentConversationsParams struct {

	/* AppointmentID.

	   The ID of the coaching appointment.
	*/
	AppointmentID string

	/* Body.

	   body
	*/
	Body *models.AddConversationRequest

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

PostCoachingAppointmentConversationsParams contains all the parameters to send to the API endpoint

for the post coaching appointment conversations operation.

Typically these are written to a http.Request.

func NewPostCoachingAppointmentConversationsParams

func NewPostCoachingAppointmentConversationsParams() *PostCoachingAppointmentConversationsParams

NewPostCoachingAppointmentConversationsParams creates a new PostCoachingAppointmentConversationsParams 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 NewPostCoachingAppointmentConversationsParamsWithContext

func NewPostCoachingAppointmentConversationsParamsWithContext(ctx context.Context) *PostCoachingAppointmentConversationsParams

NewPostCoachingAppointmentConversationsParamsWithContext creates a new PostCoachingAppointmentConversationsParams object with the ability to set a context for a request.

func NewPostCoachingAppointmentConversationsParamsWithHTTPClient

func NewPostCoachingAppointmentConversationsParamsWithHTTPClient(client *http.Client) *PostCoachingAppointmentConversationsParams

NewPostCoachingAppointmentConversationsParamsWithHTTPClient creates a new PostCoachingAppointmentConversationsParams object with the ability to set a custom HTTPClient for a request.

func NewPostCoachingAppointmentConversationsParamsWithTimeout

func NewPostCoachingAppointmentConversationsParamsWithTimeout(timeout time.Duration) *PostCoachingAppointmentConversationsParams

NewPostCoachingAppointmentConversationsParamsWithTimeout creates a new PostCoachingAppointmentConversationsParams object with the ability to set a timeout on a request.

func (*PostCoachingAppointmentConversationsParams) SetAppointmentID

func (o *PostCoachingAppointmentConversationsParams) SetAppointmentID(appointmentID string)

SetAppointmentID adds the appointmentId to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) SetBody

SetBody adds the body to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) SetContext

SetContext adds the context to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) SetDefaults

SetDefaults hydrates default values in the post coaching appointment conversations params (not the query body).

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

func (*PostCoachingAppointmentConversationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) SetTimeout

SetTimeout adds the timeout to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WithAppointmentID

WithAppointmentID adds the appointmentID to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WithBody

WithBody adds the body to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WithContext

WithContext adds the context to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WithDefaults

WithDefaults hydrates default values in the post coaching appointment conversations params (not the query body).

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

func (*PostCoachingAppointmentConversationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WithTimeout

WithTimeout adds the timeout to the post coaching appointment conversations params

func (*PostCoachingAppointmentConversationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCoachingAppointmentConversationsReader

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

PostCoachingAppointmentConversationsReader is a Reader for the PostCoachingAppointmentConversations structure.

func (*PostCoachingAppointmentConversationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostCoachingAppointmentConversationsRequestEntityTooLarge

type PostCoachingAppointmentConversationsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentConversationsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostCoachingAppointmentConversationsRequestEntityTooLarge

func NewPostCoachingAppointmentConversationsRequestEntityTooLarge() *PostCoachingAppointmentConversationsRequestEntityTooLarge

NewPostCoachingAppointmentConversationsRequestEntityTooLarge creates a PostCoachingAppointmentConversationsRequestEntityTooLarge with default headers values

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) Error

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) GetPayload

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post coaching appointment conversations request entity too large response has a 4xx status code

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) IsCode

IsCode returns true when this post coaching appointment conversations request entity too large response a status code equal to that given

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post coaching appointment conversations request entity too large response has a 3xx status code

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post coaching appointment conversations request entity too large response has a 5xx status code

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post coaching appointment conversations request entity too large response has a 2xx status code

func (*PostCoachingAppointmentConversationsRequestEntityTooLarge) String

type PostCoachingAppointmentConversationsRequestTimeout

type PostCoachingAppointmentConversationsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentConversationsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostCoachingAppointmentConversationsRequestTimeout

func NewPostCoachingAppointmentConversationsRequestTimeout() *PostCoachingAppointmentConversationsRequestTimeout

NewPostCoachingAppointmentConversationsRequestTimeout creates a PostCoachingAppointmentConversationsRequestTimeout with default headers values

func (*PostCoachingAppointmentConversationsRequestTimeout) Error

func (*PostCoachingAppointmentConversationsRequestTimeout) GetPayload

func (*PostCoachingAppointmentConversationsRequestTimeout) IsClientError

IsClientError returns true when this post coaching appointment conversations request timeout response has a 4xx status code

func (*PostCoachingAppointmentConversationsRequestTimeout) IsCode

IsCode returns true when this post coaching appointment conversations request timeout response a status code equal to that given

func (*PostCoachingAppointmentConversationsRequestTimeout) IsRedirect

IsRedirect returns true when this post coaching appointment conversations request timeout response has a 3xx status code

func (*PostCoachingAppointmentConversationsRequestTimeout) IsServerError

IsServerError returns true when this post coaching appointment conversations request timeout response has a 5xx status code

func (*PostCoachingAppointmentConversationsRequestTimeout) IsSuccess

IsSuccess returns true when this post coaching appointment conversations request timeout response has a 2xx status code

func (*PostCoachingAppointmentConversationsRequestTimeout) String

type PostCoachingAppointmentConversationsServiceUnavailable

type PostCoachingAppointmentConversationsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostCoachingAppointmentConversationsServiceUnavailable

func NewPostCoachingAppointmentConversationsServiceUnavailable() *PostCoachingAppointmentConversationsServiceUnavailable

NewPostCoachingAppointmentConversationsServiceUnavailable creates a PostCoachingAppointmentConversationsServiceUnavailable with default headers values

func (*PostCoachingAppointmentConversationsServiceUnavailable) Error

func (*PostCoachingAppointmentConversationsServiceUnavailable) GetPayload

func (*PostCoachingAppointmentConversationsServiceUnavailable) IsClientError

IsClientError returns true when this post coaching appointment conversations service unavailable response has a 4xx status code

func (*PostCoachingAppointmentConversationsServiceUnavailable) IsCode

IsCode returns true when this post coaching appointment conversations service unavailable response a status code equal to that given

func (*PostCoachingAppointmentConversationsServiceUnavailable) IsRedirect

IsRedirect returns true when this post coaching appointment conversations service unavailable response has a 3xx status code

func (*PostCoachingAppointmentConversationsServiceUnavailable) IsServerError

IsServerError returns true when this post coaching appointment conversations service unavailable response has a 5xx status code

func (*PostCoachingAppointmentConversationsServiceUnavailable) IsSuccess

IsSuccess returns true when this post coaching appointment conversations service unavailable response has a 2xx status code

func (*PostCoachingAppointmentConversationsServiceUnavailable) String

type PostCoachingAppointmentConversationsTooManyRequests

type PostCoachingAppointmentConversationsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentConversationsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostCoachingAppointmentConversationsTooManyRequests

func NewPostCoachingAppointmentConversationsTooManyRequests() *PostCoachingAppointmentConversationsTooManyRequests

NewPostCoachingAppointmentConversationsTooManyRequests creates a PostCoachingAppointmentConversationsTooManyRequests with default headers values

func (*PostCoachingAppointmentConversationsTooManyRequests) Error

func (*PostCoachingAppointmentConversationsTooManyRequests) GetPayload

func (*PostCoachingAppointmentConversationsTooManyRequests) IsClientError

IsClientError returns true when this post coaching appointment conversations too many requests response has a 4xx status code

func (*PostCoachingAppointmentConversationsTooManyRequests) IsCode

IsCode returns true when this post coaching appointment conversations too many requests response a status code equal to that given

func (*PostCoachingAppointmentConversationsTooManyRequests) IsRedirect

IsRedirect returns true when this post coaching appointment conversations too many requests response has a 3xx status code

func (*PostCoachingAppointmentConversationsTooManyRequests) IsServerError

IsServerError returns true when this post coaching appointment conversations too many requests response has a 5xx status code

func (*PostCoachingAppointmentConversationsTooManyRequests) IsSuccess

IsSuccess returns true when this post coaching appointment conversations too many requests response has a 2xx status code

func (*PostCoachingAppointmentConversationsTooManyRequests) String

type PostCoachingAppointmentConversationsUnauthorized

type PostCoachingAppointmentConversationsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostCoachingAppointmentConversationsUnauthorized

func NewPostCoachingAppointmentConversationsUnauthorized() *PostCoachingAppointmentConversationsUnauthorized

NewPostCoachingAppointmentConversationsUnauthorized creates a PostCoachingAppointmentConversationsUnauthorized with default headers values

func (*PostCoachingAppointmentConversationsUnauthorized) Error

func (*PostCoachingAppointmentConversationsUnauthorized) GetPayload

func (*PostCoachingAppointmentConversationsUnauthorized) IsClientError

IsClientError returns true when this post coaching appointment conversations unauthorized response has a 4xx status code

func (*PostCoachingAppointmentConversationsUnauthorized) IsCode

IsCode returns true when this post coaching appointment conversations unauthorized response a status code equal to that given

func (*PostCoachingAppointmentConversationsUnauthorized) IsRedirect

IsRedirect returns true when this post coaching appointment conversations unauthorized response has a 3xx status code

func (*PostCoachingAppointmentConversationsUnauthorized) IsServerError

IsServerError returns true when this post coaching appointment conversations unauthorized response has a 5xx status code

func (*PostCoachingAppointmentConversationsUnauthorized) IsSuccess

IsSuccess returns true when this post coaching appointment conversations unauthorized response has a 2xx status code

func (*PostCoachingAppointmentConversationsUnauthorized) String

type PostCoachingAppointmentConversationsUnsupportedMediaType

type PostCoachingAppointmentConversationsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentConversationsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostCoachingAppointmentConversationsUnsupportedMediaType

func NewPostCoachingAppointmentConversationsUnsupportedMediaType() *PostCoachingAppointmentConversationsUnsupportedMediaType

NewPostCoachingAppointmentConversationsUnsupportedMediaType creates a PostCoachingAppointmentConversationsUnsupportedMediaType with default headers values

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) Error

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) GetPayload

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) IsClientError

IsClientError returns true when this post coaching appointment conversations unsupported media type response has a 4xx status code

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) IsCode

IsCode returns true when this post coaching appointment conversations unsupported media type response a status code equal to that given

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post coaching appointment conversations unsupported media type response has a 3xx status code

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) IsServerError

IsServerError returns true when this post coaching appointment conversations unsupported media type response has a 5xx status code

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post coaching appointment conversations unsupported media type response has a 2xx status code

func (*PostCoachingAppointmentConversationsUnsupportedMediaType) String

type PostCoachingAppointmentsAccepted

type PostCoachingAppointmentsAccepted struct {
	Payload *models.CoachingAppointmentReference
}

PostCoachingAppointmentsAccepted describes a response with status code 202, with default header values.

Appointment create request accepted

func NewPostCoachingAppointmentsAccepted

func NewPostCoachingAppointmentsAccepted() *PostCoachingAppointmentsAccepted

NewPostCoachingAppointmentsAccepted creates a PostCoachingAppointmentsAccepted with default headers values

func (*PostCoachingAppointmentsAccepted) Error

func (*PostCoachingAppointmentsAccepted) GetPayload

func (*PostCoachingAppointmentsAccepted) IsClientError

func (o *PostCoachingAppointmentsAccepted) IsClientError() bool

IsClientError returns true when this post coaching appointments accepted response has a 4xx status code

func (*PostCoachingAppointmentsAccepted) IsCode

func (o *PostCoachingAppointmentsAccepted) IsCode(code int) bool

IsCode returns true when this post coaching appointments accepted response a status code equal to that given

func (*PostCoachingAppointmentsAccepted) IsRedirect

func (o *PostCoachingAppointmentsAccepted) IsRedirect() bool

IsRedirect returns true when this post coaching appointments accepted response has a 3xx status code

func (*PostCoachingAppointmentsAccepted) IsServerError

func (o *PostCoachingAppointmentsAccepted) IsServerError() bool

IsServerError returns true when this post coaching appointments accepted response has a 5xx status code

func (*PostCoachingAppointmentsAccepted) IsSuccess

func (o *PostCoachingAppointmentsAccepted) IsSuccess() bool

IsSuccess returns true when this post coaching appointments accepted response has a 2xx status code

func (*PostCoachingAppointmentsAccepted) String

type PostCoachingAppointmentsAggregatesQueryBadRequest

type PostCoachingAppointmentsAggregatesQueryBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostCoachingAppointmentsAggregatesQueryBadRequest

func NewPostCoachingAppointmentsAggregatesQueryBadRequest() *PostCoachingAppointmentsAggregatesQueryBadRequest

NewPostCoachingAppointmentsAggregatesQueryBadRequest creates a PostCoachingAppointmentsAggregatesQueryBadRequest with default headers values

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) Error

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) IsClientError

IsClientError returns true when this post coaching appointments aggregates query bad request response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) IsCode

IsCode returns true when this post coaching appointments aggregates query bad request response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query bad request response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) IsServerError

IsServerError returns true when this post coaching appointments aggregates query bad request response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query bad request response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryBadRequest) String

type PostCoachingAppointmentsAggregatesQueryForbidden

type PostCoachingAppointmentsAggregatesQueryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostCoachingAppointmentsAggregatesQueryForbidden

func NewPostCoachingAppointmentsAggregatesQueryForbidden() *PostCoachingAppointmentsAggregatesQueryForbidden

NewPostCoachingAppointmentsAggregatesQueryForbidden creates a PostCoachingAppointmentsAggregatesQueryForbidden with default headers values

func (*PostCoachingAppointmentsAggregatesQueryForbidden) Error

func (*PostCoachingAppointmentsAggregatesQueryForbidden) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryForbidden) IsClientError

IsClientError returns true when this post coaching appointments aggregates query forbidden response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryForbidden) IsCode

IsCode returns true when this post coaching appointments aggregates query forbidden response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryForbidden) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query forbidden response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryForbidden) IsServerError

IsServerError returns true when this post coaching appointments aggregates query forbidden response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryForbidden) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query forbidden response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryForbidden) String

type PostCoachingAppointmentsAggregatesQueryGatewayTimeout

type PostCoachingAppointmentsAggregatesQueryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostCoachingAppointmentsAggregatesQueryGatewayTimeout

func NewPostCoachingAppointmentsAggregatesQueryGatewayTimeout() *PostCoachingAppointmentsAggregatesQueryGatewayTimeout

NewPostCoachingAppointmentsAggregatesQueryGatewayTimeout creates a PostCoachingAppointmentsAggregatesQueryGatewayTimeout with default headers values

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) Error

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) IsClientError

IsClientError returns true when this post coaching appointments aggregates query gateway timeout response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) IsCode

IsCode returns true when this post coaching appointments aggregates query gateway timeout response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query gateway timeout response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) IsServerError

IsServerError returns true when this post coaching appointments aggregates query gateway timeout response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query gateway timeout response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryGatewayTimeout) String

type PostCoachingAppointmentsAggregatesQueryInternalServerError

type PostCoachingAppointmentsAggregatesQueryInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostCoachingAppointmentsAggregatesQueryInternalServerError

func NewPostCoachingAppointmentsAggregatesQueryInternalServerError() *PostCoachingAppointmentsAggregatesQueryInternalServerError

NewPostCoachingAppointmentsAggregatesQueryInternalServerError creates a PostCoachingAppointmentsAggregatesQueryInternalServerError with default headers values

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) Error

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) IsClientError

IsClientError returns true when this post coaching appointments aggregates query internal server error response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) IsCode

IsCode returns true when this post coaching appointments aggregates query internal server error response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query internal server error response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) IsServerError

IsServerError returns true when this post coaching appointments aggregates query internal server error response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query internal server error response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryInternalServerError) String

type PostCoachingAppointmentsAggregatesQueryNotFound

type PostCoachingAppointmentsAggregatesQueryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostCoachingAppointmentsAggregatesQueryNotFound

func NewPostCoachingAppointmentsAggregatesQueryNotFound() *PostCoachingAppointmentsAggregatesQueryNotFound

NewPostCoachingAppointmentsAggregatesQueryNotFound creates a PostCoachingAppointmentsAggregatesQueryNotFound with default headers values

func (*PostCoachingAppointmentsAggregatesQueryNotFound) Error

func (*PostCoachingAppointmentsAggregatesQueryNotFound) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryNotFound) IsClientError

IsClientError returns true when this post coaching appointments aggregates query not found response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryNotFound) IsCode

IsCode returns true when this post coaching appointments aggregates query not found response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryNotFound) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query not found response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryNotFound) IsServerError

IsServerError returns true when this post coaching appointments aggregates query not found response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryNotFound) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query not found response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryNotFound) String

type PostCoachingAppointmentsAggregatesQueryOK

type PostCoachingAppointmentsAggregatesQueryOK struct {
	Payload *models.CoachingAppointmentAggregateResponse
}

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

Query completed successfully

func NewPostCoachingAppointmentsAggregatesQueryOK

func NewPostCoachingAppointmentsAggregatesQueryOK() *PostCoachingAppointmentsAggregatesQueryOK

NewPostCoachingAppointmentsAggregatesQueryOK creates a PostCoachingAppointmentsAggregatesQueryOK with default headers values

func (*PostCoachingAppointmentsAggregatesQueryOK) Error

func (*PostCoachingAppointmentsAggregatesQueryOK) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryOK) IsClientError

IsClientError returns true when this post coaching appointments aggregates query o k response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryOK) IsCode

IsCode returns true when this post coaching appointments aggregates query o k response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryOK) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query o k response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryOK) IsServerError

IsServerError returns true when this post coaching appointments aggregates query o k response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryOK) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query o k response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryOK) String

type PostCoachingAppointmentsAggregatesQueryParams

type PostCoachingAppointmentsAggregatesQueryParams struct {

	/* Body.

	   Aggregate Request
	*/
	Body *models.CoachingAppointmentAggregateRequest

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

PostCoachingAppointmentsAggregatesQueryParams contains all the parameters to send to the API endpoint

for the post coaching appointments aggregates query operation.

Typically these are written to a http.Request.

func NewPostCoachingAppointmentsAggregatesQueryParams

func NewPostCoachingAppointmentsAggregatesQueryParams() *PostCoachingAppointmentsAggregatesQueryParams

NewPostCoachingAppointmentsAggregatesQueryParams creates a new PostCoachingAppointmentsAggregatesQueryParams 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 NewPostCoachingAppointmentsAggregatesQueryParamsWithContext

func NewPostCoachingAppointmentsAggregatesQueryParamsWithContext(ctx context.Context) *PostCoachingAppointmentsAggregatesQueryParams

NewPostCoachingAppointmentsAggregatesQueryParamsWithContext creates a new PostCoachingAppointmentsAggregatesQueryParams object with the ability to set a context for a request.

func NewPostCoachingAppointmentsAggregatesQueryParamsWithHTTPClient

func NewPostCoachingAppointmentsAggregatesQueryParamsWithHTTPClient(client *http.Client) *PostCoachingAppointmentsAggregatesQueryParams

NewPostCoachingAppointmentsAggregatesQueryParamsWithHTTPClient creates a new PostCoachingAppointmentsAggregatesQueryParams object with the ability to set a custom HTTPClient for a request.

func NewPostCoachingAppointmentsAggregatesQueryParamsWithTimeout

func NewPostCoachingAppointmentsAggregatesQueryParamsWithTimeout(timeout time.Duration) *PostCoachingAppointmentsAggregatesQueryParams

NewPostCoachingAppointmentsAggregatesQueryParamsWithTimeout creates a new PostCoachingAppointmentsAggregatesQueryParams object with the ability to set a timeout on a request.

func (*PostCoachingAppointmentsAggregatesQueryParams) SetBody

SetBody adds the body to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) SetContext

SetContext adds the context to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) SetDefaults

SetDefaults hydrates default values in the post coaching appointments aggregates query params (not the query body).

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

func (*PostCoachingAppointmentsAggregatesQueryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) SetTimeout

SetTimeout adds the timeout to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) WithBody

WithBody adds the body to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) WithContext

WithContext adds the context to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) WithDefaults

WithDefaults hydrates default values in the post coaching appointments aggregates query params (not the query body).

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

func (*PostCoachingAppointmentsAggregatesQueryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) WithTimeout

WithTimeout adds the timeout to the post coaching appointments aggregates query params

func (*PostCoachingAppointmentsAggregatesQueryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCoachingAppointmentsAggregatesQueryReader

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

PostCoachingAppointmentsAggregatesQueryReader is a Reader for the PostCoachingAppointmentsAggregatesQuery structure.

func (*PostCoachingAppointmentsAggregatesQueryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge

type PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge

func NewPostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge() *PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge

NewPostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge creates a PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge with default headers values

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) Error

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) IsClientError

IsClientError returns true when this post coaching appointments aggregates query request entity too large response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) IsCode

IsCode returns true when this post coaching appointments aggregates query request entity too large response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query request entity too large response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) IsServerError

IsServerError returns true when this post coaching appointments aggregates query request entity too large response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query request entity too large response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestEntityTooLarge) String

type PostCoachingAppointmentsAggregatesQueryRequestTimeout

type PostCoachingAppointmentsAggregatesQueryRequestTimeout struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsAggregatesQueryRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostCoachingAppointmentsAggregatesQueryRequestTimeout

func NewPostCoachingAppointmentsAggregatesQueryRequestTimeout() *PostCoachingAppointmentsAggregatesQueryRequestTimeout

NewPostCoachingAppointmentsAggregatesQueryRequestTimeout creates a PostCoachingAppointmentsAggregatesQueryRequestTimeout with default headers values

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) Error

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) IsClientError

IsClientError returns true when this post coaching appointments aggregates query request timeout response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) IsCode

IsCode returns true when this post coaching appointments aggregates query request timeout response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query request timeout response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) IsServerError

IsServerError returns true when this post coaching appointments aggregates query request timeout response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query request timeout response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryRequestTimeout) String

type PostCoachingAppointmentsAggregatesQueryServiceUnavailable

type PostCoachingAppointmentsAggregatesQueryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostCoachingAppointmentsAggregatesQueryServiceUnavailable

func NewPostCoachingAppointmentsAggregatesQueryServiceUnavailable() *PostCoachingAppointmentsAggregatesQueryServiceUnavailable

NewPostCoachingAppointmentsAggregatesQueryServiceUnavailable creates a PostCoachingAppointmentsAggregatesQueryServiceUnavailable with default headers values

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) Error

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) IsClientError

IsClientError returns true when this post coaching appointments aggregates query service unavailable response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) IsCode

IsCode returns true when this post coaching appointments aggregates query service unavailable response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query service unavailable response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) IsServerError

IsServerError returns true when this post coaching appointments aggregates query service unavailable response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query service unavailable response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryServiceUnavailable) String

type PostCoachingAppointmentsAggregatesQueryTooManyRequests

type PostCoachingAppointmentsAggregatesQueryTooManyRequests struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsAggregatesQueryTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostCoachingAppointmentsAggregatesQueryTooManyRequests

func NewPostCoachingAppointmentsAggregatesQueryTooManyRequests() *PostCoachingAppointmentsAggregatesQueryTooManyRequests

NewPostCoachingAppointmentsAggregatesQueryTooManyRequests creates a PostCoachingAppointmentsAggregatesQueryTooManyRequests with default headers values

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) Error

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) IsClientError

IsClientError returns true when this post coaching appointments aggregates query too many requests response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) IsCode

IsCode returns true when this post coaching appointments aggregates query too many requests response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query too many requests response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) IsServerError

IsServerError returns true when this post coaching appointments aggregates query too many requests response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query too many requests response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryTooManyRequests) String

type PostCoachingAppointmentsAggregatesQueryUnauthorized

type PostCoachingAppointmentsAggregatesQueryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostCoachingAppointmentsAggregatesQueryUnauthorized

func NewPostCoachingAppointmentsAggregatesQueryUnauthorized() *PostCoachingAppointmentsAggregatesQueryUnauthorized

NewPostCoachingAppointmentsAggregatesQueryUnauthorized creates a PostCoachingAppointmentsAggregatesQueryUnauthorized with default headers values

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) Error

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) IsClientError

IsClientError returns true when this post coaching appointments aggregates query unauthorized response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) IsCode

IsCode returns true when this post coaching appointments aggregates query unauthorized response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query unauthorized response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) IsServerError

IsServerError returns true when this post coaching appointments aggregates query unauthorized response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query unauthorized response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnauthorized) String

type PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType

type PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostCoachingAppointmentsAggregatesQueryUnsupportedMediaType

func NewPostCoachingAppointmentsAggregatesQueryUnsupportedMediaType() *PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType

NewPostCoachingAppointmentsAggregatesQueryUnsupportedMediaType creates a PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType with default headers values

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) Error

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) GetPayload

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) IsClientError

IsClientError returns true when this post coaching appointments aggregates query unsupported media type response has a 4xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) IsCode

IsCode returns true when this post coaching appointments aggregates query unsupported media type response a status code equal to that given

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post coaching appointments aggregates query unsupported media type response has a 3xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) IsServerError

IsServerError returns true when this post coaching appointments aggregates query unsupported media type response has a 5xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post coaching appointments aggregates query unsupported media type response has a 2xx status code

func (*PostCoachingAppointmentsAggregatesQueryUnsupportedMediaType) String

type PostCoachingAppointmentsBadRequest

type PostCoachingAppointmentsBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostCoachingAppointmentsBadRequest

func NewPostCoachingAppointmentsBadRequest() *PostCoachingAppointmentsBadRequest

NewPostCoachingAppointmentsBadRequest creates a PostCoachingAppointmentsBadRequest with default headers values

func (*PostCoachingAppointmentsBadRequest) Error

func (*PostCoachingAppointmentsBadRequest) GetPayload

func (*PostCoachingAppointmentsBadRequest) IsClientError

func (o *PostCoachingAppointmentsBadRequest) IsClientError() bool

IsClientError returns true when this post coaching appointments bad request response has a 4xx status code

func (*PostCoachingAppointmentsBadRequest) IsCode

IsCode returns true when this post coaching appointments bad request response a status code equal to that given

func (*PostCoachingAppointmentsBadRequest) IsRedirect

func (o *PostCoachingAppointmentsBadRequest) IsRedirect() bool

IsRedirect returns true when this post coaching appointments bad request response has a 3xx status code

func (*PostCoachingAppointmentsBadRequest) IsServerError

func (o *PostCoachingAppointmentsBadRequest) IsServerError() bool

IsServerError returns true when this post coaching appointments bad request response has a 5xx status code

func (*PostCoachingAppointmentsBadRequest) IsSuccess

IsSuccess returns true when this post coaching appointments bad request response has a 2xx status code

func (*PostCoachingAppointmentsBadRequest) String

type PostCoachingAppointmentsConflict

type PostCoachingAppointmentsConflict struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsConflict describes a response with status code 409, with default header values.

Conflict

func NewPostCoachingAppointmentsConflict

func NewPostCoachingAppointmentsConflict() *PostCoachingAppointmentsConflict

NewPostCoachingAppointmentsConflict creates a PostCoachingAppointmentsConflict with default headers values

func (*PostCoachingAppointmentsConflict) Error

func (*PostCoachingAppointmentsConflict) GetPayload

func (*PostCoachingAppointmentsConflict) IsClientError

func (o *PostCoachingAppointmentsConflict) IsClientError() bool

IsClientError returns true when this post coaching appointments conflict response has a 4xx status code

func (*PostCoachingAppointmentsConflict) IsCode

func (o *PostCoachingAppointmentsConflict) IsCode(code int) bool

IsCode returns true when this post coaching appointments conflict response a status code equal to that given

func (*PostCoachingAppointmentsConflict) IsRedirect

func (o *PostCoachingAppointmentsConflict) IsRedirect() bool

IsRedirect returns true when this post coaching appointments conflict response has a 3xx status code

func (*PostCoachingAppointmentsConflict) IsServerError

func (o *PostCoachingAppointmentsConflict) IsServerError() bool

IsServerError returns true when this post coaching appointments conflict response has a 5xx status code

func (*PostCoachingAppointmentsConflict) IsSuccess

func (o *PostCoachingAppointmentsConflict) IsSuccess() bool

IsSuccess returns true when this post coaching appointments conflict response has a 2xx status code

func (*PostCoachingAppointmentsConflict) String

type PostCoachingAppointmentsCreated

type PostCoachingAppointmentsCreated struct {
	Payload *models.CoachingAppointmentResponse
}

PostCoachingAppointmentsCreated describes a response with status code 201, with default header values.

Appointment created

func NewPostCoachingAppointmentsCreated

func NewPostCoachingAppointmentsCreated() *PostCoachingAppointmentsCreated

NewPostCoachingAppointmentsCreated creates a PostCoachingAppointmentsCreated with default headers values

func (*PostCoachingAppointmentsCreated) Error

func (*PostCoachingAppointmentsCreated) GetPayload

func (*PostCoachingAppointmentsCreated) IsClientError

func (o *PostCoachingAppointmentsCreated) IsClientError() bool

IsClientError returns true when this post coaching appointments created response has a 4xx status code

func (*PostCoachingAppointmentsCreated) IsCode

func (o *PostCoachingAppointmentsCreated) IsCode(code int) bool

IsCode returns true when this post coaching appointments created response a status code equal to that given

func (*PostCoachingAppointmentsCreated) IsRedirect

func (o *PostCoachingAppointmentsCreated) IsRedirect() bool

IsRedirect returns true when this post coaching appointments created response has a 3xx status code

func (*PostCoachingAppointmentsCreated) IsServerError

func (o *PostCoachingAppointmentsCreated) IsServerError() bool

IsServerError returns true when this post coaching appointments created response has a 5xx status code

func (*PostCoachingAppointmentsCreated) IsSuccess

func (o *PostCoachingAppointmentsCreated) IsSuccess() bool

IsSuccess returns true when this post coaching appointments created response has a 2xx status code

func (*PostCoachingAppointmentsCreated) String

type PostCoachingAppointmentsForbidden

type PostCoachingAppointmentsForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostCoachingAppointmentsForbidden

func NewPostCoachingAppointmentsForbidden() *PostCoachingAppointmentsForbidden

NewPostCoachingAppointmentsForbidden creates a PostCoachingAppointmentsForbidden with default headers values

func (*PostCoachingAppointmentsForbidden) Error

func (*PostCoachingAppointmentsForbidden) GetPayload

func (*PostCoachingAppointmentsForbidden) IsClientError

func (o *PostCoachingAppointmentsForbidden) IsClientError() bool

IsClientError returns true when this post coaching appointments forbidden response has a 4xx status code

func (*PostCoachingAppointmentsForbidden) IsCode

func (o *PostCoachingAppointmentsForbidden) IsCode(code int) bool

IsCode returns true when this post coaching appointments forbidden response a status code equal to that given

func (*PostCoachingAppointmentsForbidden) IsRedirect

func (o *PostCoachingAppointmentsForbidden) IsRedirect() bool

IsRedirect returns true when this post coaching appointments forbidden response has a 3xx status code

func (*PostCoachingAppointmentsForbidden) IsServerError

func (o *PostCoachingAppointmentsForbidden) IsServerError() bool

IsServerError returns true when this post coaching appointments forbidden response has a 5xx status code

func (*PostCoachingAppointmentsForbidden) IsSuccess

func (o *PostCoachingAppointmentsForbidden) IsSuccess() bool

IsSuccess returns true when this post coaching appointments forbidden response has a 2xx status code

func (*PostCoachingAppointmentsForbidden) String

type PostCoachingAppointmentsGatewayTimeout

type PostCoachingAppointmentsGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostCoachingAppointmentsGatewayTimeout

func NewPostCoachingAppointmentsGatewayTimeout() *PostCoachingAppointmentsGatewayTimeout

NewPostCoachingAppointmentsGatewayTimeout creates a PostCoachingAppointmentsGatewayTimeout with default headers values

func (*PostCoachingAppointmentsGatewayTimeout) Error

func (*PostCoachingAppointmentsGatewayTimeout) GetPayload

func (*PostCoachingAppointmentsGatewayTimeout) IsClientError

func (o *PostCoachingAppointmentsGatewayTimeout) IsClientError() bool

IsClientError returns true when this post coaching appointments gateway timeout response has a 4xx status code

func (*PostCoachingAppointmentsGatewayTimeout) IsCode

IsCode returns true when this post coaching appointments gateway timeout response a status code equal to that given

func (*PostCoachingAppointmentsGatewayTimeout) IsRedirect

IsRedirect returns true when this post coaching appointments gateway timeout response has a 3xx status code

func (*PostCoachingAppointmentsGatewayTimeout) IsServerError

func (o *PostCoachingAppointmentsGatewayTimeout) IsServerError() bool

IsServerError returns true when this post coaching appointments gateway timeout response has a 5xx status code

func (*PostCoachingAppointmentsGatewayTimeout) IsSuccess

IsSuccess returns true when this post coaching appointments gateway timeout response has a 2xx status code

func (*PostCoachingAppointmentsGatewayTimeout) String

type PostCoachingAppointmentsInternalServerError

type PostCoachingAppointmentsInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostCoachingAppointmentsInternalServerError

func NewPostCoachingAppointmentsInternalServerError() *PostCoachingAppointmentsInternalServerError

NewPostCoachingAppointmentsInternalServerError creates a PostCoachingAppointmentsInternalServerError with default headers values

func (*PostCoachingAppointmentsInternalServerError) Error

func (*PostCoachingAppointmentsInternalServerError) GetPayload

func (*PostCoachingAppointmentsInternalServerError) IsClientError

IsClientError returns true when this post coaching appointments internal server error response has a 4xx status code

func (*PostCoachingAppointmentsInternalServerError) IsCode

IsCode returns true when this post coaching appointments internal server error response a status code equal to that given

func (*PostCoachingAppointmentsInternalServerError) IsRedirect

IsRedirect returns true when this post coaching appointments internal server error response has a 3xx status code

func (*PostCoachingAppointmentsInternalServerError) IsServerError

IsServerError returns true when this post coaching appointments internal server error response has a 5xx status code

func (*PostCoachingAppointmentsInternalServerError) IsSuccess

IsSuccess returns true when this post coaching appointments internal server error response has a 2xx status code

func (*PostCoachingAppointmentsInternalServerError) String

type PostCoachingAppointmentsNotFound

type PostCoachingAppointmentsNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostCoachingAppointmentsNotFound

func NewPostCoachingAppointmentsNotFound() *PostCoachingAppointmentsNotFound

NewPostCoachingAppointmentsNotFound creates a PostCoachingAppointmentsNotFound with default headers values

func (*PostCoachingAppointmentsNotFound) Error

func (*PostCoachingAppointmentsNotFound) GetPayload

func (*PostCoachingAppointmentsNotFound) IsClientError

func (o *PostCoachingAppointmentsNotFound) IsClientError() bool

IsClientError returns true when this post coaching appointments not found response has a 4xx status code

func (*PostCoachingAppointmentsNotFound) IsCode

func (o *PostCoachingAppointmentsNotFound) IsCode(code int) bool

IsCode returns true when this post coaching appointments not found response a status code equal to that given

func (*PostCoachingAppointmentsNotFound) IsRedirect

func (o *PostCoachingAppointmentsNotFound) IsRedirect() bool

IsRedirect returns true when this post coaching appointments not found response has a 3xx status code

func (*PostCoachingAppointmentsNotFound) IsServerError

func (o *PostCoachingAppointmentsNotFound) IsServerError() bool

IsServerError returns true when this post coaching appointments not found response has a 5xx status code

func (*PostCoachingAppointmentsNotFound) IsSuccess

func (o *PostCoachingAppointmentsNotFound) IsSuccess() bool

IsSuccess returns true when this post coaching appointments not found response has a 2xx status code

func (*PostCoachingAppointmentsNotFound) String

type PostCoachingAppointmentsParams

type PostCoachingAppointmentsParams struct {

	/* Body.

	   The appointment to add
	*/
	Body *models.CreateCoachingAppointmentRequest

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

PostCoachingAppointmentsParams contains all the parameters to send to the API endpoint

for the post coaching appointments operation.

Typically these are written to a http.Request.

func NewPostCoachingAppointmentsParams

func NewPostCoachingAppointmentsParams() *PostCoachingAppointmentsParams

NewPostCoachingAppointmentsParams creates a new PostCoachingAppointmentsParams 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 NewPostCoachingAppointmentsParamsWithContext

func NewPostCoachingAppointmentsParamsWithContext(ctx context.Context) *PostCoachingAppointmentsParams

NewPostCoachingAppointmentsParamsWithContext creates a new PostCoachingAppointmentsParams object with the ability to set a context for a request.

func NewPostCoachingAppointmentsParamsWithHTTPClient

func NewPostCoachingAppointmentsParamsWithHTTPClient(client *http.Client) *PostCoachingAppointmentsParams

NewPostCoachingAppointmentsParamsWithHTTPClient creates a new PostCoachingAppointmentsParams object with the ability to set a custom HTTPClient for a request.

func NewPostCoachingAppointmentsParamsWithTimeout

func NewPostCoachingAppointmentsParamsWithTimeout(timeout time.Duration) *PostCoachingAppointmentsParams

NewPostCoachingAppointmentsParamsWithTimeout creates a new PostCoachingAppointmentsParams object with the ability to set a timeout on a request.

func (*PostCoachingAppointmentsParams) SetBody

SetBody adds the body to the post coaching appointments params

func (*PostCoachingAppointmentsParams) SetContext

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

SetContext adds the context to the post coaching appointments params

func (*PostCoachingAppointmentsParams) SetDefaults

func (o *PostCoachingAppointmentsParams) SetDefaults()

SetDefaults hydrates default values in the post coaching appointments params (not the query body).

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

func (*PostCoachingAppointmentsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post coaching appointments params

func (*PostCoachingAppointmentsParams) SetTimeout

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

SetTimeout adds the timeout to the post coaching appointments params

func (*PostCoachingAppointmentsParams) WithBody

WithBody adds the body to the post coaching appointments params

func (*PostCoachingAppointmentsParams) WithContext

WithContext adds the context to the post coaching appointments params

func (*PostCoachingAppointmentsParams) WithDefaults

WithDefaults hydrates default values in the post coaching appointments params (not the query body).

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

func (*PostCoachingAppointmentsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post coaching appointments params

func (*PostCoachingAppointmentsParams) WithTimeout

WithTimeout adds the timeout to the post coaching appointments params

func (*PostCoachingAppointmentsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCoachingAppointmentsReader

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

PostCoachingAppointmentsReader is a Reader for the PostCoachingAppointments structure.

func (*PostCoachingAppointmentsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostCoachingAppointmentsRequestEntityTooLarge

type PostCoachingAppointmentsRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostCoachingAppointmentsRequestEntityTooLarge

func NewPostCoachingAppointmentsRequestEntityTooLarge() *PostCoachingAppointmentsRequestEntityTooLarge

NewPostCoachingAppointmentsRequestEntityTooLarge creates a PostCoachingAppointmentsRequestEntityTooLarge with default headers values

func (*PostCoachingAppointmentsRequestEntityTooLarge) Error

func (*PostCoachingAppointmentsRequestEntityTooLarge) GetPayload

func (*PostCoachingAppointmentsRequestEntityTooLarge) IsClientError

IsClientError returns true when this post coaching appointments request entity too large response has a 4xx status code

func (*PostCoachingAppointmentsRequestEntityTooLarge) IsCode

IsCode returns true when this post coaching appointments request entity too large response a status code equal to that given

func (*PostCoachingAppointmentsRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post coaching appointments request entity too large response has a 3xx status code

func (*PostCoachingAppointmentsRequestEntityTooLarge) IsServerError

IsServerError returns true when this post coaching appointments request entity too large response has a 5xx status code

func (*PostCoachingAppointmentsRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post coaching appointments request entity too large response has a 2xx status code

func (*PostCoachingAppointmentsRequestEntityTooLarge) String

type PostCoachingAppointmentsRequestTimeout

type PostCoachingAppointmentsRequestTimeout struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostCoachingAppointmentsRequestTimeout

func NewPostCoachingAppointmentsRequestTimeout() *PostCoachingAppointmentsRequestTimeout

NewPostCoachingAppointmentsRequestTimeout creates a PostCoachingAppointmentsRequestTimeout with default headers values

func (*PostCoachingAppointmentsRequestTimeout) Error

func (*PostCoachingAppointmentsRequestTimeout) GetPayload

func (*PostCoachingAppointmentsRequestTimeout) IsClientError

func (o *PostCoachingAppointmentsRequestTimeout) IsClientError() bool

IsClientError returns true when this post coaching appointments request timeout response has a 4xx status code

func (*PostCoachingAppointmentsRequestTimeout) IsCode

IsCode returns true when this post coaching appointments request timeout response a status code equal to that given

func (*PostCoachingAppointmentsRequestTimeout) IsRedirect

IsRedirect returns true when this post coaching appointments request timeout response has a 3xx status code

func (*PostCoachingAppointmentsRequestTimeout) IsServerError

func (o *PostCoachingAppointmentsRequestTimeout) IsServerError() bool

IsServerError returns true when this post coaching appointments request timeout response has a 5xx status code

func (*PostCoachingAppointmentsRequestTimeout) IsSuccess

IsSuccess returns true when this post coaching appointments request timeout response has a 2xx status code

func (*PostCoachingAppointmentsRequestTimeout) String

type PostCoachingAppointmentsServiceUnavailable

type PostCoachingAppointmentsServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostCoachingAppointmentsServiceUnavailable

func NewPostCoachingAppointmentsServiceUnavailable() *PostCoachingAppointmentsServiceUnavailable

NewPostCoachingAppointmentsServiceUnavailable creates a PostCoachingAppointmentsServiceUnavailable with default headers values

func (*PostCoachingAppointmentsServiceUnavailable) Error

func (*PostCoachingAppointmentsServiceUnavailable) GetPayload

func (*PostCoachingAppointmentsServiceUnavailable) IsClientError

IsClientError returns true when this post coaching appointments service unavailable response has a 4xx status code

func (*PostCoachingAppointmentsServiceUnavailable) IsCode

IsCode returns true when this post coaching appointments service unavailable response a status code equal to that given

func (*PostCoachingAppointmentsServiceUnavailable) IsRedirect

IsRedirect returns true when this post coaching appointments service unavailable response has a 3xx status code

func (*PostCoachingAppointmentsServiceUnavailable) IsServerError

IsServerError returns true when this post coaching appointments service unavailable response has a 5xx status code

func (*PostCoachingAppointmentsServiceUnavailable) IsSuccess

IsSuccess returns true when this post coaching appointments service unavailable response has a 2xx status code

func (*PostCoachingAppointmentsServiceUnavailable) String

type PostCoachingAppointmentsTooManyRequests

type PostCoachingAppointmentsTooManyRequests struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostCoachingAppointmentsTooManyRequests

func NewPostCoachingAppointmentsTooManyRequests() *PostCoachingAppointmentsTooManyRequests

NewPostCoachingAppointmentsTooManyRequests creates a PostCoachingAppointmentsTooManyRequests with default headers values

func (*PostCoachingAppointmentsTooManyRequests) Error

func (*PostCoachingAppointmentsTooManyRequests) GetPayload

func (*PostCoachingAppointmentsTooManyRequests) IsClientError

func (o *PostCoachingAppointmentsTooManyRequests) IsClientError() bool

IsClientError returns true when this post coaching appointments too many requests response has a 4xx status code

func (*PostCoachingAppointmentsTooManyRequests) IsCode

IsCode returns true when this post coaching appointments too many requests response a status code equal to that given

func (*PostCoachingAppointmentsTooManyRequests) IsRedirect

IsRedirect returns true when this post coaching appointments too many requests response has a 3xx status code

func (*PostCoachingAppointmentsTooManyRequests) IsServerError

func (o *PostCoachingAppointmentsTooManyRequests) IsServerError() bool

IsServerError returns true when this post coaching appointments too many requests response has a 5xx status code

func (*PostCoachingAppointmentsTooManyRequests) IsSuccess

IsSuccess returns true when this post coaching appointments too many requests response has a 2xx status code

func (*PostCoachingAppointmentsTooManyRequests) String

type PostCoachingAppointmentsUnauthorized

type PostCoachingAppointmentsUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostCoachingAppointmentsUnauthorized

func NewPostCoachingAppointmentsUnauthorized() *PostCoachingAppointmentsUnauthorized

NewPostCoachingAppointmentsUnauthorized creates a PostCoachingAppointmentsUnauthorized with default headers values

func (*PostCoachingAppointmentsUnauthorized) Error

func (*PostCoachingAppointmentsUnauthorized) GetPayload

func (*PostCoachingAppointmentsUnauthorized) IsClientError

func (o *PostCoachingAppointmentsUnauthorized) IsClientError() bool

IsClientError returns true when this post coaching appointments unauthorized response has a 4xx status code

func (*PostCoachingAppointmentsUnauthorized) IsCode

IsCode returns true when this post coaching appointments unauthorized response a status code equal to that given

func (*PostCoachingAppointmentsUnauthorized) IsRedirect

IsRedirect returns true when this post coaching appointments unauthorized response has a 3xx status code

func (*PostCoachingAppointmentsUnauthorized) IsServerError

func (o *PostCoachingAppointmentsUnauthorized) IsServerError() bool

IsServerError returns true when this post coaching appointments unauthorized response has a 5xx status code

func (*PostCoachingAppointmentsUnauthorized) IsSuccess

IsSuccess returns true when this post coaching appointments unauthorized response has a 2xx status code

func (*PostCoachingAppointmentsUnauthorized) String

type PostCoachingAppointmentsUnsupportedMediaType

type PostCoachingAppointmentsUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostCoachingAppointmentsUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostCoachingAppointmentsUnsupportedMediaType

func NewPostCoachingAppointmentsUnsupportedMediaType() *PostCoachingAppointmentsUnsupportedMediaType

NewPostCoachingAppointmentsUnsupportedMediaType creates a PostCoachingAppointmentsUnsupportedMediaType with default headers values

func (*PostCoachingAppointmentsUnsupportedMediaType) Error

func (*PostCoachingAppointmentsUnsupportedMediaType) GetPayload

func (*PostCoachingAppointmentsUnsupportedMediaType) IsClientError

IsClientError returns true when this post coaching appointments unsupported media type response has a 4xx status code

func (*PostCoachingAppointmentsUnsupportedMediaType) IsCode

IsCode returns true when this post coaching appointments unsupported media type response a status code equal to that given

func (*PostCoachingAppointmentsUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post coaching appointments unsupported media type response has a 3xx status code

func (*PostCoachingAppointmentsUnsupportedMediaType) IsServerError

IsServerError returns true when this post coaching appointments unsupported media type response has a 5xx status code

func (*PostCoachingAppointmentsUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post coaching appointments unsupported media type response has a 2xx status code

func (*PostCoachingAppointmentsUnsupportedMediaType) String

type PostCoachingScheduleslotsQueryBadRequest

type PostCoachingScheduleslotsQueryBadRequest struct {
	Payload *models.ErrorBody
}

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

The request could not be understood by the server due to malformed syntax.

func NewPostCoachingScheduleslotsQueryBadRequest

func NewPostCoachingScheduleslotsQueryBadRequest() *PostCoachingScheduleslotsQueryBadRequest

NewPostCoachingScheduleslotsQueryBadRequest creates a PostCoachingScheduleslotsQueryBadRequest with default headers values

func (*PostCoachingScheduleslotsQueryBadRequest) Error

func (*PostCoachingScheduleslotsQueryBadRequest) GetPayload

func (*PostCoachingScheduleslotsQueryBadRequest) IsClientError

IsClientError returns true when this post coaching scheduleslots query bad request response has a 4xx status code

func (*PostCoachingScheduleslotsQueryBadRequest) IsCode

IsCode returns true when this post coaching scheduleslots query bad request response a status code equal to that given

func (*PostCoachingScheduleslotsQueryBadRequest) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query bad request response has a 3xx status code

func (*PostCoachingScheduleslotsQueryBadRequest) IsServerError

IsServerError returns true when this post coaching scheduleslots query bad request response has a 5xx status code

func (*PostCoachingScheduleslotsQueryBadRequest) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query bad request response has a 2xx status code

func (*PostCoachingScheduleslotsQueryBadRequest) String

type PostCoachingScheduleslotsQueryForbidden

type PostCoachingScheduleslotsQueryForbidden struct {
	Payload *models.ErrorBody
}

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

You are not authorized to perform the requested action.

func NewPostCoachingScheduleslotsQueryForbidden

func NewPostCoachingScheduleslotsQueryForbidden() *PostCoachingScheduleslotsQueryForbidden

NewPostCoachingScheduleslotsQueryForbidden creates a PostCoachingScheduleslotsQueryForbidden with default headers values

func (*PostCoachingScheduleslotsQueryForbidden) Error

func (*PostCoachingScheduleslotsQueryForbidden) GetPayload

func (*PostCoachingScheduleslotsQueryForbidden) IsClientError

func (o *PostCoachingScheduleslotsQueryForbidden) IsClientError() bool

IsClientError returns true when this post coaching scheduleslots query forbidden response has a 4xx status code

func (*PostCoachingScheduleslotsQueryForbidden) IsCode

IsCode returns true when this post coaching scheduleslots query forbidden response a status code equal to that given

func (*PostCoachingScheduleslotsQueryForbidden) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query forbidden response has a 3xx status code

func (*PostCoachingScheduleslotsQueryForbidden) IsServerError

func (o *PostCoachingScheduleslotsQueryForbidden) IsServerError() bool

IsServerError returns true when this post coaching scheduleslots query forbidden response has a 5xx status code

func (*PostCoachingScheduleslotsQueryForbidden) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query forbidden response has a 2xx status code

func (*PostCoachingScheduleslotsQueryForbidden) String

type PostCoachingScheduleslotsQueryGatewayTimeout

type PostCoachingScheduleslotsQueryGatewayTimeout struct {
	Payload *models.ErrorBody
}

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

The request timed out.

func NewPostCoachingScheduleslotsQueryGatewayTimeout

func NewPostCoachingScheduleslotsQueryGatewayTimeout() *PostCoachingScheduleslotsQueryGatewayTimeout

NewPostCoachingScheduleslotsQueryGatewayTimeout creates a PostCoachingScheduleslotsQueryGatewayTimeout with default headers values

func (*PostCoachingScheduleslotsQueryGatewayTimeout) Error

func (*PostCoachingScheduleslotsQueryGatewayTimeout) GetPayload

func (*PostCoachingScheduleslotsQueryGatewayTimeout) IsClientError

IsClientError returns true when this post coaching scheduleslots query gateway timeout response has a 4xx status code

func (*PostCoachingScheduleslotsQueryGatewayTimeout) IsCode

IsCode returns true when this post coaching scheduleslots query gateway timeout response a status code equal to that given

func (*PostCoachingScheduleslotsQueryGatewayTimeout) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query gateway timeout response has a 3xx status code

func (*PostCoachingScheduleslotsQueryGatewayTimeout) IsServerError

IsServerError returns true when this post coaching scheduleslots query gateway timeout response has a 5xx status code

func (*PostCoachingScheduleslotsQueryGatewayTimeout) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query gateway timeout response has a 2xx status code

func (*PostCoachingScheduleslotsQueryGatewayTimeout) String

type PostCoachingScheduleslotsQueryInternalServerError

type PostCoachingScheduleslotsQueryInternalServerError struct {
	Payload *models.ErrorBody
}

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

The server encountered an unexpected condition which prevented it from fulfilling the request.

func NewPostCoachingScheduleslotsQueryInternalServerError

func NewPostCoachingScheduleslotsQueryInternalServerError() *PostCoachingScheduleslotsQueryInternalServerError

NewPostCoachingScheduleslotsQueryInternalServerError creates a PostCoachingScheduleslotsQueryInternalServerError with default headers values

func (*PostCoachingScheduleslotsQueryInternalServerError) Error

func (*PostCoachingScheduleslotsQueryInternalServerError) GetPayload

func (*PostCoachingScheduleslotsQueryInternalServerError) IsClientError

IsClientError returns true when this post coaching scheduleslots query internal server error response has a 4xx status code

func (*PostCoachingScheduleslotsQueryInternalServerError) IsCode

IsCode returns true when this post coaching scheduleslots query internal server error response a status code equal to that given

func (*PostCoachingScheduleslotsQueryInternalServerError) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query internal server error response has a 3xx status code

func (*PostCoachingScheduleslotsQueryInternalServerError) IsServerError

IsServerError returns true when this post coaching scheduleslots query internal server error response has a 5xx status code

func (*PostCoachingScheduleslotsQueryInternalServerError) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query internal server error response has a 2xx status code

func (*PostCoachingScheduleslotsQueryInternalServerError) String

type PostCoachingScheduleslotsQueryNotFound

type PostCoachingScheduleslotsQueryNotFound struct {
	Payload *models.ErrorBody
}

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

The requested resource was not found.

func NewPostCoachingScheduleslotsQueryNotFound

func NewPostCoachingScheduleslotsQueryNotFound() *PostCoachingScheduleslotsQueryNotFound

NewPostCoachingScheduleslotsQueryNotFound creates a PostCoachingScheduleslotsQueryNotFound with default headers values

func (*PostCoachingScheduleslotsQueryNotFound) Error

func (*PostCoachingScheduleslotsQueryNotFound) GetPayload

func (*PostCoachingScheduleslotsQueryNotFound) IsClientError

func (o *PostCoachingScheduleslotsQueryNotFound) IsClientError() bool

IsClientError returns true when this post coaching scheduleslots query not found response has a 4xx status code

func (*PostCoachingScheduleslotsQueryNotFound) IsCode

IsCode returns true when this post coaching scheduleslots query not found response a status code equal to that given

func (*PostCoachingScheduleslotsQueryNotFound) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query not found response has a 3xx status code

func (*PostCoachingScheduleslotsQueryNotFound) IsServerError

func (o *PostCoachingScheduleslotsQueryNotFound) IsServerError() bool

IsServerError returns true when this post coaching scheduleslots query not found response has a 5xx status code

func (*PostCoachingScheduleslotsQueryNotFound) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query not found response has a 2xx status code

func (*PostCoachingScheduleslotsQueryNotFound) String

type PostCoachingScheduleslotsQueryOK

type PostCoachingScheduleslotsQueryOK struct {
	Payload *models.CoachingSlotsResponse
}

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

Coaching slots retrieved

func NewPostCoachingScheduleslotsQueryOK

func NewPostCoachingScheduleslotsQueryOK() *PostCoachingScheduleslotsQueryOK

NewPostCoachingScheduleslotsQueryOK creates a PostCoachingScheduleslotsQueryOK with default headers values

func (*PostCoachingScheduleslotsQueryOK) Error

func (*PostCoachingScheduleslotsQueryOK) GetPayload

func (*PostCoachingScheduleslotsQueryOK) IsClientError

func (o *PostCoachingScheduleslotsQueryOK) IsClientError() bool

IsClientError returns true when this post coaching scheduleslots query o k response has a 4xx status code

func (*PostCoachingScheduleslotsQueryOK) IsCode

func (o *PostCoachingScheduleslotsQueryOK) IsCode(code int) bool

IsCode returns true when this post coaching scheduleslots query o k response a status code equal to that given

func (*PostCoachingScheduleslotsQueryOK) IsRedirect

func (o *PostCoachingScheduleslotsQueryOK) IsRedirect() bool

IsRedirect returns true when this post coaching scheduleslots query o k response has a 3xx status code

func (*PostCoachingScheduleslotsQueryOK) IsServerError

func (o *PostCoachingScheduleslotsQueryOK) IsServerError() bool

IsServerError returns true when this post coaching scheduleslots query o k response has a 5xx status code

func (*PostCoachingScheduleslotsQueryOK) IsSuccess

func (o *PostCoachingScheduleslotsQueryOK) IsSuccess() bool

IsSuccess returns true when this post coaching scheduleslots query o k response has a 2xx status code

func (*PostCoachingScheduleslotsQueryOK) String

type PostCoachingScheduleslotsQueryParams

type PostCoachingScheduleslotsQueryParams struct {

	/* Body.

	   The slot search request
	*/
	Body *models.CoachingSlotsRequest

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

PostCoachingScheduleslotsQueryParams contains all the parameters to send to the API endpoint

for the post coaching scheduleslots query operation.

Typically these are written to a http.Request.

func NewPostCoachingScheduleslotsQueryParams

func NewPostCoachingScheduleslotsQueryParams() *PostCoachingScheduleslotsQueryParams

NewPostCoachingScheduleslotsQueryParams creates a new PostCoachingScheduleslotsQueryParams 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 NewPostCoachingScheduleslotsQueryParamsWithContext

func NewPostCoachingScheduleslotsQueryParamsWithContext(ctx context.Context) *PostCoachingScheduleslotsQueryParams

NewPostCoachingScheduleslotsQueryParamsWithContext creates a new PostCoachingScheduleslotsQueryParams object with the ability to set a context for a request.

func NewPostCoachingScheduleslotsQueryParamsWithHTTPClient

func NewPostCoachingScheduleslotsQueryParamsWithHTTPClient(client *http.Client) *PostCoachingScheduleslotsQueryParams

NewPostCoachingScheduleslotsQueryParamsWithHTTPClient creates a new PostCoachingScheduleslotsQueryParams object with the ability to set a custom HTTPClient for a request.

func NewPostCoachingScheduleslotsQueryParamsWithTimeout

func NewPostCoachingScheduleslotsQueryParamsWithTimeout(timeout time.Duration) *PostCoachingScheduleslotsQueryParams

NewPostCoachingScheduleslotsQueryParamsWithTimeout creates a new PostCoachingScheduleslotsQueryParams object with the ability to set a timeout on a request.

func (*PostCoachingScheduleslotsQueryParams) SetBody

SetBody adds the body to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) SetContext

SetContext adds the context to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) SetDefaults

func (o *PostCoachingScheduleslotsQueryParams) SetDefaults()

SetDefaults hydrates default values in the post coaching scheduleslots query params (not the query body).

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

func (*PostCoachingScheduleslotsQueryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) SetTimeout

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

SetTimeout adds the timeout to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) WithBody

WithBody adds the body to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) WithContext

WithContext adds the context to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) WithDefaults

WithDefaults hydrates default values in the post coaching scheduleslots query params (not the query body).

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

func (*PostCoachingScheduleslotsQueryParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) WithTimeout

WithTimeout adds the timeout to the post coaching scheduleslots query params

func (*PostCoachingScheduleslotsQueryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCoachingScheduleslotsQueryReader

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

PostCoachingScheduleslotsQueryReader is a Reader for the PostCoachingScheduleslotsQuery structure.

func (*PostCoachingScheduleslotsQueryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostCoachingScheduleslotsQueryRequestEntityTooLarge

type PostCoachingScheduleslotsQueryRequestEntityTooLarge struct {
	Payload *models.ErrorBody
}

PostCoachingScheduleslotsQueryRequestEntityTooLarge describes a response with status code 413, with default header values.

The request is over the size limit. Maximum bytes: %s

func NewPostCoachingScheduleslotsQueryRequestEntityTooLarge

func NewPostCoachingScheduleslotsQueryRequestEntityTooLarge() *PostCoachingScheduleslotsQueryRequestEntityTooLarge

NewPostCoachingScheduleslotsQueryRequestEntityTooLarge creates a PostCoachingScheduleslotsQueryRequestEntityTooLarge with default headers values

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) Error

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) GetPayload

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) IsClientError

IsClientError returns true when this post coaching scheduleslots query request entity too large response has a 4xx status code

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) IsCode

IsCode returns true when this post coaching scheduleslots query request entity too large response a status code equal to that given

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query request entity too large response has a 3xx status code

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) IsServerError

IsServerError returns true when this post coaching scheduleslots query request entity too large response has a 5xx status code

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query request entity too large response has a 2xx status code

func (*PostCoachingScheduleslotsQueryRequestEntityTooLarge) String

type PostCoachingScheduleslotsQueryRequestTimeout

type PostCoachingScheduleslotsQueryRequestTimeout struct {
	Payload *models.ErrorBody
}

PostCoachingScheduleslotsQueryRequestTimeout describes a response with status code 408, with default header values.

The client did not produce a request within the server timeout limit. This can be caused by a slow network connection and/or large payloads.

func NewPostCoachingScheduleslotsQueryRequestTimeout

func NewPostCoachingScheduleslotsQueryRequestTimeout() *PostCoachingScheduleslotsQueryRequestTimeout

NewPostCoachingScheduleslotsQueryRequestTimeout creates a PostCoachingScheduleslotsQueryRequestTimeout with default headers values

func (*PostCoachingScheduleslotsQueryRequestTimeout) Error

func (*PostCoachingScheduleslotsQueryRequestTimeout) GetPayload

func (*PostCoachingScheduleslotsQueryRequestTimeout) IsClientError

IsClientError returns true when this post coaching scheduleslots query request timeout response has a 4xx status code

func (*PostCoachingScheduleslotsQueryRequestTimeout) IsCode

IsCode returns true when this post coaching scheduleslots query request timeout response a status code equal to that given

func (*PostCoachingScheduleslotsQueryRequestTimeout) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query request timeout response has a 3xx status code

func (*PostCoachingScheduleslotsQueryRequestTimeout) IsServerError

IsServerError returns true when this post coaching scheduleslots query request timeout response has a 5xx status code

func (*PostCoachingScheduleslotsQueryRequestTimeout) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query request timeout response has a 2xx status code

func (*PostCoachingScheduleslotsQueryRequestTimeout) String

type PostCoachingScheduleslotsQueryServiceUnavailable

type PostCoachingScheduleslotsQueryServiceUnavailable struct {
	Payload *models.ErrorBody
}

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

Service Unavailable - The server is currently unavailable (because it is overloaded or down for maintenance).

func NewPostCoachingScheduleslotsQueryServiceUnavailable

func NewPostCoachingScheduleslotsQueryServiceUnavailable() *PostCoachingScheduleslotsQueryServiceUnavailable

NewPostCoachingScheduleslotsQueryServiceUnavailable creates a PostCoachingScheduleslotsQueryServiceUnavailable with default headers values

func (*PostCoachingScheduleslotsQueryServiceUnavailable) Error

func (*PostCoachingScheduleslotsQueryServiceUnavailable) GetPayload

func (*PostCoachingScheduleslotsQueryServiceUnavailable) IsClientError

IsClientError returns true when this post coaching scheduleslots query service unavailable response has a 4xx status code

func (*PostCoachingScheduleslotsQueryServiceUnavailable) IsCode

IsCode returns true when this post coaching scheduleslots query service unavailable response a status code equal to that given

func (*PostCoachingScheduleslotsQueryServiceUnavailable) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query service unavailable response has a 3xx status code

func (*PostCoachingScheduleslotsQueryServiceUnavailable) IsServerError

IsServerError returns true when this post coaching scheduleslots query service unavailable response has a 5xx status code

func (*PostCoachingScheduleslotsQueryServiceUnavailable) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query service unavailable response has a 2xx status code

func (*PostCoachingScheduleslotsQueryServiceUnavailable) String

type PostCoachingScheduleslotsQueryTooManyRequests

type PostCoachingScheduleslotsQueryTooManyRequests struct {
	Payload *models.ErrorBody
}

PostCoachingScheduleslotsQueryTooManyRequests describes a response with status code 429, with default header values.

Rate limit exceeded the maximum. Retry the request in [%s] seconds

func NewPostCoachingScheduleslotsQueryTooManyRequests

func NewPostCoachingScheduleslotsQueryTooManyRequests() *PostCoachingScheduleslotsQueryTooManyRequests

NewPostCoachingScheduleslotsQueryTooManyRequests creates a PostCoachingScheduleslotsQueryTooManyRequests with default headers values

func (*PostCoachingScheduleslotsQueryTooManyRequests) Error

func (*PostCoachingScheduleslotsQueryTooManyRequests) GetPayload

func (*PostCoachingScheduleslotsQueryTooManyRequests) IsClientError

IsClientError returns true when this post coaching scheduleslots query too many requests response has a 4xx status code

func (*PostCoachingScheduleslotsQueryTooManyRequests) IsCode

IsCode returns true when this post coaching scheduleslots query too many requests response a status code equal to that given

func (*PostCoachingScheduleslotsQueryTooManyRequests) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query too many requests response has a 3xx status code

func (*PostCoachingScheduleslotsQueryTooManyRequests) IsServerError

IsServerError returns true when this post coaching scheduleslots query too many requests response has a 5xx status code

func (*PostCoachingScheduleslotsQueryTooManyRequests) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query too many requests response has a 2xx status code

func (*PostCoachingScheduleslotsQueryTooManyRequests) String

type PostCoachingScheduleslotsQueryUnauthorized

type PostCoachingScheduleslotsQueryUnauthorized struct {
	Payload *models.ErrorBody
}

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

No authentication bearer token specified in authorization header.

func NewPostCoachingScheduleslotsQueryUnauthorized

func NewPostCoachingScheduleslotsQueryUnauthorized() *PostCoachingScheduleslotsQueryUnauthorized

NewPostCoachingScheduleslotsQueryUnauthorized creates a PostCoachingScheduleslotsQueryUnauthorized with default headers values

func (*PostCoachingScheduleslotsQueryUnauthorized) Error

func (*PostCoachingScheduleslotsQueryUnauthorized) GetPayload

func (*PostCoachingScheduleslotsQueryUnauthorized) IsClientError

IsClientError returns true when this post coaching scheduleslots query unauthorized response has a 4xx status code

func (*PostCoachingScheduleslotsQueryUnauthorized) IsCode

IsCode returns true when this post coaching scheduleslots query unauthorized response a status code equal to that given

func (*PostCoachingScheduleslotsQueryUnauthorized) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query unauthorized response has a 3xx status code

func (*PostCoachingScheduleslotsQueryUnauthorized) IsServerError

IsServerError returns true when this post coaching scheduleslots query unauthorized response has a 5xx status code

func (*PostCoachingScheduleslotsQueryUnauthorized) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query unauthorized response has a 2xx status code

func (*PostCoachingScheduleslotsQueryUnauthorized) String

type PostCoachingScheduleslotsQueryUnsupportedMediaType

type PostCoachingScheduleslotsQueryUnsupportedMediaType struct {
	Payload *models.ErrorBody
}

PostCoachingScheduleslotsQueryUnsupportedMediaType describes a response with status code 415, with default header values.

Unsupported Media Type - Unsupported or incorrect media type, such as an incorrect Content-Type value in the header.

func NewPostCoachingScheduleslotsQueryUnsupportedMediaType

func NewPostCoachingScheduleslotsQueryUnsupportedMediaType() *PostCoachingScheduleslotsQueryUnsupportedMediaType

NewPostCoachingScheduleslotsQueryUnsupportedMediaType creates a PostCoachingScheduleslotsQueryUnsupportedMediaType with default headers values

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) Error

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) GetPayload

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) IsClientError

IsClientError returns true when this post coaching scheduleslots query unsupported media type response has a 4xx status code

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) IsCode

IsCode returns true when this post coaching scheduleslots query unsupported media type response a status code equal to that given

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) IsRedirect

IsRedirect returns true when this post coaching scheduleslots query unsupported media type response has a 3xx status code

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) IsServerError

IsServerError returns true when this post coaching scheduleslots query unsupported media type response has a 5xx status code

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) IsSuccess

IsSuccess returns true when this post coaching scheduleslots query unsupported media type response has a 2xx status code

func (*PostCoachingScheduleslotsQueryUnsupportedMediaType) String

Source Files

Jump to

Keyboard shortcuts

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