email_notification_server

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2020 License: GPL-3.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for email notification server API

func (*Client) CreateEmailNotificationServerUsingPOST

CreateEmailNotificationServerUsingPOST creates a new email notification server definition

func (*Client) DeleteEmailNotificationServerUsingDELETE

DeleteEmailNotificationServerUsingDELETE deletes an email notification definition

func (*Client) DeleteEmailNotificationServersUsingDELETE

DeleteEmailNotificationServersUsingDELETE deletes all email notification definitions

func (*Client) GetEmailNotificationServerUsingGET

func (a *Client) GetEmailNotificationServerUsingGET(params *GetEmailNotificationServerUsingGETParams) (*GetEmailNotificationServerUsingGETOK, error)

GetEmailNotificationServerUsingGET retrieves an email notification server definition

func (*Client) GetEmailNotificationServersUsingGET

func (a *Client) GetEmailNotificationServersUsingGET(params *GetEmailNotificationServersUsingGETParams) (*GetEmailNotificationServersUsingGETOK, error)

GetEmailNotificationServersUsingGET retrieves all email notification server definitions

func (*Client) PatchEmailNotificationServerUsingPATCH

PatchEmailNotificationServerUsingPATCH patches an email notification server definition

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) TestEmailNotificationServerConnectivityUsingPOST

TestEmailNotificationServerConnectivityUsingPOST connectivities test for email notification server

func (*Client) UpdateEmailNotificationServerUsingPUT

UpdateEmailNotificationServerUsingPUT updates an email notification server definition

type ClientService

type ClientService interface {
	CreateEmailNotificationServerUsingPOST(params *CreateEmailNotificationServerUsingPOSTParams) (*CreateEmailNotificationServerUsingPOSTOK, *CreateEmailNotificationServerUsingPOSTCreated, error)

	DeleteEmailNotificationServerUsingDELETE(params *DeleteEmailNotificationServerUsingDELETEParams) (*DeleteEmailNotificationServerUsingDELETEOK, *DeleteEmailNotificationServerUsingDELETENoContent, error)

	DeleteEmailNotificationServersUsingDELETE(params *DeleteEmailNotificationServersUsingDELETEParams) (*DeleteEmailNotificationServersUsingDELETEOK, *DeleteEmailNotificationServersUsingDELETENoContent, error)

	GetEmailNotificationServerUsingGET(params *GetEmailNotificationServerUsingGETParams) (*GetEmailNotificationServerUsingGETOK, error)

	GetEmailNotificationServersUsingGET(params *GetEmailNotificationServersUsingGETParams) (*GetEmailNotificationServersUsingGETOK, error)

	PatchEmailNotificationServerUsingPATCH(params *PatchEmailNotificationServerUsingPATCHParams) (*PatchEmailNotificationServerUsingPATCHOK, *PatchEmailNotificationServerUsingPATCHNoContent, error)

	TestEmailNotificationServerConnectivityUsingPOST(params *TestEmailNotificationServerConnectivityUsingPOSTParams) (*TestEmailNotificationServerConnectivityUsingPOSTOK, *TestEmailNotificationServerConnectivityUsingPOSTCreated, error)

	UpdateEmailNotificationServerUsingPUT(params *UpdateEmailNotificationServerUsingPUTParams) (*UpdateEmailNotificationServerUsingPUTOK, *UpdateEmailNotificationServerUsingPUTCreated, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

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

New creates a new email notification server API client.

type CreateEmailNotificationServerUsingPOSTCreated

type CreateEmailNotificationServerUsingPOSTCreated struct {
}

CreateEmailNotificationServerUsingPOSTCreated handles this case with default header values.

Created

func NewCreateEmailNotificationServerUsingPOSTCreated

func NewCreateEmailNotificationServerUsingPOSTCreated() *CreateEmailNotificationServerUsingPOSTCreated

NewCreateEmailNotificationServerUsingPOSTCreated creates a CreateEmailNotificationServerUsingPOSTCreated with default headers values

func (*CreateEmailNotificationServerUsingPOSTCreated) Error

type CreateEmailNotificationServerUsingPOSTForbidden

type CreateEmailNotificationServerUsingPOSTForbidden struct {
}

CreateEmailNotificationServerUsingPOSTForbidden handles this case with default header values.

Forbidden

func NewCreateEmailNotificationServerUsingPOSTForbidden

func NewCreateEmailNotificationServerUsingPOSTForbidden() *CreateEmailNotificationServerUsingPOSTForbidden

NewCreateEmailNotificationServerUsingPOSTForbidden creates a CreateEmailNotificationServerUsingPOSTForbidden with default headers values

func (*CreateEmailNotificationServerUsingPOSTForbidden) Error

type CreateEmailNotificationServerUsingPOSTNotFound

type CreateEmailNotificationServerUsingPOSTNotFound struct {
}

CreateEmailNotificationServerUsingPOSTNotFound handles this case with default header values.

Not Found

func NewCreateEmailNotificationServerUsingPOSTNotFound

func NewCreateEmailNotificationServerUsingPOSTNotFound() *CreateEmailNotificationServerUsingPOSTNotFound

NewCreateEmailNotificationServerUsingPOSTNotFound creates a CreateEmailNotificationServerUsingPOSTNotFound with default headers values

func (*CreateEmailNotificationServerUsingPOSTNotFound) Error

type CreateEmailNotificationServerUsingPOSTOK

type CreateEmailNotificationServerUsingPOSTOK struct {
	Payload *models.EmailNotificationServerDto
}

CreateEmailNotificationServerUsingPOSTOK handles this case with default header values.

OK

func NewCreateEmailNotificationServerUsingPOSTOK

func NewCreateEmailNotificationServerUsingPOSTOK() *CreateEmailNotificationServerUsingPOSTOK

NewCreateEmailNotificationServerUsingPOSTOK creates a CreateEmailNotificationServerUsingPOSTOK with default headers values

func (*CreateEmailNotificationServerUsingPOSTOK) Error

func (*CreateEmailNotificationServerUsingPOSTOK) GetPayload

type CreateEmailNotificationServerUsingPOSTParams

type CreateEmailNotificationServerUsingPOSTParams struct {

	/*EmailNotificationServerDto
	  emailNotificationServerDto

	*/
	EmailNotificationServerDto *models.EmailNotificationServerDto

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

CreateEmailNotificationServerUsingPOSTParams contains all the parameters to send to the API endpoint for the create email notification server using p o s t operation typically these are written to a http.Request

func NewCreateEmailNotificationServerUsingPOSTParams

func NewCreateEmailNotificationServerUsingPOSTParams() *CreateEmailNotificationServerUsingPOSTParams

NewCreateEmailNotificationServerUsingPOSTParams creates a new CreateEmailNotificationServerUsingPOSTParams object with the default values initialized.

func NewCreateEmailNotificationServerUsingPOSTParamsWithContext

func NewCreateEmailNotificationServerUsingPOSTParamsWithContext(ctx context.Context) *CreateEmailNotificationServerUsingPOSTParams

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

func NewCreateEmailNotificationServerUsingPOSTParamsWithHTTPClient

func NewCreateEmailNotificationServerUsingPOSTParamsWithHTTPClient(client *http.Client) *CreateEmailNotificationServerUsingPOSTParams

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

func NewCreateEmailNotificationServerUsingPOSTParamsWithTimeout

func NewCreateEmailNotificationServerUsingPOSTParamsWithTimeout(timeout time.Duration) *CreateEmailNotificationServerUsingPOSTParams

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

func (*CreateEmailNotificationServerUsingPOSTParams) SetContext

SetContext adds the context to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) SetEmailNotificationServerDto

func (o *CreateEmailNotificationServerUsingPOSTParams) SetEmailNotificationServerDto(emailNotificationServerDto *models.EmailNotificationServerDto)

SetEmailNotificationServerDto adds the emailNotificationServerDto to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) SetTimeout

SetTimeout adds the timeout to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) WithContext

WithContext adds the context to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) WithEmailNotificationServerDto

WithEmailNotificationServerDto adds the emailNotificationServerDto to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the create email notification server using p o s t params

func (*CreateEmailNotificationServerUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateEmailNotificationServerUsingPOSTReader

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

CreateEmailNotificationServerUsingPOSTReader is a Reader for the CreateEmailNotificationServerUsingPOST structure.

func (*CreateEmailNotificationServerUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateEmailNotificationServerUsingPOSTUnauthorized

type CreateEmailNotificationServerUsingPOSTUnauthorized struct {
}

CreateEmailNotificationServerUsingPOSTUnauthorized handles this case with default header values.

Unauthorized

func NewCreateEmailNotificationServerUsingPOSTUnauthorized

func NewCreateEmailNotificationServerUsingPOSTUnauthorized() *CreateEmailNotificationServerUsingPOSTUnauthorized

NewCreateEmailNotificationServerUsingPOSTUnauthorized creates a CreateEmailNotificationServerUsingPOSTUnauthorized with default headers values

func (*CreateEmailNotificationServerUsingPOSTUnauthorized) Error

type DeleteEmailNotificationServerUsingDELETEForbidden

type DeleteEmailNotificationServerUsingDELETEForbidden struct {
}

DeleteEmailNotificationServerUsingDELETEForbidden handles this case with default header values.

Forbidden

func NewDeleteEmailNotificationServerUsingDELETEForbidden

func NewDeleteEmailNotificationServerUsingDELETEForbidden() *DeleteEmailNotificationServerUsingDELETEForbidden

NewDeleteEmailNotificationServerUsingDELETEForbidden creates a DeleteEmailNotificationServerUsingDELETEForbidden with default headers values

func (*DeleteEmailNotificationServerUsingDELETEForbidden) Error

type DeleteEmailNotificationServerUsingDELETENoContent

type DeleteEmailNotificationServerUsingDELETENoContent struct {
}

DeleteEmailNotificationServerUsingDELETENoContent handles this case with default header values.

No Content

func NewDeleteEmailNotificationServerUsingDELETENoContent

func NewDeleteEmailNotificationServerUsingDELETENoContent() *DeleteEmailNotificationServerUsingDELETENoContent

NewDeleteEmailNotificationServerUsingDELETENoContent creates a DeleteEmailNotificationServerUsingDELETENoContent with default headers values

func (*DeleteEmailNotificationServerUsingDELETENoContent) Error

type DeleteEmailNotificationServerUsingDELETEOK

type DeleteEmailNotificationServerUsingDELETEOK struct {
}

DeleteEmailNotificationServerUsingDELETEOK handles this case with default header values.

OK

func NewDeleteEmailNotificationServerUsingDELETEOK

func NewDeleteEmailNotificationServerUsingDELETEOK() *DeleteEmailNotificationServerUsingDELETEOK

NewDeleteEmailNotificationServerUsingDELETEOK creates a DeleteEmailNotificationServerUsingDELETEOK with default headers values

func (*DeleteEmailNotificationServerUsingDELETEOK) Error

type DeleteEmailNotificationServerUsingDELETEParams

type DeleteEmailNotificationServerUsingDELETEParams struct {

	/*EmailNotificationServerID
	  emailNotificationServerId

	*/
	EmailNotificationServerID int64

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

DeleteEmailNotificationServerUsingDELETEParams contains all the parameters to send to the API endpoint for the delete email notification server using d e l e t e operation typically these are written to a http.Request

func NewDeleteEmailNotificationServerUsingDELETEParams

func NewDeleteEmailNotificationServerUsingDELETEParams() *DeleteEmailNotificationServerUsingDELETEParams

NewDeleteEmailNotificationServerUsingDELETEParams creates a new DeleteEmailNotificationServerUsingDELETEParams object with the default values initialized.

func NewDeleteEmailNotificationServerUsingDELETEParamsWithContext

func NewDeleteEmailNotificationServerUsingDELETEParamsWithContext(ctx context.Context) *DeleteEmailNotificationServerUsingDELETEParams

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

func NewDeleteEmailNotificationServerUsingDELETEParamsWithHTTPClient

func NewDeleteEmailNotificationServerUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteEmailNotificationServerUsingDELETEParams

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

func NewDeleteEmailNotificationServerUsingDELETEParamsWithTimeout

func NewDeleteEmailNotificationServerUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteEmailNotificationServerUsingDELETEParams

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

func (*DeleteEmailNotificationServerUsingDELETEParams) SetContext

SetContext adds the context to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) SetEmailNotificationServerID

func (o *DeleteEmailNotificationServerUsingDELETEParams) SetEmailNotificationServerID(emailNotificationServerID int64)

SetEmailNotificationServerID adds the emailNotificationServerId to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) SetTimeout

SetTimeout adds the timeout to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) WithContext

WithContext adds the context to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) WithEmailNotificationServerID

func (o *DeleteEmailNotificationServerUsingDELETEParams) WithEmailNotificationServerID(emailNotificationServerID int64) *DeleteEmailNotificationServerUsingDELETEParams

WithEmailNotificationServerID adds the emailNotificationServerID to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete email notification server using d e l e t e params

func (*DeleteEmailNotificationServerUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteEmailNotificationServerUsingDELETEReader

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

DeleteEmailNotificationServerUsingDELETEReader is a Reader for the DeleteEmailNotificationServerUsingDELETE structure.

func (*DeleteEmailNotificationServerUsingDELETEReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteEmailNotificationServerUsingDELETEUnauthorized

type DeleteEmailNotificationServerUsingDELETEUnauthorized struct {
}

DeleteEmailNotificationServerUsingDELETEUnauthorized handles this case with default header values.

Unauthorized

func NewDeleteEmailNotificationServerUsingDELETEUnauthorized

func NewDeleteEmailNotificationServerUsingDELETEUnauthorized() *DeleteEmailNotificationServerUsingDELETEUnauthorized

NewDeleteEmailNotificationServerUsingDELETEUnauthorized creates a DeleteEmailNotificationServerUsingDELETEUnauthorized with default headers values

func (*DeleteEmailNotificationServerUsingDELETEUnauthorized) Error

type DeleteEmailNotificationServersUsingDELETEForbidden

type DeleteEmailNotificationServersUsingDELETEForbidden struct {
}

DeleteEmailNotificationServersUsingDELETEForbidden handles this case with default header values.

Forbidden

func NewDeleteEmailNotificationServersUsingDELETEForbidden

func NewDeleteEmailNotificationServersUsingDELETEForbidden() *DeleteEmailNotificationServersUsingDELETEForbidden

NewDeleteEmailNotificationServersUsingDELETEForbidden creates a DeleteEmailNotificationServersUsingDELETEForbidden with default headers values

func (*DeleteEmailNotificationServersUsingDELETEForbidden) Error

type DeleteEmailNotificationServersUsingDELETENoContent

type DeleteEmailNotificationServersUsingDELETENoContent struct {
}

DeleteEmailNotificationServersUsingDELETENoContent handles this case with default header values.

No Content

func NewDeleteEmailNotificationServersUsingDELETENoContent

func NewDeleteEmailNotificationServersUsingDELETENoContent() *DeleteEmailNotificationServersUsingDELETENoContent

NewDeleteEmailNotificationServersUsingDELETENoContent creates a DeleteEmailNotificationServersUsingDELETENoContent with default headers values

func (*DeleteEmailNotificationServersUsingDELETENoContent) Error

type DeleteEmailNotificationServersUsingDELETEOK

type DeleteEmailNotificationServersUsingDELETEOK struct {
}

DeleteEmailNotificationServersUsingDELETEOK handles this case with default header values.

OK

func NewDeleteEmailNotificationServersUsingDELETEOK

func NewDeleteEmailNotificationServersUsingDELETEOK() *DeleteEmailNotificationServersUsingDELETEOK

NewDeleteEmailNotificationServersUsingDELETEOK creates a DeleteEmailNotificationServersUsingDELETEOK with default headers values

func (*DeleteEmailNotificationServersUsingDELETEOK) Error

type DeleteEmailNotificationServersUsingDELETEParams

type DeleteEmailNotificationServersUsingDELETEParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteEmailNotificationServersUsingDELETEParams contains all the parameters to send to the API endpoint for the delete email notification servers using d e l e t e operation typically these are written to a http.Request

func NewDeleteEmailNotificationServersUsingDELETEParams

func NewDeleteEmailNotificationServersUsingDELETEParams() *DeleteEmailNotificationServersUsingDELETEParams

NewDeleteEmailNotificationServersUsingDELETEParams creates a new DeleteEmailNotificationServersUsingDELETEParams object with the default values initialized.

func NewDeleteEmailNotificationServersUsingDELETEParamsWithContext

func NewDeleteEmailNotificationServersUsingDELETEParamsWithContext(ctx context.Context) *DeleteEmailNotificationServersUsingDELETEParams

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

func NewDeleteEmailNotificationServersUsingDELETEParamsWithHTTPClient

func NewDeleteEmailNotificationServersUsingDELETEParamsWithHTTPClient(client *http.Client) *DeleteEmailNotificationServersUsingDELETEParams

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

func NewDeleteEmailNotificationServersUsingDELETEParamsWithTimeout

func NewDeleteEmailNotificationServersUsingDELETEParamsWithTimeout(timeout time.Duration) *DeleteEmailNotificationServersUsingDELETEParams

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

func (*DeleteEmailNotificationServersUsingDELETEParams) SetContext

SetContext adds the context to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) SetTimeout

SetTimeout adds the timeout to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) WithContext

WithContext adds the context to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) WithTimeout

WithTimeout adds the timeout to the delete email notification servers using d e l e t e params

func (*DeleteEmailNotificationServersUsingDELETEParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteEmailNotificationServersUsingDELETEReader

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

DeleteEmailNotificationServersUsingDELETEReader is a Reader for the DeleteEmailNotificationServersUsingDELETE structure.

func (*DeleteEmailNotificationServersUsingDELETEReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteEmailNotificationServersUsingDELETEUnauthorized

type DeleteEmailNotificationServersUsingDELETEUnauthorized struct {
}

DeleteEmailNotificationServersUsingDELETEUnauthorized handles this case with default header values.

Unauthorized

func NewDeleteEmailNotificationServersUsingDELETEUnauthorized

func NewDeleteEmailNotificationServersUsingDELETEUnauthorized() *DeleteEmailNotificationServersUsingDELETEUnauthorized

NewDeleteEmailNotificationServersUsingDELETEUnauthorized creates a DeleteEmailNotificationServersUsingDELETEUnauthorized with default headers values

func (*DeleteEmailNotificationServersUsingDELETEUnauthorized) Error

type GetEmailNotificationServerUsingGETForbidden

type GetEmailNotificationServerUsingGETForbidden struct {
}

GetEmailNotificationServerUsingGETForbidden handles this case with default header values.

Forbidden

func NewGetEmailNotificationServerUsingGETForbidden

func NewGetEmailNotificationServerUsingGETForbidden() *GetEmailNotificationServerUsingGETForbidden

NewGetEmailNotificationServerUsingGETForbidden creates a GetEmailNotificationServerUsingGETForbidden with default headers values

func (*GetEmailNotificationServerUsingGETForbidden) Error

type GetEmailNotificationServerUsingGETNotFound

type GetEmailNotificationServerUsingGETNotFound struct {
}

GetEmailNotificationServerUsingGETNotFound handles this case with default header values.

Not Found

func NewGetEmailNotificationServerUsingGETNotFound

func NewGetEmailNotificationServerUsingGETNotFound() *GetEmailNotificationServerUsingGETNotFound

NewGetEmailNotificationServerUsingGETNotFound creates a GetEmailNotificationServerUsingGETNotFound with default headers values

func (*GetEmailNotificationServerUsingGETNotFound) Error

type GetEmailNotificationServerUsingGETOK

type GetEmailNotificationServerUsingGETOK struct {
	Payload *models.EmailNotificationServerDto
}

GetEmailNotificationServerUsingGETOK handles this case with default header values.

OK

func NewGetEmailNotificationServerUsingGETOK

func NewGetEmailNotificationServerUsingGETOK() *GetEmailNotificationServerUsingGETOK

NewGetEmailNotificationServerUsingGETOK creates a GetEmailNotificationServerUsingGETOK with default headers values

func (*GetEmailNotificationServerUsingGETOK) Error

func (*GetEmailNotificationServerUsingGETOK) GetPayload

type GetEmailNotificationServerUsingGETParams

type GetEmailNotificationServerUsingGETParams struct {

	/*EmailNotificationServerID
	  emailNotificationServerId

	*/
	EmailNotificationServerID int64

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

GetEmailNotificationServerUsingGETParams contains all the parameters to send to the API endpoint for the get email notification server using g e t operation typically these are written to a http.Request

func NewGetEmailNotificationServerUsingGETParams

func NewGetEmailNotificationServerUsingGETParams() *GetEmailNotificationServerUsingGETParams

NewGetEmailNotificationServerUsingGETParams creates a new GetEmailNotificationServerUsingGETParams object with the default values initialized.

func NewGetEmailNotificationServerUsingGETParamsWithContext

func NewGetEmailNotificationServerUsingGETParamsWithContext(ctx context.Context) *GetEmailNotificationServerUsingGETParams

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

func NewGetEmailNotificationServerUsingGETParamsWithHTTPClient

func NewGetEmailNotificationServerUsingGETParamsWithHTTPClient(client *http.Client) *GetEmailNotificationServerUsingGETParams

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

func NewGetEmailNotificationServerUsingGETParamsWithTimeout

func NewGetEmailNotificationServerUsingGETParamsWithTimeout(timeout time.Duration) *GetEmailNotificationServerUsingGETParams

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

func (*GetEmailNotificationServerUsingGETParams) SetContext

SetContext adds the context to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) SetEmailNotificationServerID

func (o *GetEmailNotificationServerUsingGETParams) SetEmailNotificationServerID(emailNotificationServerID int64)

SetEmailNotificationServerID adds the emailNotificationServerId to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) SetTimeout

SetTimeout adds the timeout to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) WithContext

WithContext adds the context to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) WithEmailNotificationServerID

func (o *GetEmailNotificationServerUsingGETParams) WithEmailNotificationServerID(emailNotificationServerID int64) *GetEmailNotificationServerUsingGETParams

WithEmailNotificationServerID adds the emailNotificationServerID to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get email notification server using g e t params

func (*GetEmailNotificationServerUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEmailNotificationServerUsingGETReader

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

GetEmailNotificationServerUsingGETReader is a Reader for the GetEmailNotificationServerUsingGET structure.

func (*GetEmailNotificationServerUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEmailNotificationServerUsingGETUnauthorized

type GetEmailNotificationServerUsingGETUnauthorized struct {
}

GetEmailNotificationServerUsingGETUnauthorized handles this case with default header values.

Unauthorized

func NewGetEmailNotificationServerUsingGETUnauthorized

func NewGetEmailNotificationServerUsingGETUnauthorized() *GetEmailNotificationServerUsingGETUnauthorized

NewGetEmailNotificationServerUsingGETUnauthorized creates a GetEmailNotificationServerUsingGETUnauthorized with default headers values

func (*GetEmailNotificationServerUsingGETUnauthorized) Error

type GetEmailNotificationServersUsingGETForbidden

type GetEmailNotificationServersUsingGETForbidden struct {
}

GetEmailNotificationServersUsingGETForbidden handles this case with default header values.

Forbidden

func NewGetEmailNotificationServersUsingGETForbidden

func NewGetEmailNotificationServersUsingGETForbidden() *GetEmailNotificationServersUsingGETForbidden

NewGetEmailNotificationServersUsingGETForbidden creates a GetEmailNotificationServersUsingGETForbidden with default headers values

func (*GetEmailNotificationServersUsingGETForbidden) Error

type GetEmailNotificationServersUsingGETNotFound

type GetEmailNotificationServersUsingGETNotFound struct {
}

GetEmailNotificationServersUsingGETNotFound handles this case with default header values.

Not Found

func NewGetEmailNotificationServersUsingGETNotFound

func NewGetEmailNotificationServersUsingGETNotFound() *GetEmailNotificationServersUsingGETNotFound

NewGetEmailNotificationServersUsingGETNotFound creates a GetEmailNotificationServersUsingGETNotFound with default headers values

func (*GetEmailNotificationServersUsingGETNotFound) Error

type GetEmailNotificationServersUsingGETOK

type GetEmailNotificationServersUsingGETOK struct {
	Payload *models.ListHolderDtoEmailNotificationServerDto
}

GetEmailNotificationServersUsingGETOK handles this case with default header values.

OK

func NewGetEmailNotificationServersUsingGETOK

func NewGetEmailNotificationServersUsingGETOK() *GetEmailNotificationServersUsingGETOK

NewGetEmailNotificationServersUsingGETOK creates a GetEmailNotificationServersUsingGETOK with default headers values

func (*GetEmailNotificationServersUsingGETOK) Error

func (*GetEmailNotificationServersUsingGETOK) GetPayload

type GetEmailNotificationServersUsingGETParams

type GetEmailNotificationServersUsingGETParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetEmailNotificationServersUsingGETParams contains all the parameters to send to the API endpoint for the get email notification servers using g e t operation typically these are written to a http.Request

func NewGetEmailNotificationServersUsingGETParams

func NewGetEmailNotificationServersUsingGETParams() *GetEmailNotificationServersUsingGETParams

NewGetEmailNotificationServersUsingGETParams creates a new GetEmailNotificationServersUsingGETParams object with the default values initialized.

func NewGetEmailNotificationServersUsingGETParamsWithContext

func NewGetEmailNotificationServersUsingGETParamsWithContext(ctx context.Context) *GetEmailNotificationServersUsingGETParams

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

func NewGetEmailNotificationServersUsingGETParamsWithHTTPClient

func NewGetEmailNotificationServersUsingGETParamsWithHTTPClient(client *http.Client) *GetEmailNotificationServersUsingGETParams

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

func NewGetEmailNotificationServersUsingGETParamsWithTimeout

func NewGetEmailNotificationServersUsingGETParamsWithTimeout(timeout time.Duration) *GetEmailNotificationServersUsingGETParams

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

func (*GetEmailNotificationServersUsingGETParams) SetContext

SetContext adds the context to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) SetTimeout

SetTimeout adds the timeout to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) WithContext

WithContext adds the context to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get email notification servers using g e t params

func (*GetEmailNotificationServersUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetEmailNotificationServersUsingGETReader

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

GetEmailNotificationServersUsingGETReader is a Reader for the GetEmailNotificationServersUsingGET structure.

func (*GetEmailNotificationServersUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetEmailNotificationServersUsingGETUnauthorized

type GetEmailNotificationServersUsingGETUnauthorized struct {
}

GetEmailNotificationServersUsingGETUnauthorized handles this case with default header values.

Unauthorized

func NewGetEmailNotificationServersUsingGETUnauthorized

func NewGetEmailNotificationServersUsingGETUnauthorized() *GetEmailNotificationServersUsingGETUnauthorized

NewGetEmailNotificationServersUsingGETUnauthorized creates a GetEmailNotificationServersUsingGETUnauthorized with default headers values

func (*GetEmailNotificationServersUsingGETUnauthorized) Error

type PatchEmailNotificationServerUsingPATCHForbidden

type PatchEmailNotificationServerUsingPATCHForbidden struct {
}

PatchEmailNotificationServerUsingPATCHForbidden handles this case with default header values.

Forbidden

func NewPatchEmailNotificationServerUsingPATCHForbidden

func NewPatchEmailNotificationServerUsingPATCHForbidden() *PatchEmailNotificationServerUsingPATCHForbidden

NewPatchEmailNotificationServerUsingPATCHForbidden creates a PatchEmailNotificationServerUsingPATCHForbidden with default headers values

func (*PatchEmailNotificationServerUsingPATCHForbidden) Error

type PatchEmailNotificationServerUsingPATCHNoContent

type PatchEmailNotificationServerUsingPATCHNoContent struct {
}

PatchEmailNotificationServerUsingPATCHNoContent handles this case with default header values.

No Content

func NewPatchEmailNotificationServerUsingPATCHNoContent

func NewPatchEmailNotificationServerUsingPATCHNoContent() *PatchEmailNotificationServerUsingPATCHNoContent

NewPatchEmailNotificationServerUsingPATCHNoContent creates a PatchEmailNotificationServerUsingPATCHNoContent with default headers values

func (*PatchEmailNotificationServerUsingPATCHNoContent) Error

type PatchEmailNotificationServerUsingPATCHOK

type PatchEmailNotificationServerUsingPATCHOK struct {
	Payload *models.EmailNotificationServerDto
}

PatchEmailNotificationServerUsingPATCHOK handles this case with default header values.

OK

func NewPatchEmailNotificationServerUsingPATCHOK

func NewPatchEmailNotificationServerUsingPATCHOK() *PatchEmailNotificationServerUsingPATCHOK

NewPatchEmailNotificationServerUsingPATCHOK creates a PatchEmailNotificationServerUsingPATCHOK with default headers values

func (*PatchEmailNotificationServerUsingPATCHOK) Error

func (*PatchEmailNotificationServerUsingPATCHOK) GetPayload

type PatchEmailNotificationServerUsingPATCHParams

type PatchEmailNotificationServerUsingPATCHParams struct {

	/*EmailNotificationServerDto
	  emailNotificationServerDto

	*/
	EmailNotificationServerDto *models.EmailNotificationServerDto
	/*EmailNotificationServerID
	  emailNotificationServerId

	*/
	EmailNotificationServerID int64

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

PatchEmailNotificationServerUsingPATCHParams contains all the parameters to send to the API endpoint for the patch email notification server using p a t c h operation typically these are written to a http.Request

func NewPatchEmailNotificationServerUsingPATCHParams

func NewPatchEmailNotificationServerUsingPATCHParams() *PatchEmailNotificationServerUsingPATCHParams

NewPatchEmailNotificationServerUsingPATCHParams creates a new PatchEmailNotificationServerUsingPATCHParams object with the default values initialized.

func NewPatchEmailNotificationServerUsingPATCHParamsWithContext

func NewPatchEmailNotificationServerUsingPATCHParamsWithContext(ctx context.Context) *PatchEmailNotificationServerUsingPATCHParams

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

func NewPatchEmailNotificationServerUsingPATCHParamsWithHTTPClient

func NewPatchEmailNotificationServerUsingPATCHParamsWithHTTPClient(client *http.Client) *PatchEmailNotificationServerUsingPATCHParams

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

func NewPatchEmailNotificationServerUsingPATCHParamsWithTimeout

func NewPatchEmailNotificationServerUsingPATCHParamsWithTimeout(timeout time.Duration) *PatchEmailNotificationServerUsingPATCHParams

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

func (*PatchEmailNotificationServerUsingPATCHParams) SetContext

SetContext adds the context to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) SetEmailNotificationServerDto

func (o *PatchEmailNotificationServerUsingPATCHParams) SetEmailNotificationServerDto(emailNotificationServerDto *models.EmailNotificationServerDto)

SetEmailNotificationServerDto adds the emailNotificationServerDto to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) SetEmailNotificationServerID

func (o *PatchEmailNotificationServerUsingPATCHParams) SetEmailNotificationServerID(emailNotificationServerID int64)

SetEmailNotificationServerID adds the emailNotificationServerId to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) SetTimeout

SetTimeout adds the timeout to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WithContext

WithContext adds the context to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WithEmailNotificationServerDto

WithEmailNotificationServerDto adds the emailNotificationServerDto to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WithEmailNotificationServerID

func (o *PatchEmailNotificationServerUsingPATCHParams) WithEmailNotificationServerID(emailNotificationServerID int64) *PatchEmailNotificationServerUsingPATCHParams

WithEmailNotificationServerID adds the emailNotificationServerID to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WithTimeout

WithTimeout adds the timeout to the patch email notification server using p a t c h params

func (*PatchEmailNotificationServerUsingPATCHParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchEmailNotificationServerUsingPATCHReader

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

PatchEmailNotificationServerUsingPATCHReader is a Reader for the PatchEmailNotificationServerUsingPATCH structure.

func (*PatchEmailNotificationServerUsingPATCHReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchEmailNotificationServerUsingPATCHUnauthorized

type PatchEmailNotificationServerUsingPATCHUnauthorized struct {
}

PatchEmailNotificationServerUsingPATCHUnauthorized handles this case with default header values.

Unauthorized

func NewPatchEmailNotificationServerUsingPATCHUnauthorized

func NewPatchEmailNotificationServerUsingPATCHUnauthorized() *PatchEmailNotificationServerUsingPATCHUnauthorized

NewPatchEmailNotificationServerUsingPATCHUnauthorized creates a PatchEmailNotificationServerUsingPATCHUnauthorized with default headers values

func (*PatchEmailNotificationServerUsingPATCHUnauthorized) Error

type TestEmailNotificationServerConnectivityUsingPOSTCreated

type TestEmailNotificationServerConnectivityUsingPOSTCreated struct {
}

TestEmailNotificationServerConnectivityUsingPOSTCreated handles this case with default header values.

Created

func NewTestEmailNotificationServerConnectivityUsingPOSTCreated

func NewTestEmailNotificationServerConnectivityUsingPOSTCreated() *TestEmailNotificationServerConnectivityUsingPOSTCreated

NewTestEmailNotificationServerConnectivityUsingPOSTCreated creates a TestEmailNotificationServerConnectivityUsingPOSTCreated with default headers values

func (*TestEmailNotificationServerConnectivityUsingPOSTCreated) Error

type TestEmailNotificationServerConnectivityUsingPOSTForbidden

type TestEmailNotificationServerConnectivityUsingPOSTForbidden struct {
}

TestEmailNotificationServerConnectivityUsingPOSTForbidden handles this case with default header values.

Forbidden

func NewTestEmailNotificationServerConnectivityUsingPOSTForbidden

func NewTestEmailNotificationServerConnectivityUsingPOSTForbidden() *TestEmailNotificationServerConnectivityUsingPOSTForbidden

NewTestEmailNotificationServerConnectivityUsingPOSTForbidden creates a TestEmailNotificationServerConnectivityUsingPOSTForbidden with default headers values

func (*TestEmailNotificationServerConnectivityUsingPOSTForbidden) Error

type TestEmailNotificationServerConnectivityUsingPOSTNotFound

type TestEmailNotificationServerConnectivityUsingPOSTNotFound struct {
}

TestEmailNotificationServerConnectivityUsingPOSTNotFound handles this case with default header values.

Not Found

func NewTestEmailNotificationServerConnectivityUsingPOSTNotFound

func NewTestEmailNotificationServerConnectivityUsingPOSTNotFound() *TestEmailNotificationServerConnectivityUsingPOSTNotFound

NewTestEmailNotificationServerConnectivityUsingPOSTNotFound creates a TestEmailNotificationServerConnectivityUsingPOSTNotFound with default headers values

func (*TestEmailNotificationServerConnectivityUsingPOSTNotFound) Error

type TestEmailNotificationServerConnectivityUsingPOSTOK

type TestEmailNotificationServerConnectivityUsingPOSTOK struct {
	Payload *models.EmailNotificationServerDto
}

TestEmailNotificationServerConnectivityUsingPOSTOK handles this case with default header values.

OK

func NewTestEmailNotificationServerConnectivityUsingPOSTOK

func NewTestEmailNotificationServerConnectivityUsingPOSTOK() *TestEmailNotificationServerConnectivityUsingPOSTOK

NewTestEmailNotificationServerConnectivityUsingPOSTOK creates a TestEmailNotificationServerConnectivityUsingPOSTOK with default headers values

func (*TestEmailNotificationServerConnectivityUsingPOSTOK) Error

func (*TestEmailNotificationServerConnectivityUsingPOSTOK) GetPayload

type TestEmailNotificationServerConnectivityUsingPOSTParams

type TestEmailNotificationServerConnectivityUsingPOSTParams struct {

	/*EmailNotificationServerDto
	  emailNotificationServerDto

	*/
	EmailNotificationServerDto *models.EmailNotificationServerDto

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

TestEmailNotificationServerConnectivityUsingPOSTParams contains all the parameters to send to the API endpoint for the test email notification server connectivity using p o s t operation typically these are written to a http.Request

func NewTestEmailNotificationServerConnectivityUsingPOSTParams

func NewTestEmailNotificationServerConnectivityUsingPOSTParams() *TestEmailNotificationServerConnectivityUsingPOSTParams

NewTestEmailNotificationServerConnectivityUsingPOSTParams creates a new TestEmailNotificationServerConnectivityUsingPOSTParams object with the default values initialized.

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithContext

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithContext(ctx context.Context) *TestEmailNotificationServerConnectivityUsingPOSTParams

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

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithHTTPClient

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithHTTPClient(client *http.Client) *TestEmailNotificationServerConnectivityUsingPOSTParams

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

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithTimeout

func NewTestEmailNotificationServerConnectivityUsingPOSTParamsWithTimeout(timeout time.Duration) *TestEmailNotificationServerConnectivityUsingPOSTParams

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

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) SetContext

SetContext adds the context to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) SetEmailNotificationServerDto

func (o *TestEmailNotificationServerConnectivityUsingPOSTParams) SetEmailNotificationServerDto(emailNotificationServerDto *models.EmailNotificationServerDto)

SetEmailNotificationServerDto adds the emailNotificationServerDto to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) SetTimeout

SetTimeout adds the timeout to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) WithContext

WithContext adds the context to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) WithEmailNotificationServerDto

WithEmailNotificationServerDto adds the emailNotificationServerDto to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) WithTimeout

WithTimeout adds the timeout to the test email notification server connectivity using p o s t params

func (*TestEmailNotificationServerConnectivityUsingPOSTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type TestEmailNotificationServerConnectivityUsingPOSTReader

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

TestEmailNotificationServerConnectivityUsingPOSTReader is a Reader for the TestEmailNotificationServerConnectivityUsingPOST structure.

func (*TestEmailNotificationServerConnectivityUsingPOSTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type TestEmailNotificationServerConnectivityUsingPOSTUnauthorized

type TestEmailNotificationServerConnectivityUsingPOSTUnauthorized struct {
}

TestEmailNotificationServerConnectivityUsingPOSTUnauthorized handles this case with default header values.

Unauthorized

func NewTestEmailNotificationServerConnectivityUsingPOSTUnauthorized

func NewTestEmailNotificationServerConnectivityUsingPOSTUnauthorized() *TestEmailNotificationServerConnectivityUsingPOSTUnauthorized

NewTestEmailNotificationServerConnectivityUsingPOSTUnauthorized creates a TestEmailNotificationServerConnectivityUsingPOSTUnauthorized with default headers values

func (*TestEmailNotificationServerConnectivityUsingPOSTUnauthorized) Error

type UpdateEmailNotificationServerUsingPUTCreated

type UpdateEmailNotificationServerUsingPUTCreated struct {
}

UpdateEmailNotificationServerUsingPUTCreated handles this case with default header values.

Created

func NewUpdateEmailNotificationServerUsingPUTCreated

func NewUpdateEmailNotificationServerUsingPUTCreated() *UpdateEmailNotificationServerUsingPUTCreated

NewUpdateEmailNotificationServerUsingPUTCreated creates a UpdateEmailNotificationServerUsingPUTCreated with default headers values

func (*UpdateEmailNotificationServerUsingPUTCreated) Error

type UpdateEmailNotificationServerUsingPUTForbidden

type UpdateEmailNotificationServerUsingPUTForbidden struct {
}

UpdateEmailNotificationServerUsingPUTForbidden handles this case with default header values.

Forbidden

func NewUpdateEmailNotificationServerUsingPUTForbidden

func NewUpdateEmailNotificationServerUsingPUTForbidden() *UpdateEmailNotificationServerUsingPUTForbidden

NewUpdateEmailNotificationServerUsingPUTForbidden creates a UpdateEmailNotificationServerUsingPUTForbidden with default headers values

func (*UpdateEmailNotificationServerUsingPUTForbidden) Error

type UpdateEmailNotificationServerUsingPUTNotFound

type UpdateEmailNotificationServerUsingPUTNotFound struct {
}

UpdateEmailNotificationServerUsingPUTNotFound handles this case with default header values.

Not Found

func NewUpdateEmailNotificationServerUsingPUTNotFound

func NewUpdateEmailNotificationServerUsingPUTNotFound() *UpdateEmailNotificationServerUsingPUTNotFound

NewUpdateEmailNotificationServerUsingPUTNotFound creates a UpdateEmailNotificationServerUsingPUTNotFound with default headers values

func (*UpdateEmailNotificationServerUsingPUTNotFound) Error

type UpdateEmailNotificationServerUsingPUTOK

type UpdateEmailNotificationServerUsingPUTOK struct {
	Payload *models.EmailNotificationServerDto
}

UpdateEmailNotificationServerUsingPUTOK handles this case with default header values.

OK

func NewUpdateEmailNotificationServerUsingPUTOK

func NewUpdateEmailNotificationServerUsingPUTOK() *UpdateEmailNotificationServerUsingPUTOK

NewUpdateEmailNotificationServerUsingPUTOK creates a UpdateEmailNotificationServerUsingPUTOK with default headers values

func (*UpdateEmailNotificationServerUsingPUTOK) Error

func (*UpdateEmailNotificationServerUsingPUTOK) GetPayload

type UpdateEmailNotificationServerUsingPUTParams

type UpdateEmailNotificationServerUsingPUTParams struct {

	/*EmailNotificationServerDto
	  emailNotificationServerDto

	*/
	EmailNotificationServerDto *models.EmailNotificationServerDto
	/*EmailNotificationServerID
	  emailNotificationServerId

	*/
	EmailNotificationServerID int64

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

UpdateEmailNotificationServerUsingPUTParams contains all the parameters to send to the API endpoint for the update email notification server using p u t operation typically these are written to a http.Request

func NewUpdateEmailNotificationServerUsingPUTParams

func NewUpdateEmailNotificationServerUsingPUTParams() *UpdateEmailNotificationServerUsingPUTParams

NewUpdateEmailNotificationServerUsingPUTParams creates a new UpdateEmailNotificationServerUsingPUTParams object with the default values initialized.

func NewUpdateEmailNotificationServerUsingPUTParamsWithContext

func NewUpdateEmailNotificationServerUsingPUTParamsWithContext(ctx context.Context) *UpdateEmailNotificationServerUsingPUTParams

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

func NewUpdateEmailNotificationServerUsingPUTParamsWithHTTPClient

func NewUpdateEmailNotificationServerUsingPUTParamsWithHTTPClient(client *http.Client) *UpdateEmailNotificationServerUsingPUTParams

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

func NewUpdateEmailNotificationServerUsingPUTParamsWithTimeout

func NewUpdateEmailNotificationServerUsingPUTParamsWithTimeout(timeout time.Duration) *UpdateEmailNotificationServerUsingPUTParams

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

func (*UpdateEmailNotificationServerUsingPUTParams) SetContext

SetContext adds the context to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) SetEmailNotificationServerDto

func (o *UpdateEmailNotificationServerUsingPUTParams) SetEmailNotificationServerDto(emailNotificationServerDto *models.EmailNotificationServerDto)

SetEmailNotificationServerDto adds the emailNotificationServerDto to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) SetEmailNotificationServerID

func (o *UpdateEmailNotificationServerUsingPUTParams) SetEmailNotificationServerID(emailNotificationServerID int64)

SetEmailNotificationServerID adds the emailNotificationServerId to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) SetTimeout

SetTimeout adds the timeout to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WithContext

WithContext adds the context to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WithEmailNotificationServerDto

WithEmailNotificationServerDto adds the emailNotificationServerDto to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WithEmailNotificationServerID

func (o *UpdateEmailNotificationServerUsingPUTParams) WithEmailNotificationServerID(emailNotificationServerID int64) *UpdateEmailNotificationServerUsingPUTParams

WithEmailNotificationServerID adds the emailNotificationServerID to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WithTimeout

WithTimeout adds the timeout to the update email notification server using p u t params

func (*UpdateEmailNotificationServerUsingPUTParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateEmailNotificationServerUsingPUTReader

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

UpdateEmailNotificationServerUsingPUTReader is a Reader for the UpdateEmailNotificationServerUsingPUT structure.

func (*UpdateEmailNotificationServerUsingPUTReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateEmailNotificationServerUsingPUTUnauthorized

type UpdateEmailNotificationServerUsingPUTUnauthorized struct {
}

UpdateEmailNotificationServerUsingPUTUnauthorized handles this case with default header values.

Unauthorized

func NewUpdateEmailNotificationServerUsingPUTUnauthorized

func NewUpdateEmailNotificationServerUsingPUTUnauthorized() *UpdateEmailNotificationServerUsingPUTUnauthorized

NewUpdateEmailNotificationServerUsingPUTUnauthorized creates a UpdateEmailNotificationServerUsingPUTUnauthorized with default headers values

func (*UpdateEmailNotificationServerUsingPUTUnauthorized) Error

Jump to

Keyboard shortcuts

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