filters

package
v0.0.0-...-6bd88e3 Latest Latest
Warning

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

Go to latest
Published: Aug 1, 2024 License: AGPL-3.0-or-later Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func WithContentTypeApplicationJSON

func WithContentTypeApplicationJSON(r *runtime.ClientOperation)

WithContentTypeApplicationJSON sets the Content-Type header to "application/json".

func WithContentTypeApplicationXML

func WithContentTypeApplicationXML(r *runtime.ClientOperation)

WithContentTypeApplicationXML sets the Content-Type header to "application/xml".

func WithContentTypeApplicationxWwwFormUrlencoded

func WithContentTypeApplicationxWwwFormUrlencoded(r *runtime.ClientOperation)

WithContentTypeApplicationxWwwFormUrlencoded sets the Content-Type header to "application/x-www-form-urlencoded".

Types

type Client

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

Client for filters API

func (*Client) FilterKeywordDelete

func (a *Client) FilterKeywordDelete(params *FilterKeywordDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordDeleteOK, error)

FilterKeywordDelete deletes a single filter keyword with the given ID

func (*Client) FilterKeywordGet

func (a *Client) FilterKeywordGet(params *FilterKeywordGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordGetOK, error)

FilterKeywordGet gets a single filter keyword with the given ID

func (*Client) FilterKeywordPost

func (a *Client) FilterKeywordPost(params *FilterKeywordPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordPostOK, error)

FilterKeywordPost adds a filter keyword to an existing filter

func (*Client) FilterKeywordPut

func (a *Client) FilterKeywordPut(params *FilterKeywordPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordPutOK, error)

FilterKeywordPut updates a single filter keyword with the given ID

func (*Client) FilterKeywordsGet

func (a *Client) FilterKeywordsGet(params *FilterKeywordsGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordsGetOK, error)

FilterKeywordsGet gets all filter keywords for a given filter

func (*Client) FilterStatusDelete

func (a *Client) FilterStatusDelete(params *FilterStatusDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusDeleteOK, error)

FilterStatusDelete deletes a single filter status with the given ID

func (*Client) FilterStatusGet

func (a *Client) FilterStatusGet(params *FilterStatusGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusGetOK, error)

FilterStatusGet gets a single filter status with the given ID

func (*Client) FilterStatusPost

func (a *Client) FilterStatusPost(params *FilterStatusPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusPostOK, error)

FilterStatusPost adds a filter status to an existing filter

func (*Client) FilterStatusesGet

func (a *Client) FilterStatusesGet(params *FilterStatusesGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusesGetOK, error)

FilterStatusesGet gets all filter statuses for a given filter

func (*Client) FilterV1Delete

func (a *Client) FilterV1Delete(params *FilterV1DeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1DeleteOK, error)

FilterV1Delete deletes a single filter with the given ID

func (*Client) FilterV1Get

func (a *Client) FilterV1Get(params *FilterV1GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1GetOK, error)

FilterV1Get gets a single filter with the given ID

func (*Client) FilterV1Post

func (a *Client) FilterV1Post(params *FilterV1PostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1PostOK, error)

FilterV1Post creates a single filter

func (*Client) FilterV1Put

func (a *Client) FilterV1Put(params *FilterV1PutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1PutOK, error)

FilterV1Put updates a single filter with the given ID

func (*Client) FilterV2Delete

func (a *Client) FilterV2Delete(params *FilterV2DeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2DeleteOK, error)

FilterV2Delete deletes a single filter with the given ID

func (*Client) FilterV2Get

func (a *Client) FilterV2Get(params *FilterV2GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2GetOK, error)

FilterV2Get gets a single filter with the given ID

func (*Client) FilterV2Post

func (a *Client) FilterV2Post(params *FilterV2PostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2PostOK, error)

FilterV2Post creates a single filter

func (*Client) FilterV2Put

func (a *Client) FilterV2Put(params *FilterV2PutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2PutOK, error)
FilterV2Put updates a single filter with the given ID

Note that this is actually closer to a PATCH operation:

only provided fields will be updated, and omitted fields will remain set to previous values.

func (*Client) FiltersV1Get

func (a *Client) FiltersV1Get(params *FiltersV1GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FiltersV1GetOK, error)

FiltersV1Get gets all filters for the authenticated account

func (*Client) FiltersV2Get

func (a *Client) FiltersV2Get(params *FiltersV2GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FiltersV2GetOK, error)

FiltersV2Get gets all filters for the authenticated account

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption may be used to customize the behavior of Client methods.

func WithContentType

func WithContentType(mime string) ClientOption

WithContentType allows the client to force the Content-Type header to negotiate a specific Consumer from the server.

You may use this option to set arbitrary extensions to your MIME media type.

type ClientService

type ClientService interface {
	FilterKeywordDelete(params *FilterKeywordDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordDeleteOK, error)

	FilterKeywordGet(params *FilterKeywordGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordGetOK, error)

	FilterKeywordPost(params *FilterKeywordPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordPostOK, error)

	FilterKeywordPut(params *FilterKeywordPutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordPutOK, error)

	FilterKeywordsGet(params *FilterKeywordsGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterKeywordsGetOK, error)

	FilterStatusDelete(params *FilterStatusDeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusDeleteOK, error)

	FilterStatusGet(params *FilterStatusGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusGetOK, error)

	FilterStatusPost(params *FilterStatusPostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusPostOK, error)

	FilterStatusesGet(params *FilterStatusesGetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterStatusesGetOK, error)

	FilterV1Delete(params *FilterV1DeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1DeleteOK, error)

	FilterV1Get(params *FilterV1GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1GetOK, error)

	FilterV1Post(params *FilterV1PostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1PostOK, error)

	FilterV1Put(params *FilterV1PutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV1PutOK, error)

	FilterV2Delete(params *FilterV2DeleteParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2DeleteOK, error)

	FilterV2Get(params *FilterV2GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2GetOK, error)

	FilterV2Post(params *FilterV2PostParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2PostOK, error)

	FilterV2Put(params *FilterV2PutParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FilterV2PutOK, error)

	FiltersV1Get(params *FiltersV1GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FiltersV1GetOK, error)

	FiltersV2Get(params *FiltersV2GetParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*FiltersV2GetOK, 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 filters API client.

func NewClientWithBasicAuth

func NewClientWithBasicAuth(host, basePath, scheme, user, password string) ClientService

New creates a new filters API client with basic auth credentials. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - user: user for basic authentication header. - password: password for basic authentication header.

func NewClientWithBearerToken

func NewClientWithBearerToken(host, basePath, scheme, bearerToken string) ClientService

New creates a new filters API client with a bearer token for authentication. It takes the following parameters: - host: http host (github.com). - basePath: any base path for the API client ("/v1", "/v3"). - scheme: http scheme ("http", "https"). - bearerToken: bearer token for Bearer authentication header.

type FilterKeywordDeleteBadRequest

type FilterKeywordDeleteBadRequest struct {
}

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

bad request

func NewFilterKeywordDeleteBadRequest

func NewFilterKeywordDeleteBadRequest() *FilterKeywordDeleteBadRequest

NewFilterKeywordDeleteBadRequest creates a FilterKeywordDeleteBadRequest with default headers values

func (*FilterKeywordDeleteBadRequest) Code

Code gets the status code for the filter keyword delete bad request response

func (*FilterKeywordDeleteBadRequest) Error

func (*FilterKeywordDeleteBadRequest) IsClientError

func (o *FilterKeywordDeleteBadRequest) IsClientError() bool

IsClientError returns true when this filter keyword delete bad request response has a 4xx status code

func (*FilterKeywordDeleteBadRequest) IsCode

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

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

func (*FilterKeywordDeleteBadRequest) IsRedirect

func (o *FilterKeywordDeleteBadRequest) IsRedirect() bool

IsRedirect returns true when this filter keyword delete bad request response has a 3xx status code

func (*FilterKeywordDeleteBadRequest) IsServerError

func (o *FilterKeywordDeleteBadRequest) IsServerError() bool

IsServerError returns true when this filter keyword delete bad request response has a 5xx status code

func (*FilterKeywordDeleteBadRequest) IsSuccess

func (o *FilterKeywordDeleteBadRequest) IsSuccess() bool

IsSuccess returns true when this filter keyword delete bad request response has a 2xx status code

func (*FilterKeywordDeleteBadRequest) String

type FilterKeywordDeleteInternalServerError

type FilterKeywordDeleteInternalServerError struct {
}

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

internal server error

func NewFilterKeywordDeleteInternalServerError

func NewFilterKeywordDeleteInternalServerError() *FilterKeywordDeleteInternalServerError

NewFilterKeywordDeleteInternalServerError creates a FilterKeywordDeleteInternalServerError with default headers values

func (*FilterKeywordDeleteInternalServerError) Code

Code gets the status code for the filter keyword delete internal server error response

func (*FilterKeywordDeleteInternalServerError) Error

func (*FilterKeywordDeleteInternalServerError) IsClientError

func (o *FilterKeywordDeleteInternalServerError) IsClientError() bool

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

func (*FilterKeywordDeleteInternalServerError) IsCode

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

func (*FilterKeywordDeleteInternalServerError) IsRedirect

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

func (*FilterKeywordDeleteInternalServerError) IsServerError

func (o *FilterKeywordDeleteInternalServerError) IsServerError() bool

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

func (*FilterKeywordDeleteInternalServerError) IsSuccess

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

func (*FilterKeywordDeleteInternalServerError) String

type FilterKeywordDeleteNotAcceptable

type FilterKeywordDeleteNotAcceptable struct {
}

FilterKeywordDeleteNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterKeywordDeleteNotAcceptable

func NewFilterKeywordDeleteNotAcceptable() *FilterKeywordDeleteNotAcceptable

NewFilterKeywordDeleteNotAcceptable creates a FilterKeywordDeleteNotAcceptable with default headers values

func (*FilterKeywordDeleteNotAcceptable) Code

Code gets the status code for the filter keyword delete not acceptable response

func (*FilterKeywordDeleteNotAcceptable) Error

func (*FilterKeywordDeleteNotAcceptable) IsClientError

func (o *FilterKeywordDeleteNotAcceptable) IsClientError() bool

IsClientError returns true when this filter keyword delete not acceptable response has a 4xx status code

func (*FilterKeywordDeleteNotAcceptable) IsCode

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

IsCode returns true when this filter keyword delete not acceptable response a status code equal to that given

func (*FilterKeywordDeleteNotAcceptable) IsRedirect

func (o *FilterKeywordDeleteNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter keyword delete not acceptable response has a 3xx status code

func (*FilterKeywordDeleteNotAcceptable) IsServerError

func (o *FilterKeywordDeleteNotAcceptable) IsServerError() bool

IsServerError returns true when this filter keyword delete not acceptable response has a 5xx status code

func (*FilterKeywordDeleteNotAcceptable) IsSuccess

func (o *FilterKeywordDeleteNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter keyword delete not acceptable response has a 2xx status code

func (*FilterKeywordDeleteNotAcceptable) String

type FilterKeywordDeleteNotFound

type FilterKeywordDeleteNotFound struct {
}

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

not found

func NewFilterKeywordDeleteNotFound

func NewFilterKeywordDeleteNotFound() *FilterKeywordDeleteNotFound

NewFilterKeywordDeleteNotFound creates a FilterKeywordDeleteNotFound with default headers values

func (*FilterKeywordDeleteNotFound) Code

func (o *FilterKeywordDeleteNotFound) Code() int

Code gets the status code for the filter keyword delete not found response

func (*FilterKeywordDeleteNotFound) Error

func (*FilterKeywordDeleteNotFound) IsClientError

func (o *FilterKeywordDeleteNotFound) IsClientError() bool

IsClientError returns true when this filter keyword delete not found response has a 4xx status code

func (*FilterKeywordDeleteNotFound) IsCode

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

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

func (*FilterKeywordDeleteNotFound) IsRedirect

func (o *FilterKeywordDeleteNotFound) IsRedirect() bool

IsRedirect returns true when this filter keyword delete not found response has a 3xx status code

func (*FilterKeywordDeleteNotFound) IsServerError

func (o *FilterKeywordDeleteNotFound) IsServerError() bool

IsServerError returns true when this filter keyword delete not found response has a 5xx status code

func (*FilterKeywordDeleteNotFound) IsSuccess

func (o *FilterKeywordDeleteNotFound) IsSuccess() bool

IsSuccess returns true when this filter keyword delete not found response has a 2xx status code

func (*FilterKeywordDeleteNotFound) String

func (o *FilterKeywordDeleteNotFound) String() string

type FilterKeywordDeleteOK

type FilterKeywordDeleteOK struct {
}

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

filter keyword deleted

func NewFilterKeywordDeleteOK

func NewFilterKeywordDeleteOK() *FilterKeywordDeleteOK

NewFilterKeywordDeleteOK creates a FilterKeywordDeleteOK with default headers values

func (*FilterKeywordDeleteOK) Code

func (o *FilterKeywordDeleteOK) Code() int

Code gets the status code for the filter keyword delete o k response

func (*FilterKeywordDeleteOK) Error

func (o *FilterKeywordDeleteOK) Error() string

func (*FilterKeywordDeleteOK) IsClientError

func (o *FilterKeywordDeleteOK) IsClientError() bool

IsClientError returns true when this filter keyword delete o k response has a 4xx status code

func (*FilterKeywordDeleteOK) IsCode

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

IsCode returns true when this filter keyword delete o k response a status code equal to that given

func (*FilterKeywordDeleteOK) IsRedirect

func (o *FilterKeywordDeleteOK) IsRedirect() bool

IsRedirect returns true when this filter keyword delete o k response has a 3xx status code

func (*FilterKeywordDeleteOK) IsServerError

func (o *FilterKeywordDeleteOK) IsServerError() bool

IsServerError returns true when this filter keyword delete o k response has a 5xx status code

func (*FilterKeywordDeleteOK) IsSuccess

func (o *FilterKeywordDeleteOK) IsSuccess() bool

IsSuccess returns true when this filter keyword delete o k response has a 2xx status code

func (*FilterKeywordDeleteOK) String

func (o *FilterKeywordDeleteOK) String() string

type FilterKeywordDeleteParams

type FilterKeywordDeleteParams struct {

	/* ID.

	   ID of the filter keyword
	*/
	ID string

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

FilterKeywordDeleteParams contains all the parameters to send to the API endpoint

for the filter keyword delete operation.

Typically these are written to a http.Request.

func NewFilterKeywordDeleteParams

func NewFilterKeywordDeleteParams() *FilterKeywordDeleteParams

NewFilterKeywordDeleteParams creates a new FilterKeywordDeleteParams 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 NewFilterKeywordDeleteParamsWithContext

func NewFilterKeywordDeleteParamsWithContext(ctx context.Context) *FilterKeywordDeleteParams

NewFilterKeywordDeleteParamsWithContext creates a new FilterKeywordDeleteParams object with the ability to set a context for a request.

func NewFilterKeywordDeleteParamsWithHTTPClient

func NewFilterKeywordDeleteParamsWithHTTPClient(client *http.Client) *FilterKeywordDeleteParams

NewFilterKeywordDeleteParamsWithHTTPClient creates a new FilterKeywordDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewFilterKeywordDeleteParamsWithTimeout

func NewFilterKeywordDeleteParamsWithTimeout(timeout time.Duration) *FilterKeywordDeleteParams

NewFilterKeywordDeleteParamsWithTimeout creates a new FilterKeywordDeleteParams object with the ability to set a timeout on a request.

func (*FilterKeywordDeleteParams) SetContext

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

SetContext adds the context to the filter keyword delete params

func (*FilterKeywordDeleteParams) SetDefaults

func (o *FilterKeywordDeleteParams) SetDefaults()

SetDefaults hydrates default values in the filter keyword delete params (not the query body).

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

func (*FilterKeywordDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter keyword delete params

func (*FilterKeywordDeleteParams) SetID

func (o *FilterKeywordDeleteParams) SetID(id string)

SetID adds the id to the filter keyword delete params

func (*FilterKeywordDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the filter keyword delete params

func (*FilterKeywordDeleteParams) WithContext

WithContext adds the context to the filter keyword delete params

func (*FilterKeywordDeleteParams) WithDefaults

WithDefaults hydrates default values in the filter keyword delete params (not the query body).

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

func (*FilterKeywordDeleteParams) WithHTTPClient

func (o *FilterKeywordDeleteParams) WithHTTPClient(client *http.Client) *FilterKeywordDeleteParams

WithHTTPClient adds the HTTPClient to the filter keyword delete params

func (*FilterKeywordDeleteParams) WithID

WithID adds the id to the filter keyword delete params

func (*FilterKeywordDeleteParams) WithTimeout

WithTimeout adds the timeout to the filter keyword delete params

func (*FilterKeywordDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterKeywordDeleteReader

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

FilterKeywordDeleteReader is a Reader for the FilterKeywordDelete structure.

func (*FilterKeywordDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterKeywordDeleteUnauthorized

type FilterKeywordDeleteUnauthorized struct {
}

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

unauthorized

func NewFilterKeywordDeleteUnauthorized

func NewFilterKeywordDeleteUnauthorized() *FilterKeywordDeleteUnauthorized

NewFilterKeywordDeleteUnauthorized creates a FilterKeywordDeleteUnauthorized with default headers values

func (*FilterKeywordDeleteUnauthorized) Code

Code gets the status code for the filter keyword delete unauthorized response

func (*FilterKeywordDeleteUnauthorized) Error

func (*FilterKeywordDeleteUnauthorized) IsClientError

func (o *FilterKeywordDeleteUnauthorized) IsClientError() bool

IsClientError returns true when this filter keyword delete unauthorized response has a 4xx status code

func (*FilterKeywordDeleteUnauthorized) IsCode

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

IsCode returns true when this filter keyword delete unauthorized response a status code equal to that given

func (*FilterKeywordDeleteUnauthorized) IsRedirect

func (o *FilterKeywordDeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter keyword delete unauthorized response has a 3xx status code

func (*FilterKeywordDeleteUnauthorized) IsServerError

func (o *FilterKeywordDeleteUnauthorized) IsServerError() bool

IsServerError returns true when this filter keyword delete unauthorized response has a 5xx status code

func (*FilterKeywordDeleteUnauthorized) IsSuccess

func (o *FilterKeywordDeleteUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter keyword delete unauthorized response has a 2xx status code

func (*FilterKeywordDeleteUnauthorized) String

type FilterKeywordGetBadRequest

type FilterKeywordGetBadRequest struct {
}

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

bad request

func NewFilterKeywordGetBadRequest

func NewFilterKeywordGetBadRequest() *FilterKeywordGetBadRequest

NewFilterKeywordGetBadRequest creates a FilterKeywordGetBadRequest with default headers values

func (*FilterKeywordGetBadRequest) Code

func (o *FilterKeywordGetBadRequest) Code() int

Code gets the status code for the filter keyword get bad request response

func (*FilterKeywordGetBadRequest) Error

func (*FilterKeywordGetBadRequest) IsClientError

func (o *FilterKeywordGetBadRequest) IsClientError() bool

IsClientError returns true when this filter keyword get bad request response has a 4xx status code

func (*FilterKeywordGetBadRequest) IsCode

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

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

func (*FilterKeywordGetBadRequest) IsRedirect

func (o *FilterKeywordGetBadRequest) IsRedirect() bool

IsRedirect returns true when this filter keyword get bad request response has a 3xx status code

func (*FilterKeywordGetBadRequest) IsServerError

func (o *FilterKeywordGetBadRequest) IsServerError() bool

IsServerError returns true when this filter keyword get bad request response has a 5xx status code

func (*FilterKeywordGetBadRequest) IsSuccess

func (o *FilterKeywordGetBadRequest) IsSuccess() bool

IsSuccess returns true when this filter keyword get bad request response has a 2xx status code

func (*FilterKeywordGetBadRequest) String

func (o *FilterKeywordGetBadRequest) String() string

type FilterKeywordGetInternalServerError

type FilterKeywordGetInternalServerError struct {
}

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

internal server error

func NewFilterKeywordGetInternalServerError

func NewFilterKeywordGetInternalServerError() *FilterKeywordGetInternalServerError

NewFilterKeywordGetInternalServerError creates a FilterKeywordGetInternalServerError with default headers values

func (*FilterKeywordGetInternalServerError) Code

Code gets the status code for the filter keyword get internal server error response

func (*FilterKeywordGetInternalServerError) Error

func (*FilterKeywordGetInternalServerError) IsClientError

func (o *FilterKeywordGetInternalServerError) IsClientError() bool

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

func (*FilterKeywordGetInternalServerError) IsCode

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

func (*FilterKeywordGetInternalServerError) IsRedirect

func (o *FilterKeywordGetInternalServerError) IsRedirect() bool

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

func (*FilterKeywordGetInternalServerError) IsServerError

func (o *FilterKeywordGetInternalServerError) IsServerError() bool

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

func (*FilterKeywordGetInternalServerError) IsSuccess

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

func (*FilterKeywordGetInternalServerError) String

type FilterKeywordGetNotAcceptable

type FilterKeywordGetNotAcceptable struct {
}

FilterKeywordGetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterKeywordGetNotAcceptable

func NewFilterKeywordGetNotAcceptable() *FilterKeywordGetNotAcceptable

NewFilterKeywordGetNotAcceptable creates a FilterKeywordGetNotAcceptable with default headers values

func (*FilterKeywordGetNotAcceptable) Code

Code gets the status code for the filter keyword get not acceptable response

func (*FilterKeywordGetNotAcceptable) Error

func (*FilterKeywordGetNotAcceptable) IsClientError

func (o *FilterKeywordGetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter keyword get not acceptable response has a 4xx status code

func (*FilterKeywordGetNotAcceptable) IsCode

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

IsCode returns true when this filter keyword get not acceptable response a status code equal to that given

func (*FilterKeywordGetNotAcceptable) IsRedirect

func (o *FilterKeywordGetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter keyword get not acceptable response has a 3xx status code

func (*FilterKeywordGetNotAcceptable) IsServerError

func (o *FilterKeywordGetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter keyword get not acceptable response has a 5xx status code

func (*FilterKeywordGetNotAcceptable) IsSuccess

func (o *FilterKeywordGetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter keyword get not acceptable response has a 2xx status code

func (*FilterKeywordGetNotAcceptable) String

type FilterKeywordGetNotFound

type FilterKeywordGetNotFound struct {
}

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

not found

func NewFilterKeywordGetNotFound

func NewFilterKeywordGetNotFound() *FilterKeywordGetNotFound

NewFilterKeywordGetNotFound creates a FilterKeywordGetNotFound with default headers values

func (*FilterKeywordGetNotFound) Code

func (o *FilterKeywordGetNotFound) Code() int

Code gets the status code for the filter keyword get not found response

func (*FilterKeywordGetNotFound) Error

func (o *FilterKeywordGetNotFound) Error() string

func (*FilterKeywordGetNotFound) IsClientError

func (o *FilterKeywordGetNotFound) IsClientError() bool

IsClientError returns true when this filter keyword get not found response has a 4xx status code

func (*FilterKeywordGetNotFound) IsCode

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

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

func (*FilterKeywordGetNotFound) IsRedirect

func (o *FilterKeywordGetNotFound) IsRedirect() bool

IsRedirect returns true when this filter keyword get not found response has a 3xx status code

func (*FilterKeywordGetNotFound) IsServerError

func (o *FilterKeywordGetNotFound) IsServerError() bool

IsServerError returns true when this filter keyword get not found response has a 5xx status code

func (*FilterKeywordGetNotFound) IsSuccess

func (o *FilterKeywordGetNotFound) IsSuccess() bool

IsSuccess returns true when this filter keyword get not found response has a 2xx status code

func (*FilterKeywordGetNotFound) String

func (o *FilterKeywordGetNotFound) String() string

type FilterKeywordGetOK

type FilterKeywordGetOK struct {
	Payload *models.FilterKeyword
}

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

Requested filter keyword.

func NewFilterKeywordGetOK

func NewFilterKeywordGetOK() *FilterKeywordGetOK

NewFilterKeywordGetOK creates a FilterKeywordGetOK with default headers values

func (*FilterKeywordGetOK) Code

func (o *FilterKeywordGetOK) Code() int

Code gets the status code for the filter keyword get o k response

func (*FilterKeywordGetOK) Error

func (o *FilterKeywordGetOK) Error() string

func (*FilterKeywordGetOK) GetPayload

func (o *FilterKeywordGetOK) GetPayload() *models.FilterKeyword

func (*FilterKeywordGetOK) IsClientError

func (o *FilterKeywordGetOK) IsClientError() bool

IsClientError returns true when this filter keyword get o k response has a 4xx status code

func (*FilterKeywordGetOK) IsCode

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

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

func (*FilterKeywordGetOK) IsRedirect

func (o *FilterKeywordGetOK) IsRedirect() bool

IsRedirect returns true when this filter keyword get o k response has a 3xx status code

func (*FilterKeywordGetOK) IsServerError

func (o *FilterKeywordGetOK) IsServerError() bool

IsServerError returns true when this filter keyword get o k response has a 5xx status code

func (*FilterKeywordGetOK) IsSuccess

func (o *FilterKeywordGetOK) IsSuccess() bool

IsSuccess returns true when this filter keyword get o k response has a 2xx status code

func (*FilterKeywordGetOK) String

func (o *FilterKeywordGetOK) String() string

type FilterKeywordGetParams

type FilterKeywordGetParams struct {

	/* ID.

	   ID of the filter keyword
	*/
	ID string

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

FilterKeywordGetParams contains all the parameters to send to the API endpoint

for the filter keyword get operation.

Typically these are written to a http.Request.

func NewFilterKeywordGetParams

func NewFilterKeywordGetParams() *FilterKeywordGetParams

NewFilterKeywordGetParams creates a new FilterKeywordGetParams 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 NewFilterKeywordGetParamsWithContext

func NewFilterKeywordGetParamsWithContext(ctx context.Context) *FilterKeywordGetParams

NewFilterKeywordGetParamsWithContext creates a new FilterKeywordGetParams object with the ability to set a context for a request.

func NewFilterKeywordGetParamsWithHTTPClient

func NewFilterKeywordGetParamsWithHTTPClient(client *http.Client) *FilterKeywordGetParams

NewFilterKeywordGetParamsWithHTTPClient creates a new FilterKeywordGetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterKeywordGetParamsWithTimeout

func NewFilterKeywordGetParamsWithTimeout(timeout time.Duration) *FilterKeywordGetParams

NewFilterKeywordGetParamsWithTimeout creates a new FilterKeywordGetParams object with the ability to set a timeout on a request.

func (*FilterKeywordGetParams) SetContext

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

SetContext adds the context to the filter keyword get params

func (*FilterKeywordGetParams) SetDefaults

func (o *FilterKeywordGetParams) SetDefaults()

SetDefaults hydrates default values in the filter keyword get params (not the query body).

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

func (*FilterKeywordGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter keyword get params

func (*FilterKeywordGetParams) SetID

func (o *FilterKeywordGetParams) SetID(id string)

SetID adds the id to the filter keyword get params

func (*FilterKeywordGetParams) SetTimeout

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

SetTimeout adds the timeout to the filter keyword get params

func (*FilterKeywordGetParams) WithContext

WithContext adds the context to the filter keyword get params

func (*FilterKeywordGetParams) WithDefaults

WithDefaults hydrates default values in the filter keyword get params (not the query body).

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

func (*FilterKeywordGetParams) WithHTTPClient

func (o *FilterKeywordGetParams) WithHTTPClient(client *http.Client) *FilterKeywordGetParams

WithHTTPClient adds the HTTPClient to the filter keyword get params

func (*FilterKeywordGetParams) WithID

WithID adds the id to the filter keyword get params

func (*FilterKeywordGetParams) WithTimeout

WithTimeout adds the timeout to the filter keyword get params

func (*FilterKeywordGetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterKeywordGetReader

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

FilterKeywordGetReader is a Reader for the FilterKeywordGet structure.

func (*FilterKeywordGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterKeywordGetUnauthorized

type FilterKeywordGetUnauthorized struct {
}

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

unauthorized

func NewFilterKeywordGetUnauthorized

func NewFilterKeywordGetUnauthorized() *FilterKeywordGetUnauthorized

NewFilterKeywordGetUnauthorized creates a FilterKeywordGetUnauthorized with default headers values

func (*FilterKeywordGetUnauthorized) Code

Code gets the status code for the filter keyword get unauthorized response

func (*FilterKeywordGetUnauthorized) Error

func (*FilterKeywordGetUnauthorized) IsClientError

func (o *FilterKeywordGetUnauthorized) IsClientError() bool

IsClientError returns true when this filter keyword get unauthorized response has a 4xx status code

func (*FilterKeywordGetUnauthorized) IsCode

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

IsCode returns true when this filter keyword get unauthorized response a status code equal to that given

func (*FilterKeywordGetUnauthorized) IsRedirect

func (o *FilterKeywordGetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter keyword get unauthorized response has a 3xx status code

func (*FilterKeywordGetUnauthorized) IsServerError

func (o *FilterKeywordGetUnauthorized) IsServerError() bool

IsServerError returns true when this filter keyword get unauthorized response has a 5xx status code

func (*FilterKeywordGetUnauthorized) IsSuccess

func (o *FilterKeywordGetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter keyword get unauthorized response has a 2xx status code

func (*FilterKeywordGetUnauthorized) String

type FilterKeywordPostBadRequest

type FilterKeywordPostBadRequest struct {
}

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

bad request

func NewFilterKeywordPostBadRequest

func NewFilterKeywordPostBadRequest() *FilterKeywordPostBadRequest

NewFilterKeywordPostBadRequest creates a FilterKeywordPostBadRequest with default headers values

func (*FilterKeywordPostBadRequest) Code

func (o *FilterKeywordPostBadRequest) Code() int

Code gets the status code for the filter keyword post bad request response

func (*FilterKeywordPostBadRequest) Error

func (*FilterKeywordPostBadRequest) IsClientError

func (o *FilterKeywordPostBadRequest) IsClientError() bool

IsClientError returns true when this filter keyword post bad request response has a 4xx status code

func (*FilterKeywordPostBadRequest) IsCode

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

IsCode returns true when this filter keyword post bad request response a status code equal to that given

func (*FilterKeywordPostBadRequest) IsRedirect

func (o *FilterKeywordPostBadRequest) IsRedirect() bool

IsRedirect returns true when this filter keyword post bad request response has a 3xx status code

func (*FilterKeywordPostBadRequest) IsServerError

func (o *FilterKeywordPostBadRequest) IsServerError() bool

IsServerError returns true when this filter keyword post bad request response has a 5xx status code

func (*FilterKeywordPostBadRequest) IsSuccess

func (o *FilterKeywordPostBadRequest) IsSuccess() bool

IsSuccess returns true when this filter keyword post bad request response has a 2xx status code

func (*FilterKeywordPostBadRequest) String

func (o *FilterKeywordPostBadRequest) String() string

type FilterKeywordPostConflict

type FilterKeywordPostConflict struct {
}

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

conflict (duplicate keyword)

func NewFilterKeywordPostConflict

func NewFilterKeywordPostConflict() *FilterKeywordPostConflict

NewFilterKeywordPostConflict creates a FilterKeywordPostConflict with default headers values

func (*FilterKeywordPostConflict) Code

func (o *FilterKeywordPostConflict) Code() int

Code gets the status code for the filter keyword post conflict response

func (*FilterKeywordPostConflict) Error

func (o *FilterKeywordPostConflict) Error() string

func (*FilterKeywordPostConflict) IsClientError

func (o *FilterKeywordPostConflict) IsClientError() bool

IsClientError returns true when this filter keyword post conflict response has a 4xx status code

func (*FilterKeywordPostConflict) IsCode

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

IsCode returns true when this filter keyword post conflict response a status code equal to that given

func (*FilterKeywordPostConflict) IsRedirect

func (o *FilterKeywordPostConflict) IsRedirect() bool

IsRedirect returns true when this filter keyword post conflict response has a 3xx status code

func (*FilterKeywordPostConflict) IsServerError

func (o *FilterKeywordPostConflict) IsServerError() bool

IsServerError returns true when this filter keyword post conflict response has a 5xx status code

func (*FilterKeywordPostConflict) IsSuccess

func (o *FilterKeywordPostConflict) IsSuccess() bool

IsSuccess returns true when this filter keyword post conflict response has a 2xx status code

func (*FilterKeywordPostConflict) String

func (o *FilterKeywordPostConflict) String() string

type FilterKeywordPostForbidden

type FilterKeywordPostForbidden struct {
}

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

forbidden to moved accounts

func NewFilterKeywordPostForbidden

func NewFilterKeywordPostForbidden() *FilterKeywordPostForbidden

NewFilterKeywordPostForbidden creates a FilterKeywordPostForbidden with default headers values

func (*FilterKeywordPostForbidden) Code

func (o *FilterKeywordPostForbidden) Code() int

Code gets the status code for the filter keyword post forbidden response

func (*FilterKeywordPostForbidden) Error

func (*FilterKeywordPostForbidden) IsClientError

func (o *FilterKeywordPostForbidden) IsClientError() bool

IsClientError returns true when this filter keyword post forbidden response has a 4xx status code

func (*FilterKeywordPostForbidden) IsCode

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

IsCode returns true when this filter keyword post forbidden response a status code equal to that given

func (*FilterKeywordPostForbidden) IsRedirect

func (o *FilterKeywordPostForbidden) IsRedirect() bool

IsRedirect returns true when this filter keyword post forbidden response has a 3xx status code

func (*FilterKeywordPostForbidden) IsServerError

func (o *FilterKeywordPostForbidden) IsServerError() bool

IsServerError returns true when this filter keyword post forbidden response has a 5xx status code

func (*FilterKeywordPostForbidden) IsSuccess

func (o *FilterKeywordPostForbidden) IsSuccess() bool

IsSuccess returns true when this filter keyword post forbidden response has a 2xx status code

func (*FilterKeywordPostForbidden) String

func (o *FilterKeywordPostForbidden) String() string

type FilterKeywordPostInternalServerError

type FilterKeywordPostInternalServerError struct {
}

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

internal server error

func NewFilterKeywordPostInternalServerError

func NewFilterKeywordPostInternalServerError() *FilterKeywordPostInternalServerError

NewFilterKeywordPostInternalServerError creates a FilterKeywordPostInternalServerError with default headers values

func (*FilterKeywordPostInternalServerError) Code

Code gets the status code for the filter keyword post internal server error response

func (*FilterKeywordPostInternalServerError) Error

func (*FilterKeywordPostInternalServerError) IsClientError

func (o *FilterKeywordPostInternalServerError) IsClientError() bool

IsClientError returns true when this filter keyword post internal server error response has a 4xx status code

func (*FilterKeywordPostInternalServerError) IsCode

IsCode returns true when this filter keyword post internal server error response a status code equal to that given

func (*FilterKeywordPostInternalServerError) IsRedirect

IsRedirect returns true when this filter keyword post internal server error response has a 3xx status code

func (*FilterKeywordPostInternalServerError) IsServerError

func (o *FilterKeywordPostInternalServerError) IsServerError() bool

IsServerError returns true when this filter keyword post internal server error response has a 5xx status code

func (*FilterKeywordPostInternalServerError) IsSuccess

IsSuccess returns true when this filter keyword post internal server error response has a 2xx status code

func (*FilterKeywordPostInternalServerError) String

type FilterKeywordPostNotAcceptable

type FilterKeywordPostNotAcceptable struct {
}

FilterKeywordPostNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterKeywordPostNotAcceptable

func NewFilterKeywordPostNotAcceptable() *FilterKeywordPostNotAcceptable

NewFilterKeywordPostNotAcceptable creates a FilterKeywordPostNotAcceptable with default headers values

func (*FilterKeywordPostNotAcceptable) Code

Code gets the status code for the filter keyword post not acceptable response

func (*FilterKeywordPostNotAcceptable) Error

func (*FilterKeywordPostNotAcceptable) IsClientError

func (o *FilterKeywordPostNotAcceptable) IsClientError() bool

IsClientError returns true when this filter keyword post not acceptable response has a 4xx status code

func (*FilterKeywordPostNotAcceptable) IsCode

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

IsCode returns true when this filter keyword post not acceptable response a status code equal to that given

func (*FilterKeywordPostNotAcceptable) IsRedirect

func (o *FilterKeywordPostNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter keyword post not acceptable response has a 3xx status code

func (*FilterKeywordPostNotAcceptable) IsServerError

func (o *FilterKeywordPostNotAcceptable) IsServerError() bool

IsServerError returns true when this filter keyword post not acceptable response has a 5xx status code

func (*FilterKeywordPostNotAcceptable) IsSuccess

func (o *FilterKeywordPostNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter keyword post not acceptable response has a 2xx status code

func (*FilterKeywordPostNotAcceptable) String

type FilterKeywordPostNotFound

type FilterKeywordPostNotFound struct {
}

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

not found

func NewFilterKeywordPostNotFound

func NewFilterKeywordPostNotFound() *FilterKeywordPostNotFound

NewFilterKeywordPostNotFound creates a FilterKeywordPostNotFound with default headers values

func (*FilterKeywordPostNotFound) Code

func (o *FilterKeywordPostNotFound) Code() int

Code gets the status code for the filter keyword post not found response

func (*FilterKeywordPostNotFound) Error

func (o *FilterKeywordPostNotFound) Error() string

func (*FilterKeywordPostNotFound) IsClientError

func (o *FilterKeywordPostNotFound) IsClientError() bool

IsClientError returns true when this filter keyword post not found response has a 4xx status code

func (*FilterKeywordPostNotFound) IsCode

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

IsCode returns true when this filter keyword post not found response a status code equal to that given

func (*FilterKeywordPostNotFound) IsRedirect

func (o *FilterKeywordPostNotFound) IsRedirect() bool

IsRedirect returns true when this filter keyword post not found response has a 3xx status code

func (*FilterKeywordPostNotFound) IsServerError

func (o *FilterKeywordPostNotFound) IsServerError() bool

IsServerError returns true when this filter keyword post not found response has a 5xx status code

func (*FilterKeywordPostNotFound) IsSuccess

func (o *FilterKeywordPostNotFound) IsSuccess() bool

IsSuccess returns true when this filter keyword post not found response has a 2xx status code

func (*FilterKeywordPostNotFound) String

func (o *FilterKeywordPostNotFound) String() string

type FilterKeywordPostOK

type FilterKeywordPostOK struct {
	Payload *models.FilterKeyword
}

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

New filter keyword.

func NewFilterKeywordPostOK

func NewFilterKeywordPostOK() *FilterKeywordPostOK

NewFilterKeywordPostOK creates a FilterKeywordPostOK with default headers values

func (*FilterKeywordPostOK) Code

func (o *FilterKeywordPostOK) Code() int

Code gets the status code for the filter keyword post o k response

func (*FilterKeywordPostOK) Error

func (o *FilterKeywordPostOK) Error() string

func (*FilterKeywordPostOK) GetPayload

func (o *FilterKeywordPostOK) GetPayload() *models.FilterKeyword

func (*FilterKeywordPostOK) IsClientError

func (o *FilterKeywordPostOK) IsClientError() bool

IsClientError returns true when this filter keyword post o k response has a 4xx status code

func (*FilterKeywordPostOK) IsCode

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

IsCode returns true when this filter keyword post o k response a status code equal to that given

func (*FilterKeywordPostOK) IsRedirect

func (o *FilterKeywordPostOK) IsRedirect() bool

IsRedirect returns true when this filter keyword post o k response has a 3xx status code

func (*FilterKeywordPostOK) IsServerError

func (o *FilterKeywordPostOK) IsServerError() bool

IsServerError returns true when this filter keyword post o k response has a 5xx status code

func (*FilterKeywordPostOK) IsSuccess

func (o *FilterKeywordPostOK) IsSuccess() bool

IsSuccess returns true when this filter keyword post o k response has a 2xx status code

func (*FilterKeywordPostOK) String

func (o *FilterKeywordPostOK) String() string

type FilterKeywordPostParams

type FilterKeywordPostParams struct {

	/* ID.

	   ID of the filter to add the filtered status to.
	*/
	ID string

	/* Keyword.

	     The text to be filtered

	Sample: fnord
	*/
	Keyword string

	/* WholeWord.

	     Should the filter consider word boundaries?

	Sample: true
	*/
	WholeWord *bool

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

FilterKeywordPostParams contains all the parameters to send to the API endpoint

for the filter keyword post operation.

Typically these are written to a http.Request.

func NewFilterKeywordPostParams

func NewFilterKeywordPostParams() *FilterKeywordPostParams

NewFilterKeywordPostParams creates a new FilterKeywordPostParams 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 NewFilterKeywordPostParamsWithContext

func NewFilterKeywordPostParamsWithContext(ctx context.Context) *FilterKeywordPostParams

NewFilterKeywordPostParamsWithContext creates a new FilterKeywordPostParams object with the ability to set a context for a request.

func NewFilterKeywordPostParamsWithHTTPClient

func NewFilterKeywordPostParamsWithHTTPClient(client *http.Client) *FilterKeywordPostParams

NewFilterKeywordPostParamsWithHTTPClient creates a new FilterKeywordPostParams object with the ability to set a custom HTTPClient for a request.

func NewFilterKeywordPostParamsWithTimeout

func NewFilterKeywordPostParamsWithTimeout(timeout time.Duration) *FilterKeywordPostParams

NewFilterKeywordPostParamsWithTimeout creates a new FilterKeywordPostParams object with the ability to set a timeout on a request.

func (*FilterKeywordPostParams) SetContext

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

SetContext adds the context to the filter keyword post params

func (*FilterKeywordPostParams) SetDefaults

func (o *FilterKeywordPostParams) SetDefaults()

SetDefaults hydrates default values in the filter keyword post params (not the query body).

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

func (*FilterKeywordPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter keyword post params

func (*FilterKeywordPostParams) SetID

func (o *FilterKeywordPostParams) SetID(id string)

SetID adds the id to the filter keyword post params

func (*FilterKeywordPostParams) SetKeyword

func (o *FilterKeywordPostParams) SetKeyword(keyword string)

SetKeyword adds the keyword to the filter keyword post params

func (*FilterKeywordPostParams) SetTimeout

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

SetTimeout adds the timeout to the filter keyword post params

func (*FilterKeywordPostParams) SetWholeWord

func (o *FilterKeywordPostParams) SetWholeWord(wholeWord *bool)

SetWholeWord adds the wholeWord to the filter keyword post params

func (*FilterKeywordPostParams) WithContext

WithContext adds the context to the filter keyword post params

func (*FilterKeywordPostParams) WithDefaults

WithDefaults hydrates default values in the filter keyword post params (not the query body).

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

func (*FilterKeywordPostParams) WithHTTPClient

func (o *FilterKeywordPostParams) WithHTTPClient(client *http.Client) *FilterKeywordPostParams

WithHTTPClient adds the HTTPClient to the filter keyword post params

func (*FilterKeywordPostParams) WithID

WithID adds the id to the filter keyword post params

func (*FilterKeywordPostParams) WithKeyword

func (o *FilterKeywordPostParams) WithKeyword(keyword string) *FilterKeywordPostParams

WithKeyword adds the keyword to the filter keyword post params

func (*FilterKeywordPostParams) WithTimeout

WithTimeout adds the timeout to the filter keyword post params

func (*FilterKeywordPostParams) WithWholeWord

func (o *FilterKeywordPostParams) WithWholeWord(wholeWord *bool) *FilterKeywordPostParams

WithWholeWord adds the wholeWord to the filter keyword post params

func (*FilterKeywordPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterKeywordPostReader

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

FilterKeywordPostReader is a Reader for the FilterKeywordPost structure.

func (*FilterKeywordPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterKeywordPostUnauthorized

type FilterKeywordPostUnauthorized struct {
}

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

unauthorized

func NewFilterKeywordPostUnauthorized

func NewFilterKeywordPostUnauthorized() *FilterKeywordPostUnauthorized

NewFilterKeywordPostUnauthorized creates a FilterKeywordPostUnauthorized with default headers values

func (*FilterKeywordPostUnauthorized) Code

Code gets the status code for the filter keyword post unauthorized response

func (*FilterKeywordPostUnauthorized) Error

func (*FilterKeywordPostUnauthorized) IsClientError

func (o *FilterKeywordPostUnauthorized) IsClientError() bool

IsClientError returns true when this filter keyword post unauthorized response has a 4xx status code

func (*FilterKeywordPostUnauthorized) IsCode

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

IsCode returns true when this filter keyword post unauthorized response a status code equal to that given

func (*FilterKeywordPostUnauthorized) IsRedirect

func (o *FilterKeywordPostUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter keyword post unauthorized response has a 3xx status code

func (*FilterKeywordPostUnauthorized) IsServerError

func (o *FilterKeywordPostUnauthorized) IsServerError() bool

IsServerError returns true when this filter keyword post unauthorized response has a 5xx status code

func (*FilterKeywordPostUnauthorized) IsSuccess

func (o *FilterKeywordPostUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter keyword post unauthorized response has a 2xx status code

func (*FilterKeywordPostUnauthorized) String

type FilterKeywordPostUnprocessableEntity

type FilterKeywordPostUnprocessableEntity struct {
}

FilterKeywordPostUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterKeywordPostUnprocessableEntity

func NewFilterKeywordPostUnprocessableEntity() *FilterKeywordPostUnprocessableEntity

NewFilterKeywordPostUnprocessableEntity creates a FilterKeywordPostUnprocessableEntity with default headers values

func (*FilterKeywordPostUnprocessableEntity) Code

Code gets the status code for the filter keyword post unprocessable entity response

func (*FilterKeywordPostUnprocessableEntity) Error

func (*FilterKeywordPostUnprocessableEntity) IsClientError

func (o *FilterKeywordPostUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter keyword post unprocessable entity response has a 4xx status code

func (*FilterKeywordPostUnprocessableEntity) IsCode

IsCode returns true when this filter keyword post unprocessable entity response a status code equal to that given

func (*FilterKeywordPostUnprocessableEntity) IsRedirect

IsRedirect returns true when this filter keyword post unprocessable entity response has a 3xx status code

func (*FilterKeywordPostUnprocessableEntity) IsServerError

func (o *FilterKeywordPostUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter keyword post unprocessable entity response has a 5xx status code

func (*FilterKeywordPostUnprocessableEntity) IsSuccess

IsSuccess returns true when this filter keyword post unprocessable entity response has a 2xx status code

func (*FilterKeywordPostUnprocessableEntity) String

type FilterKeywordPutBadRequest

type FilterKeywordPutBadRequest struct {
}

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

bad request

func NewFilterKeywordPutBadRequest

func NewFilterKeywordPutBadRequest() *FilterKeywordPutBadRequest

NewFilterKeywordPutBadRequest creates a FilterKeywordPutBadRequest with default headers values

func (*FilterKeywordPutBadRequest) Code

func (o *FilterKeywordPutBadRequest) Code() int

Code gets the status code for the filter keyword put bad request response

func (*FilterKeywordPutBadRequest) Error

func (*FilterKeywordPutBadRequest) IsClientError

func (o *FilterKeywordPutBadRequest) IsClientError() bool

IsClientError returns true when this filter keyword put bad request response has a 4xx status code

func (*FilterKeywordPutBadRequest) IsCode

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

IsCode returns true when this filter keyword put bad request response a status code equal to that given

func (*FilterKeywordPutBadRequest) IsRedirect

func (o *FilterKeywordPutBadRequest) IsRedirect() bool

IsRedirect returns true when this filter keyword put bad request response has a 3xx status code

func (*FilterKeywordPutBadRequest) IsServerError

func (o *FilterKeywordPutBadRequest) IsServerError() bool

IsServerError returns true when this filter keyword put bad request response has a 5xx status code

func (*FilterKeywordPutBadRequest) IsSuccess

func (o *FilterKeywordPutBadRequest) IsSuccess() bool

IsSuccess returns true when this filter keyword put bad request response has a 2xx status code

func (*FilterKeywordPutBadRequest) String

func (o *FilterKeywordPutBadRequest) String() string

type FilterKeywordPutConflict

type FilterKeywordPutConflict struct {
}

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

conflict (duplicate keyword)

func NewFilterKeywordPutConflict

func NewFilterKeywordPutConflict() *FilterKeywordPutConflict

NewFilterKeywordPutConflict creates a FilterKeywordPutConflict with default headers values

func (*FilterKeywordPutConflict) Code

func (o *FilterKeywordPutConflict) Code() int

Code gets the status code for the filter keyword put conflict response

func (*FilterKeywordPutConflict) Error

func (o *FilterKeywordPutConflict) Error() string

func (*FilterKeywordPutConflict) IsClientError

func (o *FilterKeywordPutConflict) IsClientError() bool

IsClientError returns true when this filter keyword put conflict response has a 4xx status code

func (*FilterKeywordPutConflict) IsCode

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

IsCode returns true when this filter keyword put conflict response a status code equal to that given

func (*FilterKeywordPutConflict) IsRedirect

func (o *FilterKeywordPutConflict) IsRedirect() bool

IsRedirect returns true when this filter keyword put conflict response has a 3xx status code

func (*FilterKeywordPutConflict) IsServerError

func (o *FilterKeywordPutConflict) IsServerError() bool

IsServerError returns true when this filter keyword put conflict response has a 5xx status code

func (*FilterKeywordPutConflict) IsSuccess

func (o *FilterKeywordPutConflict) IsSuccess() bool

IsSuccess returns true when this filter keyword put conflict response has a 2xx status code

func (*FilterKeywordPutConflict) String

func (o *FilterKeywordPutConflict) String() string

type FilterKeywordPutForbidden

type FilterKeywordPutForbidden struct {
}

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

forbidden to moved accounts

func NewFilterKeywordPutForbidden

func NewFilterKeywordPutForbidden() *FilterKeywordPutForbidden

NewFilterKeywordPutForbidden creates a FilterKeywordPutForbidden with default headers values

func (*FilterKeywordPutForbidden) Code

func (o *FilterKeywordPutForbidden) Code() int

Code gets the status code for the filter keyword put forbidden response

func (*FilterKeywordPutForbidden) Error

func (o *FilterKeywordPutForbidden) Error() string

func (*FilterKeywordPutForbidden) IsClientError

func (o *FilterKeywordPutForbidden) IsClientError() bool

IsClientError returns true when this filter keyword put forbidden response has a 4xx status code

func (*FilterKeywordPutForbidden) IsCode

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

IsCode returns true when this filter keyword put forbidden response a status code equal to that given

func (*FilterKeywordPutForbidden) IsRedirect

func (o *FilterKeywordPutForbidden) IsRedirect() bool

IsRedirect returns true when this filter keyword put forbidden response has a 3xx status code

func (*FilterKeywordPutForbidden) IsServerError

func (o *FilterKeywordPutForbidden) IsServerError() bool

IsServerError returns true when this filter keyword put forbidden response has a 5xx status code

func (*FilterKeywordPutForbidden) IsSuccess

func (o *FilterKeywordPutForbidden) IsSuccess() bool

IsSuccess returns true when this filter keyword put forbidden response has a 2xx status code

func (*FilterKeywordPutForbidden) String

func (o *FilterKeywordPutForbidden) String() string

type FilterKeywordPutInternalServerError

type FilterKeywordPutInternalServerError struct {
}

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

internal server error

func NewFilterKeywordPutInternalServerError

func NewFilterKeywordPutInternalServerError() *FilterKeywordPutInternalServerError

NewFilterKeywordPutInternalServerError creates a FilterKeywordPutInternalServerError with default headers values

func (*FilterKeywordPutInternalServerError) Code

Code gets the status code for the filter keyword put internal server error response

func (*FilterKeywordPutInternalServerError) Error

func (*FilterKeywordPutInternalServerError) IsClientError

func (o *FilterKeywordPutInternalServerError) IsClientError() bool

IsClientError returns true when this filter keyword put internal server error response has a 4xx status code

func (*FilterKeywordPutInternalServerError) IsCode

IsCode returns true when this filter keyword put internal server error response a status code equal to that given

func (*FilterKeywordPutInternalServerError) IsRedirect

func (o *FilterKeywordPutInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter keyword put internal server error response has a 3xx status code

func (*FilterKeywordPutInternalServerError) IsServerError

func (o *FilterKeywordPutInternalServerError) IsServerError() bool

IsServerError returns true when this filter keyword put internal server error response has a 5xx status code

func (*FilterKeywordPutInternalServerError) IsSuccess

IsSuccess returns true when this filter keyword put internal server error response has a 2xx status code

func (*FilterKeywordPutInternalServerError) String

type FilterKeywordPutNotAcceptable

type FilterKeywordPutNotAcceptable struct {
}

FilterKeywordPutNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterKeywordPutNotAcceptable

func NewFilterKeywordPutNotAcceptable() *FilterKeywordPutNotAcceptable

NewFilterKeywordPutNotAcceptable creates a FilterKeywordPutNotAcceptable with default headers values

func (*FilterKeywordPutNotAcceptable) Code

Code gets the status code for the filter keyword put not acceptable response

func (*FilterKeywordPutNotAcceptable) Error

func (*FilterKeywordPutNotAcceptable) IsClientError

func (o *FilterKeywordPutNotAcceptable) IsClientError() bool

IsClientError returns true when this filter keyword put not acceptable response has a 4xx status code

func (*FilterKeywordPutNotAcceptable) IsCode

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

IsCode returns true when this filter keyword put not acceptable response a status code equal to that given

func (*FilterKeywordPutNotAcceptable) IsRedirect

func (o *FilterKeywordPutNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter keyword put not acceptable response has a 3xx status code

func (*FilterKeywordPutNotAcceptable) IsServerError

func (o *FilterKeywordPutNotAcceptable) IsServerError() bool

IsServerError returns true when this filter keyword put not acceptable response has a 5xx status code

func (*FilterKeywordPutNotAcceptable) IsSuccess

func (o *FilterKeywordPutNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter keyword put not acceptable response has a 2xx status code

func (*FilterKeywordPutNotAcceptable) String

type FilterKeywordPutNotFound

type FilterKeywordPutNotFound struct {
}

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

not found

func NewFilterKeywordPutNotFound

func NewFilterKeywordPutNotFound() *FilterKeywordPutNotFound

NewFilterKeywordPutNotFound creates a FilterKeywordPutNotFound with default headers values

func (*FilterKeywordPutNotFound) Code

func (o *FilterKeywordPutNotFound) Code() int

Code gets the status code for the filter keyword put not found response

func (*FilterKeywordPutNotFound) Error

func (o *FilterKeywordPutNotFound) Error() string

func (*FilterKeywordPutNotFound) IsClientError

func (o *FilterKeywordPutNotFound) IsClientError() bool

IsClientError returns true when this filter keyword put not found response has a 4xx status code

func (*FilterKeywordPutNotFound) IsCode

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

IsCode returns true when this filter keyword put not found response a status code equal to that given

func (*FilterKeywordPutNotFound) IsRedirect

func (o *FilterKeywordPutNotFound) IsRedirect() bool

IsRedirect returns true when this filter keyword put not found response has a 3xx status code

func (*FilterKeywordPutNotFound) IsServerError

func (o *FilterKeywordPutNotFound) IsServerError() bool

IsServerError returns true when this filter keyword put not found response has a 5xx status code

func (*FilterKeywordPutNotFound) IsSuccess

func (o *FilterKeywordPutNotFound) IsSuccess() bool

IsSuccess returns true when this filter keyword put not found response has a 2xx status code

func (*FilterKeywordPutNotFound) String

func (o *FilterKeywordPutNotFound) String() string

type FilterKeywordPutOK

type FilterKeywordPutOK struct {
	Payload *models.FilterKeyword
}

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

Updated filter keyword.

func NewFilterKeywordPutOK

func NewFilterKeywordPutOK() *FilterKeywordPutOK

NewFilterKeywordPutOK creates a FilterKeywordPutOK with default headers values

func (*FilterKeywordPutOK) Code

func (o *FilterKeywordPutOK) Code() int

Code gets the status code for the filter keyword put o k response

func (*FilterKeywordPutOK) Error

func (o *FilterKeywordPutOK) Error() string

func (*FilterKeywordPutOK) GetPayload

func (o *FilterKeywordPutOK) GetPayload() *models.FilterKeyword

func (*FilterKeywordPutOK) IsClientError

func (o *FilterKeywordPutOK) IsClientError() bool

IsClientError returns true when this filter keyword put o k response has a 4xx status code

func (*FilterKeywordPutOK) IsCode

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

IsCode returns true when this filter keyword put o k response a status code equal to that given

func (*FilterKeywordPutOK) IsRedirect

func (o *FilterKeywordPutOK) IsRedirect() bool

IsRedirect returns true when this filter keyword put o k response has a 3xx status code

func (*FilterKeywordPutOK) IsServerError

func (o *FilterKeywordPutOK) IsServerError() bool

IsServerError returns true when this filter keyword put o k response has a 5xx status code

func (*FilterKeywordPutOK) IsSuccess

func (o *FilterKeywordPutOK) IsSuccess() bool

IsSuccess returns true when this filter keyword put o k response has a 2xx status code

func (*FilterKeywordPutOK) String

func (o *FilterKeywordPutOK) String() string

type FilterKeywordPutParams

type FilterKeywordPutParams struct {

	/* ID.

	   ID of the filter keyword to update.
	*/
	ID string

	/* Keyword.

	     The text to be filtered

	Sample: fnord
	*/
	Keyword string

	/* WholeWord.

	     Should the filter consider word boundaries?

	Sample: true
	*/
	WholeWord *bool

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

FilterKeywordPutParams contains all the parameters to send to the API endpoint

for the filter keyword put operation.

Typically these are written to a http.Request.

func NewFilterKeywordPutParams

func NewFilterKeywordPutParams() *FilterKeywordPutParams

NewFilterKeywordPutParams creates a new FilterKeywordPutParams 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 NewFilterKeywordPutParamsWithContext

func NewFilterKeywordPutParamsWithContext(ctx context.Context) *FilterKeywordPutParams

NewFilterKeywordPutParamsWithContext creates a new FilterKeywordPutParams object with the ability to set a context for a request.

func NewFilterKeywordPutParamsWithHTTPClient

func NewFilterKeywordPutParamsWithHTTPClient(client *http.Client) *FilterKeywordPutParams

NewFilterKeywordPutParamsWithHTTPClient creates a new FilterKeywordPutParams object with the ability to set a custom HTTPClient for a request.

func NewFilterKeywordPutParamsWithTimeout

func NewFilterKeywordPutParamsWithTimeout(timeout time.Duration) *FilterKeywordPutParams

NewFilterKeywordPutParamsWithTimeout creates a new FilterKeywordPutParams object with the ability to set a timeout on a request.

func (*FilterKeywordPutParams) SetContext

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

SetContext adds the context to the filter keyword put params

func (*FilterKeywordPutParams) SetDefaults

func (o *FilterKeywordPutParams) SetDefaults()

SetDefaults hydrates default values in the filter keyword put params (not the query body).

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

func (*FilterKeywordPutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter keyword put params

func (*FilterKeywordPutParams) SetID

func (o *FilterKeywordPutParams) SetID(id string)

SetID adds the id to the filter keyword put params

func (*FilterKeywordPutParams) SetKeyword

func (o *FilterKeywordPutParams) SetKeyword(keyword string)

SetKeyword adds the keyword to the filter keyword put params

func (*FilterKeywordPutParams) SetTimeout

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

SetTimeout adds the timeout to the filter keyword put params

func (*FilterKeywordPutParams) SetWholeWord

func (o *FilterKeywordPutParams) SetWholeWord(wholeWord *bool)

SetWholeWord adds the wholeWord to the filter keyword put params

func (*FilterKeywordPutParams) WithContext

WithContext adds the context to the filter keyword put params

func (*FilterKeywordPutParams) WithDefaults

WithDefaults hydrates default values in the filter keyword put params (not the query body).

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

func (*FilterKeywordPutParams) WithHTTPClient

func (o *FilterKeywordPutParams) WithHTTPClient(client *http.Client) *FilterKeywordPutParams

WithHTTPClient adds the HTTPClient to the filter keyword put params

func (*FilterKeywordPutParams) WithID

WithID adds the id to the filter keyword put params

func (*FilterKeywordPutParams) WithKeyword

func (o *FilterKeywordPutParams) WithKeyword(keyword string) *FilterKeywordPutParams

WithKeyword adds the keyword to the filter keyword put params

func (*FilterKeywordPutParams) WithTimeout

WithTimeout adds the timeout to the filter keyword put params

func (*FilterKeywordPutParams) WithWholeWord

func (o *FilterKeywordPutParams) WithWholeWord(wholeWord *bool) *FilterKeywordPutParams

WithWholeWord adds the wholeWord to the filter keyword put params

func (*FilterKeywordPutParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterKeywordPutReader

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

FilterKeywordPutReader is a Reader for the FilterKeywordPut structure.

func (*FilterKeywordPutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterKeywordPutUnauthorized

type FilterKeywordPutUnauthorized struct {
}

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

unauthorized

func NewFilterKeywordPutUnauthorized

func NewFilterKeywordPutUnauthorized() *FilterKeywordPutUnauthorized

NewFilterKeywordPutUnauthorized creates a FilterKeywordPutUnauthorized with default headers values

func (*FilterKeywordPutUnauthorized) Code

Code gets the status code for the filter keyword put unauthorized response

func (*FilterKeywordPutUnauthorized) Error

func (*FilterKeywordPutUnauthorized) IsClientError

func (o *FilterKeywordPutUnauthorized) IsClientError() bool

IsClientError returns true when this filter keyword put unauthorized response has a 4xx status code

func (*FilterKeywordPutUnauthorized) IsCode

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

IsCode returns true when this filter keyword put unauthorized response a status code equal to that given

func (*FilterKeywordPutUnauthorized) IsRedirect

func (o *FilterKeywordPutUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter keyword put unauthorized response has a 3xx status code

func (*FilterKeywordPutUnauthorized) IsServerError

func (o *FilterKeywordPutUnauthorized) IsServerError() bool

IsServerError returns true when this filter keyword put unauthorized response has a 5xx status code

func (*FilterKeywordPutUnauthorized) IsSuccess

func (o *FilterKeywordPutUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter keyword put unauthorized response has a 2xx status code

func (*FilterKeywordPutUnauthorized) String

type FilterKeywordPutUnprocessableEntity

type FilterKeywordPutUnprocessableEntity struct {
}

FilterKeywordPutUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterKeywordPutUnprocessableEntity

func NewFilterKeywordPutUnprocessableEntity() *FilterKeywordPutUnprocessableEntity

NewFilterKeywordPutUnprocessableEntity creates a FilterKeywordPutUnprocessableEntity with default headers values

func (*FilterKeywordPutUnprocessableEntity) Code

Code gets the status code for the filter keyword put unprocessable entity response

func (*FilterKeywordPutUnprocessableEntity) Error

func (*FilterKeywordPutUnprocessableEntity) IsClientError

func (o *FilterKeywordPutUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter keyword put unprocessable entity response has a 4xx status code

func (*FilterKeywordPutUnprocessableEntity) IsCode

IsCode returns true when this filter keyword put unprocessable entity response a status code equal to that given

func (*FilterKeywordPutUnprocessableEntity) IsRedirect

func (o *FilterKeywordPutUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter keyword put unprocessable entity response has a 3xx status code

func (*FilterKeywordPutUnprocessableEntity) IsServerError

func (o *FilterKeywordPutUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter keyword put unprocessable entity response has a 5xx status code

func (*FilterKeywordPutUnprocessableEntity) IsSuccess

IsSuccess returns true when this filter keyword put unprocessable entity response has a 2xx status code

func (*FilterKeywordPutUnprocessableEntity) String

type FilterKeywordsGetBadRequest

type FilterKeywordsGetBadRequest struct {
}

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

bad request

func NewFilterKeywordsGetBadRequest

func NewFilterKeywordsGetBadRequest() *FilterKeywordsGetBadRequest

NewFilterKeywordsGetBadRequest creates a FilterKeywordsGetBadRequest with default headers values

func (*FilterKeywordsGetBadRequest) Code

func (o *FilterKeywordsGetBadRequest) Code() int

Code gets the status code for the filter keywords get bad request response

func (*FilterKeywordsGetBadRequest) Error

func (*FilterKeywordsGetBadRequest) IsClientError

func (o *FilterKeywordsGetBadRequest) IsClientError() bool

IsClientError returns true when this filter keywords get bad request response has a 4xx status code

func (*FilterKeywordsGetBadRequest) IsCode

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

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

func (*FilterKeywordsGetBadRequest) IsRedirect

func (o *FilterKeywordsGetBadRequest) IsRedirect() bool

IsRedirect returns true when this filter keywords get bad request response has a 3xx status code

func (*FilterKeywordsGetBadRequest) IsServerError

func (o *FilterKeywordsGetBadRequest) IsServerError() bool

IsServerError returns true when this filter keywords get bad request response has a 5xx status code

func (*FilterKeywordsGetBadRequest) IsSuccess

func (o *FilterKeywordsGetBadRequest) IsSuccess() bool

IsSuccess returns true when this filter keywords get bad request response has a 2xx status code

func (*FilterKeywordsGetBadRequest) String

func (o *FilterKeywordsGetBadRequest) String() string

type FilterKeywordsGetInternalServerError

type FilterKeywordsGetInternalServerError struct {
}

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

internal server error

func NewFilterKeywordsGetInternalServerError

func NewFilterKeywordsGetInternalServerError() *FilterKeywordsGetInternalServerError

NewFilterKeywordsGetInternalServerError creates a FilterKeywordsGetInternalServerError with default headers values

func (*FilterKeywordsGetInternalServerError) Code

Code gets the status code for the filter keywords get internal server error response

func (*FilterKeywordsGetInternalServerError) Error

func (*FilterKeywordsGetInternalServerError) IsClientError

func (o *FilterKeywordsGetInternalServerError) IsClientError() bool

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

func (*FilterKeywordsGetInternalServerError) IsCode

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

func (*FilterKeywordsGetInternalServerError) IsRedirect

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

func (*FilterKeywordsGetInternalServerError) IsServerError

func (o *FilterKeywordsGetInternalServerError) IsServerError() bool

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

func (*FilterKeywordsGetInternalServerError) IsSuccess

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

func (*FilterKeywordsGetInternalServerError) String

type FilterKeywordsGetNotAcceptable

type FilterKeywordsGetNotAcceptable struct {
}

FilterKeywordsGetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterKeywordsGetNotAcceptable

func NewFilterKeywordsGetNotAcceptable() *FilterKeywordsGetNotAcceptable

NewFilterKeywordsGetNotAcceptable creates a FilterKeywordsGetNotAcceptable with default headers values

func (*FilterKeywordsGetNotAcceptable) Code

Code gets the status code for the filter keywords get not acceptable response

func (*FilterKeywordsGetNotAcceptable) Error

func (*FilterKeywordsGetNotAcceptable) IsClientError

func (o *FilterKeywordsGetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter keywords get not acceptable response has a 4xx status code

func (*FilterKeywordsGetNotAcceptable) IsCode

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

IsCode returns true when this filter keywords get not acceptable response a status code equal to that given

func (*FilterKeywordsGetNotAcceptable) IsRedirect

func (o *FilterKeywordsGetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter keywords get not acceptable response has a 3xx status code

func (*FilterKeywordsGetNotAcceptable) IsServerError

func (o *FilterKeywordsGetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter keywords get not acceptable response has a 5xx status code

func (*FilterKeywordsGetNotAcceptable) IsSuccess

func (o *FilterKeywordsGetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter keywords get not acceptable response has a 2xx status code

func (*FilterKeywordsGetNotAcceptable) String

type FilterKeywordsGetNotFound

type FilterKeywordsGetNotFound struct {
}

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

not found

func NewFilterKeywordsGetNotFound

func NewFilterKeywordsGetNotFound() *FilterKeywordsGetNotFound

NewFilterKeywordsGetNotFound creates a FilterKeywordsGetNotFound with default headers values

func (*FilterKeywordsGetNotFound) Code

func (o *FilterKeywordsGetNotFound) Code() int

Code gets the status code for the filter keywords get not found response

func (*FilterKeywordsGetNotFound) Error

func (o *FilterKeywordsGetNotFound) Error() string

func (*FilterKeywordsGetNotFound) IsClientError

func (o *FilterKeywordsGetNotFound) IsClientError() bool

IsClientError returns true when this filter keywords get not found response has a 4xx status code

func (*FilterKeywordsGetNotFound) IsCode

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

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

func (*FilterKeywordsGetNotFound) IsRedirect

func (o *FilterKeywordsGetNotFound) IsRedirect() bool

IsRedirect returns true when this filter keywords get not found response has a 3xx status code

func (*FilterKeywordsGetNotFound) IsServerError

func (o *FilterKeywordsGetNotFound) IsServerError() bool

IsServerError returns true when this filter keywords get not found response has a 5xx status code

func (*FilterKeywordsGetNotFound) IsSuccess

func (o *FilterKeywordsGetNotFound) IsSuccess() bool

IsSuccess returns true when this filter keywords get not found response has a 2xx status code

func (*FilterKeywordsGetNotFound) String

func (o *FilterKeywordsGetNotFound) String() string

type FilterKeywordsGetOK

type FilterKeywordsGetOK struct {
	Payload []*models.FilterKeyword
}

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

Requested filter keywords.

func NewFilterKeywordsGetOK

func NewFilterKeywordsGetOK() *FilterKeywordsGetOK

NewFilterKeywordsGetOK creates a FilterKeywordsGetOK with default headers values

func (*FilterKeywordsGetOK) Code

func (o *FilterKeywordsGetOK) Code() int

Code gets the status code for the filter keywords get o k response

func (*FilterKeywordsGetOK) Error

func (o *FilterKeywordsGetOK) Error() string

func (*FilterKeywordsGetOK) GetPayload

func (o *FilterKeywordsGetOK) GetPayload() []*models.FilterKeyword

func (*FilterKeywordsGetOK) IsClientError

func (o *FilterKeywordsGetOK) IsClientError() bool

IsClientError returns true when this filter keywords get o k response has a 4xx status code

func (*FilterKeywordsGetOK) IsCode

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

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

func (*FilterKeywordsGetOK) IsRedirect

func (o *FilterKeywordsGetOK) IsRedirect() bool

IsRedirect returns true when this filter keywords get o k response has a 3xx status code

func (*FilterKeywordsGetOK) IsServerError

func (o *FilterKeywordsGetOK) IsServerError() bool

IsServerError returns true when this filter keywords get o k response has a 5xx status code

func (*FilterKeywordsGetOK) IsSuccess

func (o *FilterKeywordsGetOK) IsSuccess() bool

IsSuccess returns true when this filter keywords get o k response has a 2xx status code

func (*FilterKeywordsGetOK) String

func (o *FilterKeywordsGetOK) String() string

type FilterKeywordsGetParams

type FilterKeywordsGetParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterKeywordsGetParams contains all the parameters to send to the API endpoint

for the filter keywords get operation.

Typically these are written to a http.Request.

func NewFilterKeywordsGetParams

func NewFilterKeywordsGetParams() *FilterKeywordsGetParams

NewFilterKeywordsGetParams creates a new FilterKeywordsGetParams 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 NewFilterKeywordsGetParamsWithContext

func NewFilterKeywordsGetParamsWithContext(ctx context.Context) *FilterKeywordsGetParams

NewFilterKeywordsGetParamsWithContext creates a new FilterKeywordsGetParams object with the ability to set a context for a request.

func NewFilterKeywordsGetParamsWithHTTPClient

func NewFilterKeywordsGetParamsWithHTTPClient(client *http.Client) *FilterKeywordsGetParams

NewFilterKeywordsGetParamsWithHTTPClient creates a new FilterKeywordsGetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterKeywordsGetParamsWithTimeout

func NewFilterKeywordsGetParamsWithTimeout(timeout time.Duration) *FilterKeywordsGetParams

NewFilterKeywordsGetParamsWithTimeout creates a new FilterKeywordsGetParams object with the ability to set a timeout on a request.

func (*FilterKeywordsGetParams) SetContext

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

SetContext adds the context to the filter keywords get params

func (*FilterKeywordsGetParams) SetDefaults

func (o *FilterKeywordsGetParams) SetDefaults()

SetDefaults hydrates default values in the filter keywords get params (not the query body).

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

func (*FilterKeywordsGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter keywords get params

func (*FilterKeywordsGetParams) SetID

func (o *FilterKeywordsGetParams) SetID(id string)

SetID adds the id to the filter keywords get params

func (*FilterKeywordsGetParams) SetTimeout

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

SetTimeout adds the timeout to the filter keywords get params

func (*FilterKeywordsGetParams) WithContext

WithContext adds the context to the filter keywords get params

func (*FilterKeywordsGetParams) WithDefaults

WithDefaults hydrates default values in the filter keywords get params (not the query body).

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

func (*FilterKeywordsGetParams) WithHTTPClient

func (o *FilterKeywordsGetParams) WithHTTPClient(client *http.Client) *FilterKeywordsGetParams

WithHTTPClient adds the HTTPClient to the filter keywords get params

func (*FilterKeywordsGetParams) WithID

WithID adds the id to the filter keywords get params

func (*FilterKeywordsGetParams) WithTimeout

WithTimeout adds the timeout to the filter keywords get params

func (*FilterKeywordsGetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterKeywordsGetReader

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

FilterKeywordsGetReader is a Reader for the FilterKeywordsGet structure.

func (*FilterKeywordsGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterKeywordsGetUnauthorized

type FilterKeywordsGetUnauthorized struct {
}

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

unauthorized

func NewFilterKeywordsGetUnauthorized

func NewFilterKeywordsGetUnauthorized() *FilterKeywordsGetUnauthorized

NewFilterKeywordsGetUnauthorized creates a FilterKeywordsGetUnauthorized with default headers values

func (*FilterKeywordsGetUnauthorized) Code

Code gets the status code for the filter keywords get unauthorized response

func (*FilterKeywordsGetUnauthorized) Error

func (*FilterKeywordsGetUnauthorized) IsClientError

func (o *FilterKeywordsGetUnauthorized) IsClientError() bool

IsClientError returns true when this filter keywords get unauthorized response has a 4xx status code

func (*FilterKeywordsGetUnauthorized) IsCode

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

IsCode returns true when this filter keywords get unauthorized response a status code equal to that given

func (*FilterKeywordsGetUnauthorized) IsRedirect

func (o *FilterKeywordsGetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter keywords get unauthorized response has a 3xx status code

func (*FilterKeywordsGetUnauthorized) IsServerError

func (o *FilterKeywordsGetUnauthorized) IsServerError() bool

IsServerError returns true when this filter keywords get unauthorized response has a 5xx status code

func (*FilterKeywordsGetUnauthorized) IsSuccess

func (o *FilterKeywordsGetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter keywords get unauthorized response has a 2xx status code

func (*FilterKeywordsGetUnauthorized) String

type FilterStatusDeleteBadRequest

type FilterStatusDeleteBadRequest struct {
}

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

bad request

func NewFilterStatusDeleteBadRequest

func NewFilterStatusDeleteBadRequest() *FilterStatusDeleteBadRequest

NewFilterStatusDeleteBadRequest creates a FilterStatusDeleteBadRequest with default headers values

func (*FilterStatusDeleteBadRequest) Code

Code gets the status code for the filter status delete bad request response

func (*FilterStatusDeleteBadRequest) Error

func (*FilterStatusDeleteBadRequest) IsClientError

func (o *FilterStatusDeleteBadRequest) IsClientError() bool

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

func (*FilterStatusDeleteBadRequest) IsCode

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

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

func (*FilterStatusDeleteBadRequest) IsRedirect

func (o *FilterStatusDeleteBadRequest) IsRedirect() bool

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

func (*FilterStatusDeleteBadRequest) IsServerError

func (o *FilterStatusDeleteBadRequest) IsServerError() bool

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

func (*FilterStatusDeleteBadRequest) IsSuccess

func (o *FilterStatusDeleteBadRequest) IsSuccess() bool

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

func (*FilterStatusDeleteBadRequest) String

type FilterStatusDeleteInternalServerError

type FilterStatusDeleteInternalServerError struct {
}

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

internal server error

func NewFilterStatusDeleteInternalServerError

func NewFilterStatusDeleteInternalServerError() *FilterStatusDeleteInternalServerError

NewFilterStatusDeleteInternalServerError creates a FilterStatusDeleteInternalServerError with default headers values

func (*FilterStatusDeleteInternalServerError) Code

Code gets the status code for the filter status delete internal server error response

func (*FilterStatusDeleteInternalServerError) Error

func (*FilterStatusDeleteInternalServerError) IsClientError

func (o *FilterStatusDeleteInternalServerError) IsClientError() bool

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

func (*FilterStatusDeleteInternalServerError) IsCode

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

func (*FilterStatusDeleteInternalServerError) IsRedirect

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

func (*FilterStatusDeleteInternalServerError) IsServerError

func (o *FilterStatusDeleteInternalServerError) IsServerError() bool

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

func (*FilterStatusDeleteInternalServerError) IsSuccess

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

func (*FilterStatusDeleteInternalServerError) String

type FilterStatusDeleteNotAcceptable

type FilterStatusDeleteNotAcceptable struct {
}

FilterStatusDeleteNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterStatusDeleteNotAcceptable

func NewFilterStatusDeleteNotAcceptable() *FilterStatusDeleteNotAcceptable

NewFilterStatusDeleteNotAcceptable creates a FilterStatusDeleteNotAcceptable with default headers values

func (*FilterStatusDeleteNotAcceptable) Code

Code gets the status code for the filter status delete not acceptable response

func (*FilterStatusDeleteNotAcceptable) Error

func (*FilterStatusDeleteNotAcceptable) IsClientError

func (o *FilterStatusDeleteNotAcceptable) IsClientError() bool

IsClientError returns true when this filter status delete not acceptable response has a 4xx status code

func (*FilterStatusDeleteNotAcceptable) IsCode

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

IsCode returns true when this filter status delete not acceptable response a status code equal to that given

func (*FilterStatusDeleteNotAcceptable) IsRedirect

func (o *FilterStatusDeleteNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter status delete not acceptable response has a 3xx status code

func (*FilterStatusDeleteNotAcceptable) IsServerError

func (o *FilterStatusDeleteNotAcceptable) IsServerError() bool

IsServerError returns true when this filter status delete not acceptable response has a 5xx status code

func (*FilterStatusDeleteNotAcceptable) IsSuccess

func (o *FilterStatusDeleteNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter status delete not acceptable response has a 2xx status code

func (*FilterStatusDeleteNotAcceptable) String

type FilterStatusDeleteNotFound

type FilterStatusDeleteNotFound struct {
}

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

not found

func NewFilterStatusDeleteNotFound

func NewFilterStatusDeleteNotFound() *FilterStatusDeleteNotFound

NewFilterStatusDeleteNotFound creates a FilterStatusDeleteNotFound with default headers values

func (*FilterStatusDeleteNotFound) Code

func (o *FilterStatusDeleteNotFound) Code() int

Code gets the status code for the filter status delete not found response

func (*FilterStatusDeleteNotFound) Error

func (*FilterStatusDeleteNotFound) IsClientError

func (o *FilterStatusDeleteNotFound) IsClientError() bool

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

func (*FilterStatusDeleteNotFound) IsCode

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

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

func (*FilterStatusDeleteNotFound) IsRedirect

func (o *FilterStatusDeleteNotFound) IsRedirect() bool

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

func (*FilterStatusDeleteNotFound) IsServerError

func (o *FilterStatusDeleteNotFound) IsServerError() bool

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

func (*FilterStatusDeleteNotFound) IsSuccess

func (o *FilterStatusDeleteNotFound) IsSuccess() bool

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

func (*FilterStatusDeleteNotFound) String

func (o *FilterStatusDeleteNotFound) String() string

type FilterStatusDeleteOK

type FilterStatusDeleteOK struct {
}

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

filter status deleted

func NewFilterStatusDeleteOK

func NewFilterStatusDeleteOK() *FilterStatusDeleteOK

NewFilterStatusDeleteOK creates a FilterStatusDeleteOK with default headers values

func (*FilterStatusDeleteOK) Code

func (o *FilterStatusDeleteOK) Code() int

Code gets the status code for the filter status delete o k response

func (*FilterStatusDeleteOK) Error

func (o *FilterStatusDeleteOK) Error() string

func (*FilterStatusDeleteOK) IsClientError

func (o *FilterStatusDeleteOK) IsClientError() bool

IsClientError returns true when this filter status delete o k response has a 4xx status code

func (*FilterStatusDeleteOK) IsCode

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

IsCode returns true when this filter status delete o k response a status code equal to that given

func (*FilterStatusDeleteOK) IsRedirect

func (o *FilterStatusDeleteOK) IsRedirect() bool

IsRedirect returns true when this filter status delete o k response has a 3xx status code

func (*FilterStatusDeleteOK) IsServerError

func (o *FilterStatusDeleteOK) IsServerError() bool

IsServerError returns true when this filter status delete o k response has a 5xx status code

func (*FilterStatusDeleteOK) IsSuccess

func (o *FilterStatusDeleteOK) IsSuccess() bool

IsSuccess returns true when this filter status delete o k response has a 2xx status code

func (*FilterStatusDeleteOK) String

func (o *FilterStatusDeleteOK) String() string

type FilterStatusDeleteParams

type FilterStatusDeleteParams struct {

	/* ID.

	   ID of the filter status
	*/
	ID string

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

FilterStatusDeleteParams contains all the parameters to send to the API endpoint

for the filter status delete operation.

Typically these are written to a http.Request.

func NewFilterStatusDeleteParams

func NewFilterStatusDeleteParams() *FilterStatusDeleteParams

NewFilterStatusDeleteParams creates a new FilterStatusDeleteParams 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 NewFilterStatusDeleteParamsWithContext

func NewFilterStatusDeleteParamsWithContext(ctx context.Context) *FilterStatusDeleteParams

NewFilterStatusDeleteParamsWithContext creates a new FilterStatusDeleteParams object with the ability to set a context for a request.

func NewFilterStatusDeleteParamsWithHTTPClient

func NewFilterStatusDeleteParamsWithHTTPClient(client *http.Client) *FilterStatusDeleteParams

NewFilterStatusDeleteParamsWithHTTPClient creates a new FilterStatusDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewFilterStatusDeleteParamsWithTimeout

func NewFilterStatusDeleteParamsWithTimeout(timeout time.Duration) *FilterStatusDeleteParams

NewFilterStatusDeleteParamsWithTimeout creates a new FilterStatusDeleteParams object with the ability to set a timeout on a request.

func (*FilterStatusDeleteParams) SetContext

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

SetContext adds the context to the filter status delete params

func (*FilterStatusDeleteParams) SetDefaults

func (o *FilterStatusDeleteParams) SetDefaults()

SetDefaults hydrates default values in the filter status delete params (not the query body).

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

func (*FilterStatusDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter status delete params

func (*FilterStatusDeleteParams) SetID

func (o *FilterStatusDeleteParams) SetID(id string)

SetID adds the id to the filter status delete params

func (*FilterStatusDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the filter status delete params

func (*FilterStatusDeleteParams) WithContext

WithContext adds the context to the filter status delete params

func (*FilterStatusDeleteParams) WithDefaults

WithDefaults hydrates default values in the filter status delete params (not the query body).

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

func (*FilterStatusDeleteParams) WithHTTPClient

func (o *FilterStatusDeleteParams) WithHTTPClient(client *http.Client) *FilterStatusDeleteParams

WithHTTPClient adds the HTTPClient to the filter status delete params

func (*FilterStatusDeleteParams) WithID

WithID adds the id to the filter status delete params

func (*FilterStatusDeleteParams) WithTimeout

WithTimeout adds the timeout to the filter status delete params

func (*FilterStatusDeleteParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterStatusDeleteReader

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

FilterStatusDeleteReader is a Reader for the FilterStatusDelete structure.

func (*FilterStatusDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterStatusDeleteUnauthorized

type FilterStatusDeleteUnauthorized struct {
}

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

unauthorized

func NewFilterStatusDeleteUnauthorized

func NewFilterStatusDeleteUnauthorized() *FilterStatusDeleteUnauthorized

NewFilterStatusDeleteUnauthorized creates a FilterStatusDeleteUnauthorized with default headers values

func (*FilterStatusDeleteUnauthorized) Code

Code gets the status code for the filter status delete unauthorized response

func (*FilterStatusDeleteUnauthorized) Error

func (*FilterStatusDeleteUnauthorized) IsClientError

func (o *FilterStatusDeleteUnauthorized) IsClientError() bool

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

func (*FilterStatusDeleteUnauthorized) IsCode

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

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

func (*FilterStatusDeleteUnauthorized) IsRedirect

func (o *FilterStatusDeleteUnauthorized) IsRedirect() bool

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

func (*FilterStatusDeleteUnauthorized) IsServerError

func (o *FilterStatusDeleteUnauthorized) IsServerError() bool

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

func (*FilterStatusDeleteUnauthorized) IsSuccess

func (o *FilterStatusDeleteUnauthorized) IsSuccess() bool

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

func (*FilterStatusDeleteUnauthorized) String

type FilterStatusGetBadRequest

type FilterStatusGetBadRequest struct {
}

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

bad request

func NewFilterStatusGetBadRequest

func NewFilterStatusGetBadRequest() *FilterStatusGetBadRequest

NewFilterStatusGetBadRequest creates a FilterStatusGetBadRequest with default headers values

func (*FilterStatusGetBadRequest) Code

func (o *FilterStatusGetBadRequest) Code() int

Code gets the status code for the filter status get bad request response

func (*FilterStatusGetBadRequest) Error

func (o *FilterStatusGetBadRequest) Error() string

func (*FilterStatusGetBadRequest) IsClientError

func (o *FilterStatusGetBadRequest) IsClientError() bool

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

func (*FilterStatusGetBadRequest) IsCode

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

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

func (*FilterStatusGetBadRequest) IsRedirect

func (o *FilterStatusGetBadRequest) IsRedirect() bool

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

func (*FilterStatusGetBadRequest) IsServerError

func (o *FilterStatusGetBadRequest) IsServerError() bool

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

func (*FilterStatusGetBadRequest) IsSuccess

func (o *FilterStatusGetBadRequest) IsSuccess() bool

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

func (*FilterStatusGetBadRequest) String

func (o *FilterStatusGetBadRequest) String() string

type FilterStatusGetInternalServerError

type FilterStatusGetInternalServerError struct {
}

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

internal server error

func NewFilterStatusGetInternalServerError

func NewFilterStatusGetInternalServerError() *FilterStatusGetInternalServerError

NewFilterStatusGetInternalServerError creates a FilterStatusGetInternalServerError with default headers values

func (*FilterStatusGetInternalServerError) Code

Code gets the status code for the filter status get internal server error response

func (*FilterStatusGetInternalServerError) Error

func (*FilterStatusGetInternalServerError) IsClientError

func (o *FilterStatusGetInternalServerError) IsClientError() bool

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

func (*FilterStatusGetInternalServerError) IsCode

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

func (*FilterStatusGetInternalServerError) IsRedirect

func (o *FilterStatusGetInternalServerError) IsRedirect() bool

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

func (*FilterStatusGetInternalServerError) IsServerError

func (o *FilterStatusGetInternalServerError) IsServerError() bool

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

func (*FilterStatusGetInternalServerError) IsSuccess

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

func (*FilterStatusGetInternalServerError) String

type FilterStatusGetNotAcceptable

type FilterStatusGetNotAcceptable struct {
}

FilterStatusGetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterStatusGetNotAcceptable

func NewFilterStatusGetNotAcceptable() *FilterStatusGetNotAcceptable

NewFilterStatusGetNotAcceptable creates a FilterStatusGetNotAcceptable with default headers values

func (*FilterStatusGetNotAcceptable) Code

Code gets the status code for the filter status get not acceptable response

func (*FilterStatusGetNotAcceptable) Error

func (*FilterStatusGetNotAcceptable) IsClientError

func (o *FilterStatusGetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter status get not acceptable response has a 4xx status code

func (*FilterStatusGetNotAcceptable) IsCode

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

IsCode returns true when this filter status get not acceptable response a status code equal to that given

func (*FilterStatusGetNotAcceptable) IsRedirect

func (o *FilterStatusGetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter status get not acceptable response has a 3xx status code

func (*FilterStatusGetNotAcceptable) IsServerError

func (o *FilterStatusGetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter status get not acceptable response has a 5xx status code

func (*FilterStatusGetNotAcceptable) IsSuccess

func (o *FilterStatusGetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter status get not acceptable response has a 2xx status code

func (*FilterStatusGetNotAcceptable) String

type FilterStatusGetNotFound

type FilterStatusGetNotFound struct {
}

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

not found

func NewFilterStatusGetNotFound

func NewFilterStatusGetNotFound() *FilterStatusGetNotFound

NewFilterStatusGetNotFound creates a FilterStatusGetNotFound with default headers values

func (*FilterStatusGetNotFound) Code

func (o *FilterStatusGetNotFound) Code() int

Code gets the status code for the filter status get not found response

func (*FilterStatusGetNotFound) Error

func (o *FilterStatusGetNotFound) Error() string

func (*FilterStatusGetNotFound) IsClientError

func (o *FilterStatusGetNotFound) IsClientError() bool

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

func (*FilterStatusGetNotFound) IsCode

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

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

func (*FilterStatusGetNotFound) IsRedirect

func (o *FilterStatusGetNotFound) IsRedirect() bool

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

func (*FilterStatusGetNotFound) IsServerError

func (o *FilterStatusGetNotFound) IsServerError() bool

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

func (*FilterStatusGetNotFound) IsSuccess

func (o *FilterStatusGetNotFound) IsSuccess() bool

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

func (*FilterStatusGetNotFound) String

func (o *FilterStatusGetNotFound) String() string

type FilterStatusGetOK

type FilterStatusGetOK struct {
	Payload *models.FilterStatus
}

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

Requested filter status.

func NewFilterStatusGetOK

func NewFilterStatusGetOK() *FilterStatusGetOK

NewFilterStatusGetOK creates a FilterStatusGetOK with default headers values

func (*FilterStatusGetOK) Code

func (o *FilterStatusGetOK) Code() int

Code gets the status code for the filter status get o k response

func (*FilterStatusGetOK) Error

func (o *FilterStatusGetOK) Error() string

func (*FilterStatusGetOK) GetPayload

func (o *FilterStatusGetOK) GetPayload() *models.FilterStatus

func (*FilterStatusGetOK) IsClientError

func (o *FilterStatusGetOK) IsClientError() bool

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

func (*FilterStatusGetOK) IsCode

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

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

func (*FilterStatusGetOK) IsRedirect

func (o *FilterStatusGetOK) IsRedirect() bool

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

func (*FilterStatusGetOK) IsServerError

func (o *FilterStatusGetOK) IsServerError() bool

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

func (*FilterStatusGetOK) IsSuccess

func (o *FilterStatusGetOK) IsSuccess() bool

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

func (*FilterStatusGetOK) String

func (o *FilterStatusGetOK) String() string

type FilterStatusGetParams

type FilterStatusGetParams struct {

	/* ID.

	   ID of the filter status
	*/
	ID string

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

FilterStatusGetParams contains all the parameters to send to the API endpoint

for the filter status get operation.

Typically these are written to a http.Request.

func NewFilterStatusGetParams

func NewFilterStatusGetParams() *FilterStatusGetParams

NewFilterStatusGetParams creates a new FilterStatusGetParams 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 NewFilterStatusGetParamsWithContext

func NewFilterStatusGetParamsWithContext(ctx context.Context) *FilterStatusGetParams

NewFilterStatusGetParamsWithContext creates a new FilterStatusGetParams object with the ability to set a context for a request.

func NewFilterStatusGetParamsWithHTTPClient

func NewFilterStatusGetParamsWithHTTPClient(client *http.Client) *FilterStatusGetParams

NewFilterStatusGetParamsWithHTTPClient creates a new FilterStatusGetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterStatusGetParamsWithTimeout

func NewFilterStatusGetParamsWithTimeout(timeout time.Duration) *FilterStatusGetParams

NewFilterStatusGetParamsWithTimeout creates a new FilterStatusGetParams object with the ability to set a timeout on a request.

func (*FilterStatusGetParams) SetContext

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

SetContext adds the context to the filter status get params

func (*FilterStatusGetParams) SetDefaults

func (o *FilterStatusGetParams) SetDefaults()

SetDefaults hydrates default values in the filter status get params (not the query body).

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

func (*FilterStatusGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter status get params

func (*FilterStatusGetParams) SetID

func (o *FilterStatusGetParams) SetID(id string)

SetID adds the id to the filter status get params

func (*FilterStatusGetParams) SetTimeout

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

SetTimeout adds the timeout to the filter status get params

func (*FilterStatusGetParams) WithContext

WithContext adds the context to the filter status get params

func (*FilterStatusGetParams) WithDefaults

func (o *FilterStatusGetParams) WithDefaults() *FilterStatusGetParams

WithDefaults hydrates default values in the filter status get params (not the query body).

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

func (*FilterStatusGetParams) WithHTTPClient

func (o *FilterStatusGetParams) WithHTTPClient(client *http.Client) *FilterStatusGetParams

WithHTTPClient adds the HTTPClient to the filter status get params

func (*FilterStatusGetParams) WithID

WithID adds the id to the filter status get params

func (*FilterStatusGetParams) WithTimeout

func (o *FilterStatusGetParams) WithTimeout(timeout time.Duration) *FilterStatusGetParams

WithTimeout adds the timeout to the filter status get params

func (*FilterStatusGetParams) WriteToRequest

func (o *FilterStatusGetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterStatusGetReader

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

FilterStatusGetReader is a Reader for the FilterStatusGet structure.

func (*FilterStatusGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterStatusGetUnauthorized

type FilterStatusGetUnauthorized struct {
}

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

unauthorized

func NewFilterStatusGetUnauthorized

func NewFilterStatusGetUnauthorized() *FilterStatusGetUnauthorized

NewFilterStatusGetUnauthorized creates a FilterStatusGetUnauthorized with default headers values

func (*FilterStatusGetUnauthorized) Code

func (o *FilterStatusGetUnauthorized) Code() int

Code gets the status code for the filter status get unauthorized response

func (*FilterStatusGetUnauthorized) Error

func (*FilterStatusGetUnauthorized) IsClientError

func (o *FilterStatusGetUnauthorized) IsClientError() bool

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

func (*FilterStatusGetUnauthorized) IsCode

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

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

func (*FilterStatusGetUnauthorized) IsRedirect

func (o *FilterStatusGetUnauthorized) IsRedirect() bool

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

func (*FilterStatusGetUnauthorized) IsServerError

func (o *FilterStatusGetUnauthorized) IsServerError() bool

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

func (*FilterStatusGetUnauthorized) IsSuccess

func (o *FilterStatusGetUnauthorized) IsSuccess() bool

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

func (*FilterStatusGetUnauthorized) String

func (o *FilterStatusGetUnauthorized) String() string

type FilterStatusPostBadRequest

type FilterStatusPostBadRequest struct {
}

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

bad request

func NewFilterStatusPostBadRequest

func NewFilterStatusPostBadRequest() *FilterStatusPostBadRequest

NewFilterStatusPostBadRequest creates a FilterStatusPostBadRequest with default headers values

func (*FilterStatusPostBadRequest) Code

func (o *FilterStatusPostBadRequest) Code() int

Code gets the status code for the filter status post bad request response

func (*FilterStatusPostBadRequest) Error

func (*FilterStatusPostBadRequest) IsClientError

func (o *FilterStatusPostBadRequest) IsClientError() bool

IsClientError returns true when this filter status post bad request response has a 4xx status code

func (*FilterStatusPostBadRequest) IsCode

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

IsCode returns true when this filter status post bad request response a status code equal to that given

func (*FilterStatusPostBadRequest) IsRedirect

func (o *FilterStatusPostBadRequest) IsRedirect() bool

IsRedirect returns true when this filter status post bad request response has a 3xx status code

func (*FilterStatusPostBadRequest) IsServerError

func (o *FilterStatusPostBadRequest) IsServerError() bool

IsServerError returns true when this filter status post bad request response has a 5xx status code

func (*FilterStatusPostBadRequest) IsSuccess

func (o *FilterStatusPostBadRequest) IsSuccess() bool

IsSuccess returns true when this filter status post bad request response has a 2xx status code

func (*FilterStatusPostBadRequest) String

func (o *FilterStatusPostBadRequest) String() string

type FilterStatusPostConflict

type FilterStatusPostConflict struct {
}

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

conflict (duplicate status)

func NewFilterStatusPostConflict

func NewFilterStatusPostConflict() *FilterStatusPostConflict

NewFilterStatusPostConflict creates a FilterStatusPostConflict with default headers values

func (*FilterStatusPostConflict) Code

func (o *FilterStatusPostConflict) Code() int

Code gets the status code for the filter status post conflict response

func (*FilterStatusPostConflict) Error

func (o *FilterStatusPostConflict) Error() string

func (*FilterStatusPostConflict) IsClientError

func (o *FilterStatusPostConflict) IsClientError() bool

IsClientError returns true when this filter status post conflict response has a 4xx status code

func (*FilterStatusPostConflict) IsCode

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

IsCode returns true when this filter status post conflict response a status code equal to that given

func (*FilterStatusPostConflict) IsRedirect

func (o *FilterStatusPostConflict) IsRedirect() bool

IsRedirect returns true when this filter status post conflict response has a 3xx status code

func (*FilterStatusPostConflict) IsServerError

func (o *FilterStatusPostConflict) IsServerError() bool

IsServerError returns true when this filter status post conflict response has a 5xx status code

func (*FilterStatusPostConflict) IsSuccess

func (o *FilterStatusPostConflict) IsSuccess() bool

IsSuccess returns true when this filter status post conflict response has a 2xx status code

func (*FilterStatusPostConflict) String

func (o *FilterStatusPostConflict) String() string

type FilterStatusPostForbidden

type FilterStatusPostForbidden struct {
}

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

forbidden to moved accounts

func NewFilterStatusPostForbidden

func NewFilterStatusPostForbidden() *FilterStatusPostForbidden

NewFilterStatusPostForbidden creates a FilterStatusPostForbidden with default headers values

func (*FilterStatusPostForbidden) Code

func (o *FilterStatusPostForbidden) Code() int

Code gets the status code for the filter status post forbidden response

func (*FilterStatusPostForbidden) Error

func (o *FilterStatusPostForbidden) Error() string

func (*FilterStatusPostForbidden) IsClientError

func (o *FilterStatusPostForbidden) IsClientError() bool

IsClientError returns true when this filter status post forbidden response has a 4xx status code

func (*FilterStatusPostForbidden) IsCode

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

IsCode returns true when this filter status post forbidden response a status code equal to that given

func (*FilterStatusPostForbidden) IsRedirect

func (o *FilterStatusPostForbidden) IsRedirect() bool

IsRedirect returns true when this filter status post forbidden response has a 3xx status code

func (*FilterStatusPostForbidden) IsServerError

func (o *FilterStatusPostForbidden) IsServerError() bool

IsServerError returns true when this filter status post forbidden response has a 5xx status code

func (*FilterStatusPostForbidden) IsSuccess

func (o *FilterStatusPostForbidden) IsSuccess() bool

IsSuccess returns true when this filter status post forbidden response has a 2xx status code

func (*FilterStatusPostForbidden) String

func (o *FilterStatusPostForbidden) String() string

type FilterStatusPostInternalServerError

type FilterStatusPostInternalServerError struct {
}

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

internal server error

func NewFilterStatusPostInternalServerError

func NewFilterStatusPostInternalServerError() *FilterStatusPostInternalServerError

NewFilterStatusPostInternalServerError creates a FilterStatusPostInternalServerError with default headers values

func (*FilterStatusPostInternalServerError) Code

Code gets the status code for the filter status post internal server error response

func (*FilterStatusPostInternalServerError) Error

func (*FilterStatusPostInternalServerError) IsClientError

func (o *FilterStatusPostInternalServerError) IsClientError() bool

IsClientError returns true when this filter status post internal server error response has a 4xx status code

func (*FilterStatusPostInternalServerError) IsCode

IsCode returns true when this filter status post internal server error response a status code equal to that given

func (*FilterStatusPostInternalServerError) IsRedirect

func (o *FilterStatusPostInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter status post internal server error response has a 3xx status code

func (*FilterStatusPostInternalServerError) IsServerError

func (o *FilterStatusPostInternalServerError) IsServerError() bool

IsServerError returns true when this filter status post internal server error response has a 5xx status code

func (*FilterStatusPostInternalServerError) IsSuccess

IsSuccess returns true when this filter status post internal server error response has a 2xx status code

func (*FilterStatusPostInternalServerError) String

type FilterStatusPostNotAcceptable

type FilterStatusPostNotAcceptable struct {
}

FilterStatusPostNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterStatusPostNotAcceptable

func NewFilterStatusPostNotAcceptable() *FilterStatusPostNotAcceptable

NewFilterStatusPostNotAcceptable creates a FilterStatusPostNotAcceptable with default headers values

func (*FilterStatusPostNotAcceptable) Code

Code gets the status code for the filter status post not acceptable response

func (*FilterStatusPostNotAcceptable) Error

func (*FilterStatusPostNotAcceptable) IsClientError

func (o *FilterStatusPostNotAcceptable) IsClientError() bool

IsClientError returns true when this filter status post not acceptable response has a 4xx status code

func (*FilterStatusPostNotAcceptable) IsCode

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

IsCode returns true when this filter status post not acceptable response a status code equal to that given

func (*FilterStatusPostNotAcceptable) IsRedirect

func (o *FilterStatusPostNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter status post not acceptable response has a 3xx status code

func (*FilterStatusPostNotAcceptable) IsServerError

func (o *FilterStatusPostNotAcceptable) IsServerError() bool

IsServerError returns true when this filter status post not acceptable response has a 5xx status code

func (*FilterStatusPostNotAcceptable) IsSuccess

func (o *FilterStatusPostNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter status post not acceptable response has a 2xx status code

func (*FilterStatusPostNotAcceptable) String

type FilterStatusPostNotFound

type FilterStatusPostNotFound struct {
}

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

not found

func NewFilterStatusPostNotFound

func NewFilterStatusPostNotFound() *FilterStatusPostNotFound

NewFilterStatusPostNotFound creates a FilterStatusPostNotFound with default headers values

func (*FilterStatusPostNotFound) Code

func (o *FilterStatusPostNotFound) Code() int

Code gets the status code for the filter status post not found response

func (*FilterStatusPostNotFound) Error

func (o *FilterStatusPostNotFound) Error() string

func (*FilterStatusPostNotFound) IsClientError

func (o *FilterStatusPostNotFound) IsClientError() bool

IsClientError returns true when this filter status post not found response has a 4xx status code

func (*FilterStatusPostNotFound) IsCode

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

IsCode returns true when this filter status post not found response a status code equal to that given

func (*FilterStatusPostNotFound) IsRedirect

func (o *FilterStatusPostNotFound) IsRedirect() bool

IsRedirect returns true when this filter status post not found response has a 3xx status code

func (*FilterStatusPostNotFound) IsServerError

func (o *FilterStatusPostNotFound) IsServerError() bool

IsServerError returns true when this filter status post not found response has a 5xx status code

func (*FilterStatusPostNotFound) IsSuccess

func (o *FilterStatusPostNotFound) IsSuccess() bool

IsSuccess returns true when this filter status post not found response has a 2xx status code

func (*FilterStatusPostNotFound) String

func (o *FilterStatusPostNotFound) String() string

type FilterStatusPostOK

type FilterStatusPostOK struct {
	Payload *models.FilterStatus
}

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

New filter status.

func NewFilterStatusPostOK

func NewFilterStatusPostOK() *FilterStatusPostOK

NewFilterStatusPostOK creates a FilterStatusPostOK with default headers values

func (*FilterStatusPostOK) Code

func (o *FilterStatusPostOK) Code() int

Code gets the status code for the filter status post o k response

func (*FilterStatusPostOK) Error

func (o *FilterStatusPostOK) Error() string

func (*FilterStatusPostOK) GetPayload

func (o *FilterStatusPostOK) GetPayload() *models.FilterStatus

func (*FilterStatusPostOK) IsClientError

func (o *FilterStatusPostOK) IsClientError() bool

IsClientError returns true when this filter status post o k response has a 4xx status code

func (*FilterStatusPostOK) IsCode

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

IsCode returns true when this filter status post o k response a status code equal to that given

func (*FilterStatusPostOK) IsRedirect

func (o *FilterStatusPostOK) IsRedirect() bool

IsRedirect returns true when this filter status post o k response has a 3xx status code

func (*FilterStatusPostOK) IsServerError

func (o *FilterStatusPostOK) IsServerError() bool

IsServerError returns true when this filter status post o k response has a 5xx status code

func (*FilterStatusPostOK) IsSuccess

func (o *FilterStatusPostOK) IsSuccess() bool

IsSuccess returns true when this filter status post o k response has a 2xx status code

func (*FilterStatusPostOK) String

func (o *FilterStatusPostOK) String() string

type FilterStatusPostParams

type FilterStatusPostParams struct {

	/* ID.

	   ID of the filter to add the filtered status to.
	*/
	ID string

	/* StatusID.

	     The ID of the status to filter.

	Sample: 01HXA2NE0K8T1C70K90E74GYD0
	*/
	StatusID string

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

FilterStatusPostParams contains all the parameters to send to the API endpoint

for the filter status post operation.

Typically these are written to a http.Request.

func NewFilterStatusPostParams

func NewFilterStatusPostParams() *FilterStatusPostParams

NewFilterStatusPostParams creates a new FilterStatusPostParams 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 NewFilterStatusPostParamsWithContext

func NewFilterStatusPostParamsWithContext(ctx context.Context) *FilterStatusPostParams

NewFilterStatusPostParamsWithContext creates a new FilterStatusPostParams object with the ability to set a context for a request.

func NewFilterStatusPostParamsWithHTTPClient

func NewFilterStatusPostParamsWithHTTPClient(client *http.Client) *FilterStatusPostParams

NewFilterStatusPostParamsWithHTTPClient creates a new FilterStatusPostParams object with the ability to set a custom HTTPClient for a request.

func NewFilterStatusPostParamsWithTimeout

func NewFilterStatusPostParamsWithTimeout(timeout time.Duration) *FilterStatusPostParams

NewFilterStatusPostParamsWithTimeout creates a new FilterStatusPostParams object with the ability to set a timeout on a request.

func (*FilterStatusPostParams) SetContext

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

SetContext adds the context to the filter status post params

func (*FilterStatusPostParams) SetDefaults

func (o *FilterStatusPostParams) SetDefaults()

SetDefaults hydrates default values in the filter status post params (not the query body).

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

func (*FilterStatusPostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter status post params

func (*FilterStatusPostParams) SetID

func (o *FilterStatusPostParams) SetID(id string)

SetID adds the id to the filter status post params

func (*FilterStatusPostParams) SetStatusID

func (o *FilterStatusPostParams) SetStatusID(statusID string)

SetStatusID adds the statusId to the filter status post params

func (*FilterStatusPostParams) SetTimeout

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

SetTimeout adds the timeout to the filter status post params

func (*FilterStatusPostParams) WithContext

WithContext adds the context to the filter status post params

func (*FilterStatusPostParams) WithDefaults

WithDefaults hydrates default values in the filter status post params (not the query body).

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

func (*FilterStatusPostParams) WithHTTPClient

func (o *FilterStatusPostParams) WithHTTPClient(client *http.Client) *FilterStatusPostParams

WithHTTPClient adds the HTTPClient to the filter status post params

func (*FilterStatusPostParams) WithID

WithID adds the id to the filter status post params

func (*FilterStatusPostParams) WithStatusID

func (o *FilterStatusPostParams) WithStatusID(statusID string) *FilterStatusPostParams

WithStatusID adds the statusID to the filter status post params

func (*FilterStatusPostParams) WithTimeout

WithTimeout adds the timeout to the filter status post params

func (*FilterStatusPostParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterStatusPostReader

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

FilterStatusPostReader is a Reader for the FilterStatusPost structure.

func (*FilterStatusPostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterStatusPostUnauthorized

type FilterStatusPostUnauthorized struct {
}

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

unauthorized

func NewFilterStatusPostUnauthorized

func NewFilterStatusPostUnauthorized() *FilterStatusPostUnauthorized

NewFilterStatusPostUnauthorized creates a FilterStatusPostUnauthorized with default headers values

func (*FilterStatusPostUnauthorized) Code

Code gets the status code for the filter status post unauthorized response

func (*FilterStatusPostUnauthorized) Error

func (*FilterStatusPostUnauthorized) IsClientError

func (o *FilterStatusPostUnauthorized) IsClientError() bool

IsClientError returns true when this filter status post unauthorized response has a 4xx status code

func (*FilterStatusPostUnauthorized) IsCode

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

IsCode returns true when this filter status post unauthorized response a status code equal to that given

func (*FilterStatusPostUnauthorized) IsRedirect

func (o *FilterStatusPostUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter status post unauthorized response has a 3xx status code

func (*FilterStatusPostUnauthorized) IsServerError

func (o *FilterStatusPostUnauthorized) IsServerError() bool

IsServerError returns true when this filter status post unauthorized response has a 5xx status code

func (*FilterStatusPostUnauthorized) IsSuccess

func (o *FilterStatusPostUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter status post unauthorized response has a 2xx status code

func (*FilterStatusPostUnauthorized) String

type FilterStatusPostUnprocessableEntity

type FilterStatusPostUnprocessableEntity struct {
}

FilterStatusPostUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterStatusPostUnprocessableEntity

func NewFilterStatusPostUnprocessableEntity() *FilterStatusPostUnprocessableEntity

NewFilterStatusPostUnprocessableEntity creates a FilterStatusPostUnprocessableEntity with default headers values

func (*FilterStatusPostUnprocessableEntity) Code

Code gets the status code for the filter status post unprocessable entity response

func (*FilterStatusPostUnprocessableEntity) Error

func (*FilterStatusPostUnprocessableEntity) IsClientError

func (o *FilterStatusPostUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter status post unprocessable entity response has a 4xx status code

func (*FilterStatusPostUnprocessableEntity) IsCode

IsCode returns true when this filter status post unprocessable entity response a status code equal to that given

func (*FilterStatusPostUnprocessableEntity) IsRedirect

func (o *FilterStatusPostUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter status post unprocessable entity response has a 3xx status code

func (*FilterStatusPostUnprocessableEntity) IsServerError

func (o *FilterStatusPostUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter status post unprocessable entity response has a 5xx status code

func (*FilterStatusPostUnprocessableEntity) IsSuccess

IsSuccess returns true when this filter status post unprocessable entity response has a 2xx status code

func (*FilterStatusPostUnprocessableEntity) String

type FilterStatusesGetBadRequest

type FilterStatusesGetBadRequest struct {
}

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

bad request

func NewFilterStatusesGetBadRequest

func NewFilterStatusesGetBadRequest() *FilterStatusesGetBadRequest

NewFilterStatusesGetBadRequest creates a FilterStatusesGetBadRequest with default headers values

func (*FilterStatusesGetBadRequest) Code

func (o *FilterStatusesGetBadRequest) Code() int

Code gets the status code for the filter statuses get bad request response

func (*FilterStatusesGetBadRequest) Error

func (*FilterStatusesGetBadRequest) IsClientError

func (o *FilterStatusesGetBadRequest) IsClientError() bool

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

func (*FilterStatusesGetBadRequest) IsCode

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

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

func (*FilterStatusesGetBadRequest) IsRedirect

func (o *FilterStatusesGetBadRequest) IsRedirect() bool

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

func (*FilterStatusesGetBadRequest) IsServerError

func (o *FilterStatusesGetBadRequest) IsServerError() bool

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

func (*FilterStatusesGetBadRequest) IsSuccess

func (o *FilterStatusesGetBadRequest) IsSuccess() bool

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

func (*FilterStatusesGetBadRequest) String

func (o *FilterStatusesGetBadRequest) String() string

type FilterStatusesGetInternalServerError

type FilterStatusesGetInternalServerError struct {
}

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

internal server error

func NewFilterStatusesGetInternalServerError

func NewFilterStatusesGetInternalServerError() *FilterStatusesGetInternalServerError

NewFilterStatusesGetInternalServerError creates a FilterStatusesGetInternalServerError with default headers values

func (*FilterStatusesGetInternalServerError) Code

Code gets the status code for the filter statuses get internal server error response

func (*FilterStatusesGetInternalServerError) Error

func (*FilterStatusesGetInternalServerError) IsClientError

func (o *FilterStatusesGetInternalServerError) IsClientError() bool

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

func (*FilterStatusesGetInternalServerError) IsCode

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

func (*FilterStatusesGetInternalServerError) IsRedirect

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

func (*FilterStatusesGetInternalServerError) IsServerError

func (o *FilterStatusesGetInternalServerError) IsServerError() bool

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

func (*FilterStatusesGetInternalServerError) IsSuccess

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

func (*FilterStatusesGetInternalServerError) String

type FilterStatusesGetNotAcceptable

type FilterStatusesGetNotAcceptable struct {
}

FilterStatusesGetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterStatusesGetNotAcceptable

func NewFilterStatusesGetNotAcceptable() *FilterStatusesGetNotAcceptable

NewFilterStatusesGetNotAcceptable creates a FilterStatusesGetNotAcceptable with default headers values

func (*FilterStatusesGetNotAcceptable) Code

Code gets the status code for the filter statuses get not acceptable response

func (*FilterStatusesGetNotAcceptable) Error

func (*FilterStatusesGetNotAcceptable) IsClientError

func (o *FilterStatusesGetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter statuses get not acceptable response has a 4xx status code

func (*FilterStatusesGetNotAcceptable) IsCode

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

IsCode returns true when this filter statuses get not acceptable response a status code equal to that given

func (*FilterStatusesGetNotAcceptable) IsRedirect

func (o *FilterStatusesGetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter statuses get not acceptable response has a 3xx status code

func (*FilterStatusesGetNotAcceptable) IsServerError

func (o *FilterStatusesGetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter statuses get not acceptable response has a 5xx status code

func (*FilterStatusesGetNotAcceptable) IsSuccess

func (o *FilterStatusesGetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter statuses get not acceptable response has a 2xx status code

func (*FilterStatusesGetNotAcceptable) String

type FilterStatusesGetNotFound

type FilterStatusesGetNotFound struct {
}

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

not found

func NewFilterStatusesGetNotFound

func NewFilterStatusesGetNotFound() *FilterStatusesGetNotFound

NewFilterStatusesGetNotFound creates a FilterStatusesGetNotFound with default headers values

func (*FilterStatusesGetNotFound) Code

func (o *FilterStatusesGetNotFound) Code() int

Code gets the status code for the filter statuses get not found response

func (*FilterStatusesGetNotFound) Error

func (o *FilterStatusesGetNotFound) Error() string

func (*FilterStatusesGetNotFound) IsClientError

func (o *FilterStatusesGetNotFound) IsClientError() bool

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

func (*FilterStatusesGetNotFound) IsCode

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

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

func (*FilterStatusesGetNotFound) IsRedirect

func (o *FilterStatusesGetNotFound) IsRedirect() bool

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

func (*FilterStatusesGetNotFound) IsServerError

func (o *FilterStatusesGetNotFound) IsServerError() bool

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

func (*FilterStatusesGetNotFound) IsSuccess

func (o *FilterStatusesGetNotFound) IsSuccess() bool

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

func (*FilterStatusesGetNotFound) String

func (o *FilterStatusesGetNotFound) String() string

type FilterStatusesGetOK

type FilterStatusesGetOK struct {
	Payload []*models.FilterStatus
}

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

Requested filter statuses.

func NewFilterStatusesGetOK

func NewFilterStatusesGetOK() *FilterStatusesGetOK

NewFilterStatusesGetOK creates a FilterStatusesGetOK with default headers values

func (*FilterStatusesGetOK) Code

func (o *FilterStatusesGetOK) Code() int

Code gets the status code for the filter statuses get o k response

func (*FilterStatusesGetOK) Error

func (o *FilterStatusesGetOK) Error() string

func (*FilterStatusesGetOK) GetPayload

func (o *FilterStatusesGetOK) GetPayload() []*models.FilterStatus

func (*FilterStatusesGetOK) IsClientError

func (o *FilterStatusesGetOK) IsClientError() bool

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

func (*FilterStatusesGetOK) IsCode

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

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

func (*FilterStatusesGetOK) IsRedirect

func (o *FilterStatusesGetOK) IsRedirect() bool

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

func (*FilterStatusesGetOK) IsServerError

func (o *FilterStatusesGetOK) IsServerError() bool

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

func (*FilterStatusesGetOK) IsSuccess

func (o *FilterStatusesGetOK) IsSuccess() bool

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

func (*FilterStatusesGetOK) String

func (o *FilterStatusesGetOK) String() string

type FilterStatusesGetParams

type FilterStatusesGetParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterStatusesGetParams contains all the parameters to send to the API endpoint

for the filter statuses get operation.

Typically these are written to a http.Request.

func NewFilterStatusesGetParams

func NewFilterStatusesGetParams() *FilterStatusesGetParams

NewFilterStatusesGetParams creates a new FilterStatusesGetParams 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 NewFilterStatusesGetParamsWithContext

func NewFilterStatusesGetParamsWithContext(ctx context.Context) *FilterStatusesGetParams

NewFilterStatusesGetParamsWithContext creates a new FilterStatusesGetParams object with the ability to set a context for a request.

func NewFilterStatusesGetParamsWithHTTPClient

func NewFilterStatusesGetParamsWithHTTPClient(client *http.Client) *FilterStatusesGetParams

NewFilterStatusesGetParamsWithHTTPClient creates a new FilterStatusesGetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterStatusesGetParamsWithTimeout

func NewFilterStatusesGetParamsWithTimeout(timeout time.Duration) *FilterStatusesGetParams

NewFilterStatusesGetParamsWithTimeout creates a new FilterStatusesGetParams object with the ability to set a timeout on a request.

func (*FilterStatusesGetParams) SetContext

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

SetContext adds the context to the filter statuses get params

func (*FilterStatusesGetParams) SetDefaults

func (o *FilterStatusesGetParams) SetDefaults()

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

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

func (*FilterStatusesGetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter statuses get params

func (*FilterStatusesGetParams) SetID

func (o *FilterStatusesGetParams) SetID(id string)

SetID adds the id to the filter statuses get params

func (*FilterStatusesGetParams) SetTimeout

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

SetTimeout adds the timeout to the filter statuses get params

func (*FilterStatusesGetParams) WithContext

WithContext adds the context to the filter statuses get params

func (*FilterStatusesGetParams) WithDefaults

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

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

func (*FilterStatusesGetParams) WithHTTPClient

func (o *FilterStatusesGetParams) WithHTTPClient(client *http.Client) *FilterStatusesGetParams

WithHTTPClient adds the HTTPClient to the filter statuses get params

func (*FilterStatusesGetParams) WithID

WithID adds the id to the filter statuses get params

func (*FilterStatusesGetParams) WithTimeout

WithTimeout adds the timeout to the filter statuses get params

func (*FilterStatusesGetParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type FilterStatusesGetReader

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

FilterStatusesGetReader is a Reader for the FilterStatusesGet structure.

func (*FilterStatusesGetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterStatusesGetUnauthorized

type FilterStatusesGetUnauthorized struct {
}

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

unauthorized

func NewFilterStatusesGetUnauthorized

func NewFilterStatusesGetUnauthorized() *FilterStatusesGetUnauthorized

NewFilterStatusesGetUnauthorized creates a FilterStatusesGetUnauthorized with default headers values

func (*FilterStatusesGetUnauthorized) Code

Code gets the status code for the filter statuses get unauthorized response

func (*FilterStatusesGetUnauthorized) Error

func (*FilterStatusesGetUnauthorized) IsClientError

func (o *FilterStatusesGetUnauthorized) IsClientError() bool

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

func (*FilterStatusesGetUnauthorized) IsCode

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

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

func (*FilterStatusesGetUnauthorized) IsRedirect

func (o *FilterStatusesGetUnauthorized) IsRedirect() bool

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

func (*FilterStatusesGetUnauthorized) IsServerError

func (o *FilterStatusesGetUnauthorized) IsServerError() bool

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

func (*FilterStatusesGetUnauthorized) IsSuccess

func (o *FilterStatusesGetUnauthorized) IsSuccess() bool

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

func (*FilterStatusesGetUnauthorized) String

type FilterV1DeleteBadRequest

type FilterV1DeleteBadRequest struct {
}

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

bad request

func NewFilterV1DeleteBadRequest

func NewFilterV1DeleteBadRequest() *FilterV1DeleteBadRequest

NewFilterV1DeleteBadRequest creates a FilterV1DeleteBadRequest with default headers values

func (*FilterV1DeleteBadRequest) Code

func (o *FilterV1DeleteBadRequest) Code() int

Code gets the status code for the filter v1 delete bad request response

func (*FilterV1DeleteBadRequest) Error

func (o *FilterV1DeleteBadRequest) Error() string

func (*FilterV1DeleteBadRequest) IsClientError

func (o *FilterV1DeleteBadRequest) IsClientError() bool

IsClientError returns true when this filter v1 delete bad request response has a 4xx status code

func (*FilterV1DeleteBadRequest) IsCode

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

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

func (*FilterV1DeleteBadRequest) IsRedirect

func (o *FilterV1DeleteBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v1 delete bad request response has a 3xx status code

func (*FilterV1DeleteBadRequest) IsServerError

func (o *FilterV1DeleteBadRequest) IsServerError() bool

IsServerError returns true when this filter v1 delete bad request response has a 5xx status code

func (*FilterV1DeleteBadRequest) IsSuccess

func (o *FilterV1DeleteBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v1 delete bad request response has a 2xx status code

func (*FilterV1DeleteBadRequest) String

func (o *FilterV1DeleteBadRequest) String() string

type FilterV1DeleteInternalServerError

type FilterV1DeleteInternalServerError struct {
}

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

internal server error

func NewFilterV1DeleteInternalServerError

func NewFilterV1DeleteInternalServerError() *FilterV1DeleteInternalServerError

NewFilterV1DeleteInternalServerError creates a FilterV1DeleteInternalServerError with default headers values

func (*FilterV1DeleteInternalServerError) Code

Code gets the status code for the filter v1 delete internal server error response

func (*FilterV1DeleteInternalServerError) Error

func (*FilterV1DeleteInternalServerError) IsClientError

func (o *FilterV1DeleteInternalServerError) IsClientError() bool

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

func (*FilterV1DeleteInternalServerError) IsCode

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

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

func (*FilterV1DeleteInternalServerError) IsRedirect

func (o *FilterV1DeleteInternalServerError) IsRedirect() bool

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

func (*FilterV1DeleteInternalServerError) IsServerError

func (o *FilterV1DeleteInternalServerError) IsServerError() bool

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

func (*FilterV1DeleteInternalServerError) IsSuccess

func (o *FilterV1DeleteInternalServerError) IsSuccess() bool

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

func (*FilterV1DeleteInternalServerError) String

type FilterV1DeleteNotAcceptable

type FilterV1DeleteNotAcceptable struct {
}

FilterV1DeleteNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV1DeleteNotAcceptable

func NewFilterV1DeleteNotAcceptable() *FilterV1DeleteNotAcceptable

NewFilterV1DeleteNotAcceptable creates a FilterV1DeleteNotAcceptable with default headers values

func (*FilterV1DeleteNotAcceptable) Code

func (o *FilterV1DeleteNotAcceptable) Code() int

Code gets the status code for the filter v1 delete not acceptable response

func (*FilterV1DeleteNotAcceptable) Error

func (*FilterV1DeleteNotAcceptable) IsClientError

func (o *FilterV1DeleteNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v1 delete not acceptable response has a 4xx status code

func (*FilterV1DeleteNotAcceptable) IsCode

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

IsCode returns true when this filter v1 delete not acceptable response a status code equal to that given

func (*FilterV1DeleteNotAcceptable) IsRedirect

func (o *FilterV1DeleteNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v1 delete not acceptable response has a 3xx status code

func (*FilterV1DeleteNotAcceptable) IsServerError

func (o *FilterV1DeleteNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v1 delete not acceptable response has a 5xx status code

func (*FilterV1DeleteNotAcceptable) IsSuccess

func (o *FilterV1DeleteNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v1 delete not acceptable response has a 2xx status code

func (*FilterV1DeleteNotAcceptable) String

func (o *FilterV1DeleteNotAcceptable) String() string

type FilterV1DeleteNotFound

type FilterV1DeleteNotFound struct {
}

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

not found

func NewFilterV1DeleteNotFound

func NewFilterV1DeleteNotFound() *FilterV1DeleteNotFound

NewFilterV1DeleteNotFound creates a FilterV1DeleteNotFound with default headers values

func (*FilterV1DeleteNotFound) Code

func (o *FilterV1DeleteNotFound) Code() int

Code gets the status code for the filter v1 delete not found response

func (*FilterV1DeleteNotFound) Error

func (o *FilterV1DeleteNotFound) Error() string

func (*FilterV1DeleteNotFound) IsClientError

func (o *FilterV1DeleteNotFound) IsClientError() bool

IsClientError returns true when this filter v1 delete not found response has a 4xx status code

func (*FilterV1DeleteNotFound) IsCode

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

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

func (*FilterV1DeleteNotFound) IsRedirect

func (o *FilterV1DeleteNotFound) IsRedirect() bool

IsRedirect returns true when this filter v1 delete not found response has a 3xx status code

func (*FilterV1DeleteNotFound) IsServerError

func (o *FilterV1DeleteNotFound) IsServerError() bool

IsServerError returns true when this filter v1 delete not found response has a 5xx status code

func (*FilterV1DeleteNotFound) IsSuccess

func (o *FilterV1DeleteNotFound) IsSuccess() bool

IsSuccess returns true when this filter v1 delete not found response has a 2xx status code

func (*FilterV1DeleteNotFound) String

func (o *FilterV1DeleteNotFound) String() string

type FilterV1DeleteOK

type FilterV1DeleteOK struct {
}

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

filter deleted

func NewFilterV1DeleteOK

func NewFilterV1DeleteOK() *FilterV1DeleteOK

NewFilterV1DeleteOK creates a FilterV1DeleteOK with default headers values

func (*FilterV1DeleteOK) Code

func (o *FilterV1DeleteOK) Code() int

Code gets the status code for the filter v1 delete o k response

func (*FilterV1DeleteOK) Error

func (o *FilterV1DeleteOK) Error() string

func (*FilterV1DeleteOK) IsClientError

func (o *FilterV1DeleteOK) IsClientError() bool

IsClientError returns true when this filter v1 delete o k response has a 4xx status code

func (*FilterV1DeleteOK) IsCode

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

IsCode returns true when this filter v1 delete o k response a status code equal to that given

func (*FilterV1DeleteOK) IsRedirect

func (o *FilterV1DeleteOK) IsRedirect() bool

IsRedirect returns true when this filter v1 delete o k response has a 3xx status code

func (*FilterV1DeleteOK) IsServerError

func (o *FilterV1DeleteOK) IsServerError() bool

IsServerError returns true when this filter v1 delete o k response has a 5xx status code

func (*FilterV1DeleteOK) IsSuccess

func (o *FilterV1DeleteOK) IsSuccess() bool

IsSuccess returns true when this filter v1 delete o k response has a 2xx status code

func (*FilterV1DeleteOK) String

func (o *FilterV1DeleteOK) String() string

type FilterV1DeleteParams

type FilterV1DeleteParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterV1DeleteParams contains all the parameters to send to the API endpoint

for the filter v1 delete operation.

Typically these are written to a http.Request.

func NewFilterV1DeleteParams

func NewFilterV1DeleteParams() *FilterV1DeleteParams

NewFilterV1DeleteParams creates a new FilterV1DeleteParams 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 NewFilterV1DeleteParamsWithContext

func NewFilterV1DeleteParamsWithContext(ctx context.Context) *FilterV1DeleteParams

NewFilterV1DeleteParamsWithContext creates a new FilterV1DeleteParams object with the ability to set a context for a request.

func NewFilterV1DeleteParamsWithHTTPClient

func NewFilterV1DeleteParamsWithHTTPClient(client *http.Client) *FilterV1DeleteParams

NewFilterV1DeleteParamsWithHTTPClient creates a new FilterV1DeleteParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV1DeleteParamsWithTimeout

func NewFilterV1DeleteParamsWithTimeout(timeout time.Duration) *FilterV1DeleteParams

NewFilterV1DeleteParamsWithTimeout creates a new FilterV1DeleteParams object with the ability to set a timeout on a request.

func (*FilterV1DeleteParams) SetContext

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

SetContext adds the context to the filter v1 delete params

func (*FilterV1DeleteParams) SetDefaults

func (o *FilterV1DeleteParams) SetDefaults()

SetDefaults hydrates default values in the filter v1 delete params (not the query body).

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

func (*FilterV1DeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v1 delete params

func (*FilterV1DeleteParams) SetID

func (o *FilterV1DeleteParams) SetID(id string)

SetID adds the id to the filter v1 delete params

func (*FilterV1DeleteParams) SetTimeout

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

SetTimeout adds the timeout to the filter v1 delete params

func (*FilterV1DeleteParams) WithContext

WithContext adds the context to the filter v1 delete params

func (*FilterV1DeleteParams) WithDefaults

func (o *FilterV1DeleteParams) WithDefaults() *FilterV1DeleteParams

WithDefaults hydrates default values in the filter v1 delete params (not the query body).

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

func (*FilterV1DeleteParams) WithHTTPClient

func (o *FilterV1DeleteParams) WithHTTPClient(client *http.Client) *FilterV1DeleteParams

WithHTTPClient adds the HTTPClient to the filter v1 delete params

func (*FilterV1DeleteParams) WithID

WithID adds the id to the filter v1 delete params

func (*FilterV1DeleteParams) WithTimeout

func (o *FilterV1DeleteParams) WithTimeout(timeout time.Duration) *FilterV1DeleteParams

WithTimeout adds the timeout to the filter v1 delete params

func (*FilterV1DeleteParams) WriteToRequest

func (o *FilterV1DeleteParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV1DeleteReader

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

FilterV1DeleteReader is a Reader for the FilterV1Delete structure.

func (*FilterV1DeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV1DeleteUnauthorized

type FilterV1DeleteUnauthorized struct {
}

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

unauthorized

func NewFilterV1DeleteUnauthorized

func NewFilterV1DeleteUnauthorized() *FilterV1DeleteUnauthorized

NewFilterV1DeleteUnauthorized creates a FilterV1DeleteUnauthorized with default headers values

func (*FilterV1DeleteUnauthorized) Code

func (o *FilterV1DeleteUnauthorized) Code() int

Code gets the status code for the filter v1 delete unauthorized response

func (*FilterV1DeleteUnauthorized) Error

func (*FilterV1DeleteUnauthorized) IsClientError

func (o *FilterV1DeleteUnauthorized) IsClientError() bool

IsClientError returns true when this filter v1 delete unauthorized response has a 4xx status code

func (*FilterV1DeleteUnauthorized) IsCode

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

IsCode returns true when this filter v1 delete unauthorized response a status code equal to that given

func (*FilterV1DeleteUnauthorized) IsRedirect

func (o *FilterV1DeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v1 delete unauthorized response has a 3xx status code

func (*FilterV1DeleteUnauthorized) IsServerError

func (o *FilterV1DeleteUnauthorized) IsServerError() bool

IsServerError returns true when this filter v1 delete unauthorized response has a 5xx status code

func (*FilterV1DeleteUnauthorized) IsSuccess

func (o *FilterV1DeleteUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v1 delete unauthorized response has a 2xx status code

func (*FilterV1DeleteUnauthorized) String

func (o *FilterV1DeleteUnauthorized) String() string

type FilterV1GetBadRequest

type FilterV1GetBadRequest struct {
}

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

bad request

func NewFilterV1GetBadRequest

func NewFilterV1GetBadRequest() *FilterV1GetBadRequest

NewFilterV1GetBadRequest creates a FilterV1GetBadRequest with default headers values

func (*FilterV1GetBadRequest) Code

func (o *FilterV1GetBadRequest) Code() int

Code gets the status code for the filter v1 get bad request response

func (*FilterV1GetBadRequest) Error

func (o *FilterV1GetBadRequest) Error() string

func (*FilterV1GetBadRequest) IsClientError

func (o *FilterV1GetBadRequest) IsClientError() bool

IsClientError returns true when this filter v1 get bad request response has a 4xx status code

func (*FilterV1GetBadRequest) IsCode

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

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

func (*FilterV1GetBadRequest) IsRedirect

func (o *FilterV1GetBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v1 get bad request response has a 3xx status code

func (*FilterV1GetBadRequest) IsServerError

func (o *FilterV1GetBadRequest) IsServerError() bool

IsServerError returns true when this filter v1 get bad request response has a 5xx status code

func (*FilterV1GetBadRequest) IsSuccess

func (o *FilterV1GetBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v1 get bad request response has a 2xx status code

func (*FilterV1GetBadRequest) String

func (o *FilterV1GetBadRequest) String() string

type FilterV1GetInternalServerError

type FilterV1GetInternalServerError struct {
}

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

internal server error

func NewFilterV1GetInternalServerError

func NewFilterV1GetInternalServerError() *FilterV1GetInternalServerError

NewFilterV1GetInternalServerError creates a FilterV1GetInternalServerError with default headers values

func (*FilterV1GetInternalServerError) Code

Code gets the status code for the filter v1 get internal server error response

func (*FilterV1GetInternalServerError) Error

func (*FilterV1GetInternalServerError) IsClientError

func (o *FilterV1GetInternalServerError) IsClientError() bool

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

func (*FilterV1GetInternalServerError) IsCode

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

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

func (*FilterV1GetInternalServerError) IsRedirect

func (o *FilterV1GetInternalServerError) IsRedirect() bool

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

func (*FilterV1GetInternalServerError) IsServerError

func (o *FilterV1GetInternalServerError) IsServerError() bool

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

func (*FilterV1GetInternalServerError) IsSuccess

func (o *FilterV1GetInternalServerError) IsSuccess() bool

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

func (*FilterV1GetInternalServerError) String

type FilterV1GetNotAcceptable

type FilterV1GetNotAcceptable struct {
}

FilterV1GetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV1GetNotAcceptable

func NewFilterV1GetNotAcceptable() *FilterV1GetNotAcceptable

NewFilterV1GetNotAcceptable creates a FilterV1GetNotAcceptable with default headers values

func (*FilterV1GetNotAcceptable) Code

func (o *FilterV1GetNotAcceptable) Code() int

Code gets the status code for the filter v1 get not acceptable response

func (*FilterV1GetNotAcceptable) Error

func (o *FilterV1GetNotAcceptable) Error() string

func (*FilterV1GetNotAcceptable) IsClientError

func (o *FilterV1GetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v1 get not acceptable response has a 4xx status code

func (*FilterV1GetNotAcceptable) IsCode

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

IsCode returns true when this filter v1 get not acceptable response a status code equal to that given

func (*FilterV1GetNotAcceptable) IsRedirect

func (o *FilterV1GetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v1 get not acceptable response has a 3xx status code

func (*FilterV1GetNotAcceptable) IsServerError

func (o *FilterV1GetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v1 get not acceptable response has a 5xx status code

func (*FilterV1GetNotAcceptable) IsSuccess

func (o *FilterV1GetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v1 get not acceptable response has a 2xx status code

func (*FilterV1GetNotAcceptable) String

func (o *FilterV1GetNotAcceptable) String() string

type FilterV1GetNotFound

type FilterV1GetNotFound struct {
}

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

not found

func NewFilterV1GetNotFound

func NewFilterV1GetNotFound() *FilterV1GetNotFound

NewFilterV1GetNotFound creates a FilterV1GetNotFound with default headers values

func (*FilterV1GetNotFound) Code

func (o *FilterV1GetNotFound) Code() int

Code gets the status code for the filter v1 get not found response

func (*FilterV1GetNotFound) Error

func (o *FilterV1GetNotFound) Error() string

func (*FilterV1GetNotFound) IsClientError

func (o *FilterV1GetNotFound) IsClientError() bool

IsClientError returns true when this filter v1 get not found response has a 4xx status code

func (*FilterV1GetNotFound) IsCode

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

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

func (*FilterV1GetNotFound) IsRedirect

func (o *FilterV1GetNotFound) IsRedirect() bool

IsRedirect returns true when this filter v1 get not found response has a 3xx status code

func (*FilterV1GetNotFound) IsServerError

func (o *FilterV1GetNotFound) IsServerError() bool

IsServerError returns true when this filter v1 get not found response has a 5xx status code

func (*FilterV1GetNotFound) IsSuccess

func (o *FilterV1GetNotFound) IsSuccess() bool

IsSuccess returns true when this filter v1 get not found response has a 2xx status code

func (*FilterV1GetNotFound) String

func (o *FilterV1GetNotFound) String() string

type FilterV1GetOK

type FilterV1GetOK struct {
	Payload *models.FilterV1
}

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

Requested filter.

func NewFilterV1GetOK

func NewFilterV1GetOK() *FilterV1GetOK

NewFilterV1GetOK creates a FilterV1GetOK with default headers values

func (*FilterV1GetOK) Code

func (o *FilterV1GetOK) Code() int

Code gets the status code for the filter v1 get o k response

func (*FilterV1GetOK) Error

func (o *FilterV1GetOK) Error() string

func (*FilterV1GetOK) GetPayload

func (o *FilterV1GetOK) GetPayload() *models.FilterV1

func (*FilterV1GetOK) IsClientError

func (o *FilterV1GetOK) IsClientError() bool

IsClientError returns true when this filter v1 get o k response has a 4xx status code

func (*FilterV1GetOK) IsCode

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

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

func (*FilterV1GetOK) IsRedirect

func (o *FilterV1GetOK) IsRedirect() bool

IsRedirect returns true when this filter v1 get o k response has a 3xx status code

func (*FilterV1GetOK) IsServerError

func (o *FilterV1GetOK) IsServerError() bool

IsServerError returns true when this filter v1 get o k response has a 5xx status code

func (*FilterV1GetOK) IsSuccess

func (o *FilterV1GetOK) IsSuccess() bool

IsSuccess returns true when this filter v1 get o k response has a 2xx status code

func (*FilterV1GetOK) String

func (o *FilterV1GetOK) String() string

type FilterV1GetParams

type FilterV1GetParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterV1GetParams contains all the parameters to send to the API endpoint

for the filter v1 get operation.

Typically these are written to a http.Request.

func NewFilterV1GetParams

func NewFilterV1GetParams() *FilterV1GetParams

NewFilterV1GetParams creates a new FilterV1GetParams 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 NewFilterV1GetParamsWithContext

func NewFilterV1GetParamsWithContext(ctx context.Context) *FilterV1GetParams

NewFilterV1GetParamsWithContext creates a new FilterV1GetParams object with the ability to set a context for a request.

func NewFilterV1GetParamsWithHTTPClient

func NewFilterV1GetParamsWithHTTPClient(client *http.Client) *FilterV1GetParams

NewFilterV1GetParamsWithHTTPClient creates a new FilterV1GetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV1GetParamsWithTimeout

func NewFilterV1GetParamsWithTimeout(timeout time.Duration) *FilterV1GetParams

NewFilterV1GetParamsWithTimeout creates a new FilterV1GetParams object with the ability to set a timeout on a request.

func (*FilterV1GetParams) SetContext

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

SetContext adds the context to the filter v1 get params

func (*FilterV1GetParams) SetDefaults

func (o *FilterV1GetParams) SetDefaults()

SetDefaults hydrates default values in the filter v1 get params (not the query body).

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

func (*FilterV1GetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v1 get params

func (*FilterV1GetParams) SetID

func (o *FilterV1GetParams) SetID(id string)

SetID adds the id to the filter v1 get params

func (*FilterV1GetParams) SetTimeout

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

SetTimeout adds the timeout to the filter v1 get params

func (*FilterV1GetParams) WithContext

func (o *FilterV1GetParams) WithContext(ctx context.Context) *FilterV1GetParams

WithContext adds the context to the filter v1 get params

func (*FilterV1GetParams) WithDefaults

func (o *FilterV1GetParams) WithDefaults() *FilterV1GetParams

WithDefaults hydrates default values in the filter v1 get params (not the query body).

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

func (*FilterV1GetParams) WithHTTPClient

func (o *FilterV1GetParams) WithHTTPClient(client *http.Client) *FilterV1GetParams

WithHTTPClient adds the HTTPClient to the filter v1 get params

func (*FilterV1GetParams) WithID

WithID adds the id to the filter v1 get params

func (*FilterV1GetParams) WithTimeout

func (o *FilterV1GetParams) WithTimeout(timeout time.Duration) *FilterV1GetParams

WithTimeout adds the timeout to the filter v1 get params

func (*FilterV1GetParams) WriteToRequest

func (o *FilterV1GetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV1GetReader

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

FilterV1GetReader is a Reader for the FilterV1Get structure.

func (*FilterV1GetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV1GetUnauthorized

type FilterV1GetUnauthorized struct {
}

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

unauthorized

func NewFilterV1GetUnauthorized

func NewFilterV1GetUnauthorized() *FilterV1GetUnauthorized

NewFilterV1GetUnauthorized creates a FilterV1GetUnauthorized with default headers values

func (*FilterV1GetUnauthorized) Code

func (o *FilterV1GetUnauthorized) Code() int

Code gets the status code for the filter v1 get unauthorized response

func (*FilterV1GetUnauthorized) Error

func (o *FilterV1GetUnauthorized) Error() string

func (*FilterV1GetUnauthorized) IsClientError

func (o *FilterV1GetUnauthorized) IsClientError() bool

IsClientError returns true when this filter v1 get unauthorized response has a 4xx status code

func (*FilterV1GetUnauthorized) IsCode

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

IsCode returns true when this filter v1 get unauthorized response a status code equal to that given

func (*FilterV1GetUnauthorized) IsRedirect

func (o *FilterV1GetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v1 get unauthorized response has a 3xx status code

func (*FilterV1GetUnauthorized) IsServerError

func (o *FilterV1GetUnauthorized) IsServerError() bool

IsServerError returns true when this filter v1 get unauthorized response has a 5xx status code

func (*FilterV1GetUnauthorized) IsSuccess

func (o *FilterV1GetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v1 get unauthorized response has a 2xx status code

func (*FilterV1GetUnauthorized) String

func (o *FilterV1GetUnauthorized) String() string

type FilterV1PostBadRequest

type FilterV1PostBadRequest struct {
}

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

bad request

func NewFilterV1PostBadRequest

func NewFilterV1PostBadRequest() *FilterV1PostBadRequest

NewFilterV1PostBadRequest creates a FilterV1PostBadRequest with default headers values

func (*FilterV1PostBadRequest) Code

func (o *FilterV1PostBadRequest) Code() int

Code gets the status code for the filter v1 post bad request response

func (*FilterV1PostBadRequest) Error

func (o *FilterV1PostBadRequest) Error() string

func (*FilterV1PostBadRequest) IsClientError

func (o *FilterV1PostBadRequest) IsClientError() bool

IsClientError returns true when this filter v1 post bad request response has a 4xx status code

func (*FilterV1PostBadRequest) IsCode

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

IsCode returns true when this filter v1 post bad request response a status code equal to that given

func (*FilterV1PostBadRequest) IsRedirect

func (o *FilterV1PostBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v1 post bad request response has a 3xx status code

func (*FilterV1PostBadRequest) IsServerError

func (o *FilterV1PostBadRequest) IsServerError() bool

IsServerError returns true when this filter v1 post bad request response has a 5xx status code

func (*FilterV1PostBadRequest) IsSuccess

func (o *FilterV1PostBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v1 post bad request response has a 2xx status code

func (*FilterV1PostBadRequest) String

func (o *FilterV1PostBadRequest) String() string

type FilterV1PostConflict

type FilterV1PostConflict struct {
}

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

conflict (duplicate keyword)

func NewFilterV1PostConflict

func NewFilterV1PostConflict() *FilterV1PostConflict

NewFilterV1PostConflict creates a FilterV1PostConflict with default headers values

func (*FilterV1PostConflict) Code

func (o *FilterV1PostConflict) Code() int

Code gets the status code for the filter v1 post conflict response

func (*FilterV1PostConflict) Error

func (o *FilterV1PostConflict) Error() string

func (*FilterV1PostConflict) IsClientError

func (o *FilterV1PostConflict) IsClientError() bool

IsClientError returns true when this filter v1 post conflict response has a 4xx status code

func (*FilterV1PostConflict) IsCode

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

IsCode returns true when this filter v1 post conflict response a status code equal to that given

func (*FilterV1PostConflict) IsRedirect

func (o *FilterV1PostConflict) IsRedirect() bool

IsRedirect returns true when this filter v1 post conflict response has a 3xx status code

func (*FilterV1PostConflict) IsServerError

func (o *FilterV1PostConflict) IsServerError() bool

IsServerError returns true when this filter v1 post conflict response has a 5xx status code

func (*FilterV1PostConflict) IsSuccess

func (o *FilterV1PostConflict) IsSuccess() bool

IsSuccess returns true when this filter v1 post conflict response has a 2xx status code

func (*FilterV1PostConflict) String

func (o *FilterV1PostConflict) String() string

type FilterV1PostForbidden

type FilterV1PostForbidden struct {
}

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

forbidden to moved accounts

func NewFilterV1PostForbidden

func NewFilterV1PostForbidden() *FilterV1PostForbidden

NewFilterV1PostForbidden creates a FilterV1PostForbidden with default headers values

func (*FilterV1PostForbidden) Code

func (o *FilterV1PostForbidden) Code() int

Code gets the status code for the filter v1 post forbidden response

func (*FilterV1PostForbidden) Error

func (o *FilterV1PostForbidden) Error() string

func (*FilterV1PostForbidden) IsClientError

func (o *FilterV1PostForbidden) IsClientError() bool

IsClientError returns true when this filter v1 post forbidden response has a 4xx status code

func (*FilterV1PostForbidden) IsCode

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

IsCode returns true when this filter v1 post forbidden response a status code equal to that given

func (*FilterV1PostForbidden) IsRedirect

func (o *FilterV1PostForbidden) IsRedirect() bool

IsRedirect returns true when this filter v1 post forbidden response has a 3xx status code

func (*FilterV1PostForbidden) IsServerError

func (o *FilterV1PostForbidden) IsServerError() bool

IsServerError returns true when this filter v1 post forbidden response has a 5xx status code

func (*FilterV1PostForbidden) IsSuccess

func (o *FilterV1PostForbidden) IsSuccess() bool

IsSuccess returns true when this filter v1 post forbidden response has a 2xx status code

func (*FilterV1PostForbidden) String

func (o *FilterV1PostForbidden) String() string

type FilterV1PostInternalServerError

type FilterV1PostInternalServerError struct {
}

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

internal server error

func NewFilterV1PostInternalServerError

func NewFilterV1PostInternalServerError() *FilterV1PostInternalServerError

NewFilterV1PostInternalServerError creates a FilterV1PostInternalServerError with default headers values

func (*FilterV1PostInternalServerError) Code

Code gets the status code for the filter v1 post internal server error response

func (*FilterV1PostInternalServerError) Error

func (*FilterV1PostInternalServerError) IsClientError

func (o *FilterV1PostInternalServerError) IsClientError() bool

IsClientError returns true when this filter v1 post internal server error response has a 4xx status code

func (*FilterV1PostInternalServerError) IsCode

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

IsCode returns true when this filter v1 post internal server error response a status code equal to that given

func (*FilterV1PostInternalServerError) IsRedirect

func (o *FilterV1PostInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter v1 post internal server error response has a 3xx status code

func (*FilterV1PostInternalServerError) IsServerError

func (o *FilterV1PostInternalServerError) IsServerError() bool

IsServerError returns true when this filter v1 post internal server error response has a 5xx status code

func (*FilterV1PostInternalServerError) IsSuccess

func (o *FilterV1PostInternalServerError) IsSuccess() bool

IsSuccess returns true when this filter v1 post internal server error response has a 2xx status code

func (*FilterV1PostInternalServerError) String

type FilterV1PostNotAcceptable

type FilterV1PostNotAcceptable struct {
}

FilterV1PostNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV1PostNotAcceptable

func NewFilterV1PostNotAcceptable() *FilterV1PostNotAcceptable

NewFilterV1PostNotAcceptable creates a FilterV1PostNotAcceptable with default headers values

func (*FilterV1PostNotAcceptable) Code

func (o *FilterV1PostNotAcceptable) Code() int

Code gets the status code for the filter v1 post not acceptable response

func (*FilterV1PostNotAcceptable) Error

func (o *FilterV1PostNotAcceptable) Error() string

func (*FilterV1PostNotAcceptable) IsClientError

func (o *FilterV1PostNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v1 post not acceptable response has a 4xx status code

func (*FilterV1PostNotAcceptable) IsCode

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

IsCode returns true when this filter v1 post not acceptable response a status code equal to that given

func (*FilterV1PostNotAcceptable) IsRedirect

func (o *FilterV1PostNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v1 post not acceptable response has a 3xx status code

func (*FilterV1PostNotAcceptable) IsServerError

func (o *FilterV1PostNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v1 post not acceptable response has a 5xx status code

func (*FilterV1PostNotAcceptable) IsSuccess

func (o *FilterV1PostNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v1 post not acceptable response has a 2xx status code

func (*FilterV1PostNotAcceptable) String

func (o *FilterV1PostNotAcceptable) String() string

type FilterV1PostNotFound

type FilterV1PostNotFound struct {
}

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

not found

func NewFilterV1PostNotFound

func NewFilterV1PostNotFound() *FilterV1PostNotFound

NewFilterV1PostNotFound creates a FilterV1PostNotFound with default headers values

func (*FilterV1PostNotFound) Code

func (o *FilterV1PostNotFound) Code() int

Code gets the status code for the filter v1 post not found response

func (*FilterV1PostNotFound) Error

func (o *FilterV1PostNotFound) Error() string

func (*FilterV1PostNotFound) IsClientError

func (o *FilterV1PostNotFound) IsClientError() bool

IsClientError returns true when this filter v1 post not found response has a 4xx status code

func (*FilterV1PostNotFound) IsCode

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

IsCode returns true when this filter v1 post not found response a status code equal to that given

func (*FilterV1PostNotFound) IsRedirect

func (o *FilterV1PostNotFound) IsRedirect() bool

IsRedirect returns true when this filter v1 post not found response has a 3xx status code

func (*FilterV1PostNotFound) IsServerError

func (o *FilterV1PostNotFound) IsServerError() bool

IsServerError returns true when this filter v1 post not found response has a 5xx status code

func (*FilterV1PostNotFound) IsSuccess

func (o *FilterV1PostNotFound) IsSuccess() bool

IsSuccess returns true when this filter v1 post not found response has a 2xx status code

func (*FilterV1PostNotFound) String

func (o *FilterV1PostNotFound) String() string

type FilterV1PostOK

type FilterV1PostOK struct {
	Payload *models.FilterV1
}

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

New filter.

func NewFilterV1PostOK

func NewFilterV1PostOK() *FilterV1PostOK

NewFilterV1PostOK creates a FilterV1PostOK with default headers values

func (*FilterV1PostOK) Code

func (o *FilterV1PostOK) Code() int

Code gets the status code for the filter v1 post o k response

func (*FilterV1PostOK) Error

func (o *FilterV1PostOK) Error() string

func (*FilterV1PostOK) GetPayload

func (o *FilterV1PostOK) GetPayload() *models.FilterV1

func (*FilterV1PostOK) IsClientError

func (o *FilterV1PostOK) IsClientError() bool

IsClientError returns true when this filter v1 post o k response has a 4xx status code

func (*FilterV1PostOK) IsCode

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

IsCode returns true when this filter v1 post o k response a status code equal to that given

func (*FilterV1PostOK) IsRedirect

func (o *FilterV1PostOK) IsRedirect() bool

IsRedirect returns true when this filter v1 post o k response has a 3xx status code

func (*FilterV1PostOK) IsServerError

func (o *FilterV1PostOK) IsServerError() bool

IsServerError returns true when this filter v1 post o k response has a 5xx status code

func (*FilterV1PostOK) IsSuccess

func (o *FilterV1PostOK) IsSuccess() bool

IsSuccess returns true when this filter v1 post o k response has a 2xx status code

func (*FilterV1PostOK) String

func (o *FilterV1PostOK) String() string

type FilterV1PostParams

type FilterV1PostParams struct {

	/* FilterContext.

	     The contexts in which the filter should be applied.

	Sample: home, public
	*/
	FilterContext []string

	/* ExpiresIn.

	     Number of seconds from now that the filter should expire. If omitted, filter never expires.

	Sample: 86400
	*/
	ExpiresIn *float64

	/* Irreversible.

	     Should matching entities be removed from the user's timelines/views, instead of hidden? Not supported yet.

	Sample: false
	*/
	Irreversible *bool

	/* Phrase.

	     The text to be filtered.

	Sample: fnord
	*/
	Phrase string

	/* WholeWord.

	     Should the filter consider word boundaries?

	Sample: true
	*/
	WholeWord *bool

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

FilterV1PostParams contains all the parameters to send to the API endpoint

for the filter v1 post operation.

Typically these are written to a http.Request.

func NewFilterV1PostParams

func NewFilterV1PostParams() *FilterV1PostParams

NewFilterV1PostParams creates a new FilterV1PostParams 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 NewFilterV1PostParamsWithContext

func NewFilterV1PostParamsWithContext(ctx context.Context) *FilterV1PostParams

NewFilterV1PostParamsWithContext creates a new FilterV1PostParams object with the ability to set a context for a request.

func NewFilterV1PostParamsWithHTTPClient

func NewFilterV1PostParamsWithHTTPClient(client *http.Client) *FilterV1PostParams

NewFilterV1PostParamsWithHTTPClient creates a new FilterV1PostParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV1PostParamsWithTimeout

func NewFilterV1PostParamsWithTimeout(timeout time.Duration) *FilterV1PostParams

NewFilterV1PostParamsWithTimeout creates a new FilterV1PostParams object with the ability to set a timeout on a request.

func (*FilterV1PostParams) SetContext

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

SetContext adds the context to the filter v1 post params

func (*FilterV1PostParams) SetDefaults

func (o *FilterV1PostParams) SetDefaults()

SetDefaults hydrates default values in the filter v1 post params (not the query body).

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

func (*FilterV1PostParams) SetExpiresIn

func (o *FilterV1PostParams) SetExpiresIn(expiresIn *float64)

SetExpiresIn adds the expiresIn to the filter v1 post params

func (*FilterV1PostParams) SetFilterContext

func (o *FilterV1PostParams) SetFilterContext(context []string)

SetFilterContext adds the filter context to the filter v1 post params

func (*FilterV1PostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v1 post params

func (*FilterV1PostParams) SetIrreversible

func (o *FilterV1PostParams) SetIrreversible(irreversible *bool)

SetIrreversible adds the irreversible to the filter v1 post params

func (*FilterV1PostParams) SetPhrase

func (o *FilterV1PostParams) SetPhrase(phrase string)

SetPhrase adds the phrase to the filter v1 post params

func (*FilterV1PostParams) SetTimeout

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

SetTimeout adds the timeout to the filter v1 post params

func (*FilterV1PostParams) SetWholeWord

func (o *FilterV1PostParams) SetWholeWord(wholeWord *bool)

SetWholeWord adds the wholeWord to the filter v1 post params

func (*FilterV1PostParams) WithContext

WithContext adds the context to the filter v1 post params

func (*FilterV1PostParams) WithDefaults

func (o *FilterV1PostParams) WithDefaults() *FilterV1PostParams

WithDefaults hydrates default values in the filter v1 post params (not the query body).

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

func (*FilterV1PostParams) WithExpiresIn

func (o *FilterV1PostParams) WithExpiresIn(expiresIn *float64) *FilterV1PostParams

WithExpiresIn adds the expiresIn to the filter v1 post params

func (*FilterV1PostParams) WithFilterContext

func (o *FilterV1PostParams) WithFilterContext(context []string) *FilterV1PostParams

WithFilterContext adds the filter context to the filter v1 post params

func (*FilterV1PostParams) WithHTTPClient

func (o *FilterV1PostParams) WithHTTPClient(client *http.Client) *FilterV1PostParams

WithHTTPClient adds the HTTPClient to the filter v1 post params

func (*FilterV1PostParams) WithIrreversible

func (o *FilterV1PostParams) WithIrreversible(irreversible *bool) *FilterV1PostParams

WithIrreversible adds the irreversible to the filter v1 post params

func (*FilterV1PostParams) WithPhrase

func (o *FilterV1PostParams) WithPhrase(phrase string) *FilterV1PostParams

WithPhrase adds the phrase to the filter v1 post params

func (*FilterV1PostParams) WithTimeout

func (o *FilterV1PostParams) WithTimeout(timeout time.Duration) *FilterV1PostParams

WithTimeout adds the timeout to the filter v1 post params

func (*FilterV1PostParams) WithWholeWord

func (o *FilterV1PostParams) WithWholeWord(wholeWord *bool) *FilterV1PostParams

WithWholeWord adds the wholeWord to the filter v1 post params

func (*FilterV1PostParams) WriteToRequest

func (o *FilterV1PostParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV1PostReader

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

FilterV1PostReader is a Reader for the FilterV1Post structure.

func (*FilterV1PostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV1PostUnauthorized

type FilterV1PostUnauthorized struct {
}

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

unauthorized

func NewFilterV1PostUnauthorized

func NewFilterV1PostUnauthorized() *FilterV1PostUnauthorized

NewFilterV1PostUnauthorized creates a FilterV1PostUnauthorized with default headers values

func (*FilterV1PostUnauthorized) Code

func (o *FilterV1PostUnauthorized) Code() int

Code gets the status code for the filter v1 post unauthorized response

func (*FilterV1PostUnauthorized) Error

func (o *FilterV1PostUnauthorized) Error() string

func (*FilterV1PostUnauthorized) IsClientError

func (o *FilterV1PostUnauthorized) IsClientError() bool

IsClientError returns true when this filter v1 post unauthorized response has a 4xx status code

func (*FilterV1PostUnauthorized) IsCode

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

IsCode returns true when this filter v1 post unauthorized response a status code equal to that given

func (*FilterV1PostUnauthorized) IsRedirect

func (o *FilterV1PostUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v1 post unauthorized response has a 3xx status code

func (*FilterV1PostUnauthorized) IsServerError

func (o *FilterV1PostUnauthorized) IsServerError() bool

IsServerError returns true when this filter v1 post unauthorized response has a 5xx status code

func (*FilterV1PostUnauthorized) IsSuccess

func (o *FilterV1PostUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v1 post unauthorized response has a 2xx status code

func (*FilterV1PostUnauthorized) String

func (o *FilterV1PostUnauthorized) String() string

type FilterV1PostUnprocessableEntity

type FilterV1PostUnprocessableEntity struct {
}

FilterV1PostUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterV1PostUnprocessableEntity

func NewFilterV1PostUnprocessableEntity() *FilterV1PostUnprocessableEntity

NewFilterV1PostUnprocessableEntity creates a FilterV1PostUnprocessableEntity with default headers values

func (*FilterV1PostUnprocessableEntity) Code

Code gets the status code for the filter v1 post unprocessable entity response

func (*FilterV1PostUnprocessableEntity) Error

func (*FilterV1PostUnprocessableEntity) IsClientError

func (o *FilterV1PostUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter v1 post unprocessable entity response has a 4xx status code

func (*FilterV1PostUnprocessableEntity) IsCode

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

IsCode returns true when this filter v1 post unprocessable entity response a status code equal to that given

func (*FilterV1PostUnprocessableEntity) IsRedirect

func (o *FilterV1PostUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter v1 post unprocessable entity response has a 3xx status code

func (*FilterV1PostUnprocessableEntity) IsServerError

func (o *FilterV1PostUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter v1 post unprocessable entity response has a 5xx status code

func (*FilterV1PostUnprocessableEntity) IsSuccess

func (o *FilterV1PostUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this filter v1 post unprocessable entity response has a 2xx status code

func (*FilterV1PostUnprocessableEntity) String

type FilterV1PutBadRequest

type FilterV1PutBadRequest struct {
}

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

bad request

func NewFilterV1PutBadRequest

func NewFilterV1PutBadRequest() *FilterV1PutBadRequest

NewFilterV1PutBadRequest creates a FilterV1PutBadRequest with default headers values

func (*FilterV1PutBadRequest) Code

func (o *FilterV1PutBadRequest) Code() int

Code gets the status code for the filter v1 put bad request response

func (*FilterV1PutBadRequest) Error

func (o *FilterV1PutBadRequest) Error() string

func (*FilterV1PutBadRequest) IsClientError

func (o *FilterV1PutBadRequest) IsClientError() bool

IsClientError returns true when this filter v1 put bad request response has a 4xx status code

func (*FilterV1PutBadRequest) IsCode

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

IsCode returns true when this filter v1 put bad request response a status code equal to that given

func (*FilterV1PutBadRequest) IsRedirect

func (o *FilterV1PutBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v1 put bad request response has a 3xx status code

func (*FilterV1PutBadRequest) IsServerError

func (o *FilterV1PutBadRequest) IsServerError() bool

IsServerError returns true when this filter v1 put bad request response has a 5xx status code

func (*FilterV1PutBadRequest) IsSuccess

func (o *FilterV1PutBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v1 put bad request response has a 2xx status code

func (*FilterV1PutBadRequest) String

func (o *FilterV1PutBadRequest) String() string

type FilterV1PutConflict

type FilterV1PutConflict struct {
}

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

conflict (duplicate keyword)

func NewFilterV1PutConflict

func NewFilterV1PutConflict() *FilterV1PutConflict

NewFilterV1PutConflict creates a FilterV1PutConflict with default headers values

func (*FilterV1PutConflict) Code

func (o *FilterV1PutConflict) Code() int

Code gets the status code for the filter v1 put conflict response

func (*FilterV1PutConflict) Error

func (o *FilterV1PutConflict) Error() string

func (*FilterV1PutConflict) IsClientError

func (o *FilterV1PutConflict) IsClientError() bool

IsClientError returns true when this filter v1 put conflict response has a 4xx status code

func (*FilterV1PutConflict) IsCode

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

IsCode returns true when this filter v1 put conflict response a status code equal to that given

func (*FilterV1PutConflict) IsRedirect

func (o *FilterV1PutConflict) IsRedirect() bool

IsRedirect returns true when this filter v1 put conflict response has a 3xx status code

func (*FilterV1PutConflict) IsServerError

func (o *FilterV1PutConflict) IsServerError() bool

IsServerError returns true when this filter v1 put conflict response has a 5xx status code

func (*FilterV1PutConflict) IsSuccess

func (o *FilterV1PutConflict) IsSuccess() bool

IsSuccess returns true when this filter v1 put conflict response has a 2xx status code

func (*FilterV1PutConflict) String

func (o *FilterV1PutConflict) String() string

type FilterV1PutForbidden

type FilterV1PutForbidden struct {
}

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

forbidden to moved accounts

func NewFilterV1PutForbidden

func NewFilterV1PutForbidden() *FilterV1PutForbidden

NewFilterV1PutForbidden creates a FilterV1PutForbidden with default headers values

func (*FilterV1PutForbidden) Code

func (o *FilterV1PutForbidden) Code() int

Code gets the status code for the filter v1 put forbidden response

func (*FilterV1PutForbidden) Error

func (o *FilterV1PutForbidden) Error() string

func (*FilterV1PutForbidden) IsClientError

func (o *FilterV1PutForbidden) IsClientError() bool

IsClientError returns true when this filter v1 put forbidden response has a 4xx status code

func (*FilterV1PutForbidden) IsCode

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

IsCode returns true when this filter v1 put forbidden response a status code equal to that given

func (*FilterV1PutForbidden) IsRedirect

func (o *FilterV1PutForbidden) IsRedirect() bool

IsRedirect returns true when this filter v1 put forbidden response has a 3xx status code

func (*FilterV1PutForbidden) IsServerError

func (o *FilterV1PutForbidden) IsServerError() bool

IsServerError returns true when this filter v1 put forbidden response has a 5xx status code

func (*FilterV1PutForbidden) IsSuccess

func (o *FilterV1PutForbidden) IsSuccess() bool

IsSuccess returns true when this filter v1 put forbidden response has a 2xx status code

func (*FilterV1PutForbidden) String

func (o *FilterV1PutForbidden) String() string

type FilterV1PutInternalServerError

type FilterV1PutInternalServerError struct {
}

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

internal server error

func NewFilterV1PutInternalServerError

func NewFilterV1PutInternalServerError() *FilterV1PutInternalServerError

NewFilterV1PutInternalServerError creates a FilterV1PutInternalServerError with default headers values

func (*FilterV1PutInternalServerError) Code

Code gets the status code for the filter v1 put internal server error response

func (*FilterV1PutInternalServerError) Error

func (*FilterV1PutInternalServerError) IsClientError

func (o *FilterV1PutInternalServerError) IsClientError() bool

IsClientError returns true when this filter v1 put internal server error response has a 4xx status code

func (*FilterV1PutInternalServerError) IsCode

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

IsCode returns true when this filter v1 put internal server error response a status code equal to that given

func (*FilterV1PutInternalServerError) IsRedirect

func (o *FilterV1PutInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter v1 put internal server error response has a 3xx status code

func (*FilterV1PutInternalServerError) IsServerError

func (o *FilterV1PutInternalServerError) IsServerError() bool

IsServerError returns true when this filter v1 put internal server error response has a 5xx status code

func (*FilterV1PutInternalServerError) IsSuccess

func (o *FilterV1PutInternalServerError) IsSuccess() bool

IsSuccess returns true when this filter v1 put internal server error response has a 2xx status code

func (*FilterV1PutInternalServerError) String

type FilterV1PutNotAcceptable

type FilterV1PutNotAcceptable struct {
}

FilterV1PutNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV1PutNotAcceptable

func NewFilterV1PutNotAcceptable() *FilterV1PutNotAcceptable

NewFilterV1PutNotAcceptable creates a FilterV1PutNotAcceptable with default headers values

func (*FilterV1PutNotAcceptable) Code

func (o *FilterV1PutNotAcceptable) Code() int

Code gets the status code for the filter v1 put not acceptable response

func (*FilterV1PutNotAcceptable) Error

func (o *FilterV1PutNotAcceptable) Error() string

func (*FilterV1PutNotAcceptable) IsClientError

func (o *FilterV1PutNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v1 put not acceptable response has a 4xx status code

func (*FilterV1PutNotAcceptable) IsCode

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

IsCode returns true when this filter v1 put not acceptable response a status code equal to that given

func (*FilterV1PutNotAcceptable) IsRedirect

func (o *FilterV1PutNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v1 put not acceptable response has a 3xx status code

func (*FilterV1PutNotAcceptable) IsServerError

func (o *FilterV1PutNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v1 put not acceptable response has a 5xx status code

func (*FilterV1PutNotAcceptable) IsSuccess

func (o *FilterV1PutNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v1 put not acceptable response has a 2xx status code

func (*FilterV1PutNotAcceptable) String

func (o *FilterV1PutNotAcceptable) String() string

type FilterV1PutNotFound

type FilterV1PutNotFound struct {
}

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

not found

func NewFilterV1PutNotFound

func NewFilterV1PutNotFound() *FilterV1PutNotFound

NewFilterV1PutNotFound creates a FilterV1PutNotFound with default headers values

func (*FilterV1PutNotFound) Code

func (o *FilterV1PutNotFound) Code() int

Code gets the status code for the filter v1 put not found response

func (*FilterV1PutNotFound) Error

func (o *FilterV1PutNotFound) Error() string

func (*FilterV1PutNotFound) IsClientError

func (o *FilterV1PutNotFound) IsClientError() bool

IsClientError returns true when this filter v1 put not found response has a 4xx status code

func (*FilterV1PutNotFound) IsCode

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

IsCode returns true when this filter v1 put not found response a status code equal to that given

func (*FilterV1PutNotFound) IsRedirect

func (o *FilterV1PutNotFound) IsRedirect() bool

IsRedirect returns true when this filter v1 put not found response has a 3xx status code

func (*FilterV1PutNotFound) IsServerError

func (o *FilterV1PutNotFound) IsServerError() bool

IsServerError returns true when this filter v1 put not found response has a 5xx status code

func (*FilterV1PutNotFound) IsSuccess

func (o *FilterV1PutNotFound) IsSuccess() bool

IsSuccess returns true when this filter v1 put not found response has a 2xx status code

func (*FilterV1PutNotFound) String

func (o *FilterV1PutNotFound) String() string

type FilterV1PutOK

type FilterV1PutOK struct {
	Payload *models.FilterV1
}

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

Updated filter.

func NewFilterV1PutOK

func NewFilterV1PutOK() *FilterV1PutOK

NewFilterV1PutOK creates a FilterV1PutOK with default headers values

func (*FilterV1PutOK) Code

func (o *FilterV1PutOK) Code() int

Code gets the status code for the filter v1 put o k response

func (*FilterV1PutOK) Error

func (o *FilterV1PutOK) Error() string

func (*FilterV1PutOK) GetPayload

func (o *FilterV1PutOK) GetPayload() *models.FilterV1

func (*FilterV1PutOK) IsClientError

func (o *FilterV1PutOK) IsClientError() bool

IsClientError returns true when this filter v1 put o k response has a 4xx status code

func (*FilterV1PutOK) IsCode

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

IsCode returns true when this filter v1 put o k response a status code equal to that given

func (*FilterV1PutOK) IsRedirect

func (o *FilterV1PutOK) IsRedirect() bool

IsRedirect returns true when this filter v1 put o k response has a 3xx status code

func (*FilterV1PutOK) IsServerError

func (o *FilterV1PutOK) IsServerError() bool

IsServerError returns true when this filter v1 put o k response has a 5xx status code

func (*FilterV1PutOK) IsSuccess

func (o *FilterV1PutOK) IsSuccess() bool

IsSuccess returns true when this filter v1 put o k response has a 2xx status code

func (*FilterV1PutOK) String

func (o *FilterV1PutOK) String() string

type FilterV1PutParams

type FilterV1PutParams struct {

	/* FilterContext.

	     The contexts in which the filter should be applied.

	Sample: home, public
	*/
	FilterContext []string

	/* ExpiresIn.

	     Number of seconds from now that the filter should expire. If omitted, filter never expires.

	Sample: 86400
	*/
	ExpiresIn *float64

	/* ID.

	   ID of the filter.
	*/
	ID string

	/* Irreversible.

	     Should matching entities be removed from the user's timelines/views, instead of hidden? Not supported yet.

	Sample: false
	*/
	Irreversible *bool

	/* Phrase.

	     The text to be filtered.

	Sample: fnord
	*/
	Phrase string

	/* WholeWord.

	     Should the filter consider word boundaries?

	Sample: true
	*/
	WholeWord *bool

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

FilterV1PutParams contains all the parameters to send to the API endpoint

for the filter v1 put operation.

Typically these are written to a http.Request.

func NewFilterV1PutParams

func NewFilterV1PutParams() *FilterV1PutParams

NewFilterV1PutParams creates a new FilterV1PutParams 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 NewFilterV1PutParamsWithContext

func NewFilterV1PutParamsWithContext(ctx context.Context) *FilterV1PutParams

NewFilterV1PutParamsWithContext creates a new FilterV1PutParams object with the ability to set a context for a request.

func NewFilterV1PutParamsWithHTTPClient

func NewFilterV1PutParamsWithHTTPClient(client *http.Client) *FilterV1PutParams

NewFilterV1PutParamsWithHTTPClient creates a new FilterV1PutParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV1PutParamsWithTimeout

func NewFilterV1PutParamsWithTimeout(timeout time.Duration) *FilterV1PutParams

NewFilterV1PutParamsWithTimeout creates a new FilterV1PutParams object with the ability to set a timeout on a request.

func (*FilterV1PutParams) SetContext

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

SetContext adds the context to the filter v1 put params

func (*FilterV1PutParams) SetDefaults

func (o *FilterV1PutParams) SetDefaults()

SetDefaults hydrates default values in the filter v1 put params (not the query body).

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

func (*FilterV1PutParams) SetExpiresIn

func (o *FilterV1PutParams) SetExpiresIn(expiresIn *float64)

SetExpiresIn adds the expiresIn to the filter v1 put params

func (*FilterV1PutParams) SetFilterContext

func (o *FilterV1PutParams) SetFilterContext(context []string)

SetFilterContext adds the filter context to the filter v1 put params

func (*FilterV1PutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v1 put params

func (*FilterV1PutParams) SetID

func (o *FilterV1PutParams) SetID(id string)

SetID adds the id to the filter v1 put params

func (*FilterV1PutParams) SetIrreversible

func (o *FilterV1PutParams) SetIrreversible(irreversible *bool)

SetIrreversible adds the irreversible to the filter v1 put params

func (*FilterV1PutParams) SetPhrase

func (o *FilterV1PutParams) SetPhrase(phrase string)

SetPhrase adds the phrase to the filter v1 put params

func (*FilterV1PutParams) SetTimeout

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

SetTimeout adds the timeout to the filter v1 put params

func (*FilterV1PutParams) SetWholeWord

func (o *FilterV1PutParams) SetWholeWord(wholeWord *bool)

SetWholeWord adds the wholeWord to the filter v1 put params

func (*FilterV1PutParams) WithContext

func (o *FilterV1PutParams) WithContext(ctx context.Context) *FilterV1PutParams

WithContext adds the context to the filter v1 put params

func (*FilterV1PutParams) WithDefaults

func (o *FilterV1PutParams) WithDefaults() *FilterV1PutParams

WithDefaults hydrates default values in the filter v1 put params (not the query body).

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

func (*FilterV1PutParams) WithExpiresIn

func (o *FilterV1PutParams) WithExpiresIn(expiresIn *float64) *FilterV1PutParams

WithExpiresIn adds the expiresIn to the filter v1 put params

func (*FilterV1PutParams) WithFilterContext

func (o *FilterV1PutParams) WithFilterContext(context []string) *FilterV1PutParams

WithFilterContext adds the filter context to the filter v1 put params

func (*FilterV1PutParams) WithHTTPClient

func (o *FilterV1PutParams) WithHTTPClient(client *http.Client) *FilterV1PutParams

WithHTTPClient adds the HTTPClient to the filter v1 put params

func (*FilterV1PutParams) WithID

WithID adds the id to the filter v1 put params

func (*FilterV1PutParams) WithIrreversible

func (o *FilterV1PutParams) WithIrreversible(irreversible *bool) *FilterV1PutParams

WithIrreversible adds the irreversible to the filter v1 put params

func (*FilterV1PutParams) WithPhrase

func (o *FilterV1PutParams) WithPhrase(phrase string) *FilterV1PutParams

WithPhrase adds the phrase to the filter v1 put params

func (*FilterV1PutParams) WithTimeout

func (o *FilterV1PutParams) WithTimeout(timeout time.Duration) *FilterV1PutParams

WithTimeout adds the timeout to the filter v1 put params

func (*FilterV1PutParams) WithWholeWord

func (o *FilterV1PutParams) WithWholeWord(wholeWord *bool) *FilterV1PutParams

WithWholeWord adds the wholeWord to the filter v1 put params

func (*FilterV1PutParams) WriteToRequest

func (o *FilterV1PutParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV1PutReader

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

FilterV1PutReader is a Reader for the FilterV1Put structure.

func (*FilterV1PutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV1PutUnauthorized

type FilterV1PutUnauthorized struct {
}

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

unauthorized

func NewFilterV1PutUnauthorized

func NewFilterV1PutUnauthorized() *FilterV1PutUnauthorized

NewFilterV1PutUnauthorized creates a FilterV1PutUnauthorized with default headers values

func (*FilterV1PutUnauthorized) Code

func (o *FilterV1PutUnauthorized) Code() int

Code gets the status code for the filter v1 put unauthorized response

func (*FilterV1PutUnauthorized) Error

func (o *FilterV1PutUnauthorized) Error() string

func (*FilterV1PutUnauthorized) IsClientError

func (o *FilterV1PutUnauthorized) IsClientError() bool

IsClientError returns true when this filter v1 put unauthorized response has a 4xx status code

func (*FilterV1PutUnauthorized) IsCode

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

IsCode returns true when this filter v1 put unauthorized response a status code equal to that given

func (*FilterV1PutUnauthorized) IsRedirect

func (o *FilterV1PutUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v1 put unauthorized response has a 3xx status code

func (*FilterV1PutUnauthorized) IsServerError

func (o *FilterV1PutUnauthorized) IsServerError() bool

IsServerError returns true when this filter v1 put unauthorized response has a 5xx status code

func (*FilterV1PutUnauthorized) IsSuccess

func (o *FilterV1PutUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v1 put unauthorized response has a 2xx status code

func (*FilterV1PutUnauthorized) String

func (o *FilterV1PutUnauthorized) String() string

type FilterV1PutUnprocessableEntity

type FilterV1PutUnprocessableEntity struct {
}

FilterV1PutUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterV1PutUnprocessableEntity

func NewFilterV1PutUnprocessableEntity() *FilterV1PutUnprocessableEntity

NewFilterV1PutUnprocessableEntity creates a FilterV1PutUnprocessableEntity with default headers values

func (*FilterV1PutUnprocessableEntity) Code

Code gets the status code for the filter v1 put unprocessable entity response

func (*FilterV1PutUnprocessableEntity) Error

func (*FilterV1PutUnprocessableEntity) IsClientError

func (o *FilterV1PutUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter v1 put unprocessable entity response has a 4xx status code

func (*FilterV1PutUnprocessableEntity) IsCode

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

IsCode returns true when this filter v1 put unprocessable entity response a status code equal to that given

func (*FilterV1PutUnprocessableEntity) IsRedirect

func (o *FilterV1PutUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter v1 put unprocessable entity response has a 3xx status code

func (*FilterV1PutUnprocessableEntity) IsServerError

func (o *FilterV1PutUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter v1 put unprocessable entity response has a 5xx status code

func (*FilterV1PutUnprocessableEntity) IsSuccess

func (o *FilterV1PutUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this filter v1 put unprocessable entity response has a 2xx status code

func (*FilterV1PutUnprocessableEntity) String

type FilterV2DeleteBadRequest

type FilterV2DeleteBadRequest struct {
}

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

bad request

func NewFilterV2DeleteBadRequest

func NewFilterV2DeleteBadRequest() *FilterV2DeleteBadRequest

NewFilterV2DeleteBadRequest creates a FilterV2DeleteBadRequest with default headers values

func (*FilterV2DeleteBadRequest) Code

func (o *FilterV2DeleteBadRequest) Code() int

Code gets the status code for the filter v2 delete bad request response

func (*FilterV2DeleteBadRequest) Error

func (o *FilterV2DeleteBadRequest) Error() string

func (*FilterV2DeleteBadRequest) IsClientError

func (o *FilterV2DeleteBadRequest) IsClientError() bool

IsClientError returns true when this filter v2 delete bad request response has a 4xx status code

func (*FilterV2DeleteBadRequest) IsCode

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

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

func (*FilterV2DeleteBadRequest) IsRedirect

func (o *FilterV2DeleteBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v2 delete bad request response has a 3xx status code

func (*FilterV2DeleteBadRequest) IsServerError

func (o *FilterV2DeleteBadRequest) IsServerError() bool

IsServerError returns true when this filter v2 delete bad request response has a 5xx status code

func (*FilterV2DeleteBadRequest) IsSuccess

func (o *FilterV2DeleteBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v2 delete bad request response has a 2xx status code

func (*FilterV2DeleteBadRequest) String

func (o *FilterV2DeleteBadRequest) String() string

type FilterV2DeleteInternalServerError

type FilterV2DeleteInternalServerError struct {
}

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

internal server error

func NewFilterV2DeleteInternalServerError

func NewFilterV2DeleteInternalServerError() *FilterV2DeleteInternalServerError

NewFilterV2DeleteInternalServerError creates a FilterV2DeleteInternalServerError with default headers values

func (*FilterV2DeleteInternalServerError) Code

Code gets the status code for the filter v2 delete internal server error response

func (*FilterV2DeleteInternalServerError) Error

func (*FilterV2DeleteInternalServerError) IsClientError

func (o *FilterV2DeleteInternalServerError) IsClientError() bool

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

func (*FilterV2DeleteInternalServerError) IsCode

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

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

func (*FilterV2DeleteInternalServerError) IsRedirect

func (o *FilterV2DeleteInternalServerError) IsRedirect() bool

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

func (*FilterV2DeleteInternalServerError) IsServerError

func (o *FilterV2DeleteInternalServerError) IsServerError() bool

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

func (*FilterV2DeleteInternalServerError) IsSuccess

func (o *FilterV2DeleteInternalServerError) IsSuccess() bool

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

func (*FilterV2DeleteInternalServerError) String

type FilterV2DeleteNotAcceptable

type FilterV2DeleteNotAcceptable struct {
}

FilterV2DeleteNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV2DeleteNotAcceptable

func NewFilterV2DeleteNotAcceptable() *FilterV2DeleteNotAcceptable

NewFilterV2DeleteNotAcceptable creates a FilterV2DeleteNotAcceptable with default headers values

func (*FilterV2DeleteNotAcceptable) Code

func (o *FilterV2DeleteNotAcceptable) Code() int

Code gets the status code for the filter v2 delete not acceptable response

func (*FilterV2DeleteNotAcceptable) Error

func (*FilterV2DeleteNotAcceptable) IsClientError

func (o *FilterV2DeleteNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v2 delete not acceptable response has a 4xx status code

func (*FilterV2DeleteNotAcceptable) IsCode

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

IsCode returns true when this filter v2 delete not acceptable response a status code equal to that given

func (*FilterV2DeleteNotAcceptable) IsRedirect

func (o *FilterV2DeleteNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v2 delete not acceptable response has a 3xx status code

func (*FilterV2DeleteNotAcceptable) IsServerError

func (o *FilterV2DeleteNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v2 delete not acceptable response has a 5xx status code

func (*FilterV2DeleteNotAcceptable) IsSuccess

func (o *FilterV2DeleteNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v2 delete not acceptable response has a 2xx status code

func (*FilterV2DeleteNotAcceptable) String

func (o *FilterV2DeleteNotAcceptable) String() string

type FilterV2DeleteNotFound

type FilterV2DeleteNotFound struct {
}

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

not found

func NewFilterV2DeleteNotFound

func NewFilterV2DeleteNotFound() *FilterV2DeleteNotFound

NewFilterV2DeleteNotFound creates a FilterV2DeleteNotFound with default headers values

func (*FilterV2DeleteNotFound) Code

func (o *FilterV2DeleteNotFound) Code() int

Code gets the status code for the filter v2 delete not found response

func (*FilterV2DeleteNotFound) Error

func (o *FilterV2DeleteNotFound) Error() string

func (*FilterV2DeleteNotFound) IsClientError

func (o *FilterV2DeleteNotFound) IsClientError() bool

IsClientError returns true when this filter v2 delete not found response has a 4xx status code

func (*FilterV2DeleteNotFound) IsCode

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

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

func (*FilterV2DeleteNotFound) IsRedirect

func (o *FilterV2DeleteNotFound) IsRedirect() bool

IsRedirect returns true when this filter v2 delete not found response has a 3xx status code

func (*FilterV2DeleteNotFound) IsServerError

func (o *FilterV2DeleteNotFound) IsServerError() bool

IsServerError returns true when this filter v2 delete not found response has a 5xx status code

func (*FilterV2DeleteNotFound) IsSuccess

func (o *FilterV2DeleteNotFound) IsSuccess() bool

IsSuccess returns true when this filter v2 delete not found response has a 2xx status code

func (*FilterV2DeleteNotFound) String

func (o *FilterV2DeleteNotFound) String() string

type FilterV2DeleteOK

type FilterV2DeleteOK struct {
}

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

filter deleted

func NewFilterV2DeleteOK

func NewFilterV2DeleteOK() *FilterV2DeleteOK

NewFilterV2DeleteOK creates a FilterV2DeleteOK with default headers values

func (*FilterV2DeleteOK) Code

func (o *FilterV2DeleteOK) Code() int

Code gets the status code for the filter v2 delete o k response

func (*FilterV2DeleteOK) Error

func (o *FilterV2DeleteOK) Error() string

func (*FilterV2DeleteOK) IsClientError

func (o *FilterV2DeleteOK) IsClientError() bool

IsClientError returns true when this filter v2 delete o k response has a 4xx status code

func (*FilterV2DeleteOK) IsCode

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

IsCode returns true when this filter v2 delete o k response a status code equal to that given

func (*FilterV2DeleteOK) IsRedirect

func (o *FilterV2DeleteOK) IsRedirect() bool

IsRedirect returns true when this filter v2 delete o k response has a 3xx status code

func (*FilterV2DeleteOK) IsServerError

func (o *FilterV2DeleteOK) IsServerError() bool

IsServerError returns true when this filter v2 delete o k response has a 5xx status code

func (*FilterV2DeleteOK) IsSuccess

func (o *FilterV2DeleteOK) IsSuccess() bool

IsSuccess returns true when this filter v2 delete o k response has a 2xx status code

func (*FilterV2DeleteOK) String

func (o *FilterV2DeleteOK) String() string

type FilterV2DeleteParams

type FilterV2DeleteParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterV2DeleteParams contains all the parameters to send to the API endpoint

for the filter v2 delete operation.

Typically these are written to a http.Request.

func NewFilterV2DeleteParams

func NewFilterV2DeleteParams() *FilterV2DeleteParams

NewFilterV2DeleteParams creates a new FilterV2DeleteParams 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 NewFilterV2DeleteParamsWithContext

func NewFilterV2DeleteParamsWithContext(ctx context.Context) *FilterV2DeleteParams

NewFilterV2DeleteParamsWithContext creates a new FilterV2DeleteParams object with the ability to set a context for a request.

func NewFilterV2DeleteParamsWithHTTPClient

func NewFilterV2DeleteParamsWithHTTPClient(client *http.Client) *FilterV2DeleteParams

NewFilterV2DeleteParamsWithHTTPClient creates a new FilterV2DeleteParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV2DeleteParamsWithTimeout

func NewFilterV2DeleteParamsWithTimeout(timeout time.Duration) *FilterV2DeleteParams

NewFilterV2DeleteParamsWithTimeout creates a new FilterV2DeleteParams object with the ability to set a timeout on a request.

func (*FilterV2DeleteParams) SetContext

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

SetContext adds the context to the filter v2 delete params

func (*FilterV2DeleteParams) SetDefaults

func (o *FilterV2DeleteParams) SetDefaults()

SetDefaults hydrates default values in the filter v2 delete params (not the query body).

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

func (*FilterV2DeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v2 delete params

func (*FilterV2DeleteParams) SetID

func (o *FilterV2DeleteParams) SetID(id string)

SetID adds the id to the filter v2 delete params

func (*FilterV2DeleteParams) SetTimeout

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

SetTimeout adds the timeout to the filter v2 delete params

func (*FilterV2DeleteParams) WithContext

WithContext adds the context to the filter v2 delete params

func (*FilterV2DeleteParams) WithDefaults

func (o *FilterV2DeleteParams) WithDefaults() *FilterV2DeleteParams

WithDefaults hydrates default values in the filter v2 delete params (not the query body).

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

func (*FilterV2DeleteParams) WithHTTPClient

func (o *FilterV2DeleteParams) WithHTTPClient(client *http.Client) *FilterV2DeleteParams

WithHTTPClient adds the HTTPClient to the filter v2 delete params

func (*FilterV2DeleteParams) WithID

WithID adds the id to the filter v2 delete params

func (*FilterV2DeleteParams) WithTimeout

func (o *FilterV2DeleteParams) WithTimeout(timeout time.Duration) *FilterV2DeleteParams

WithTimeout adds the timeout to the filter v2 delete params

func (*FilterV2DeleteParams) WriteToRequest

func (o *FilterV2DeleteParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV2DeleteReader

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

FilterV2DeleteReader is a Reader for the FilterV2Delete structure.

func (*FilterV2DeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV2DeleteUnauthorized

type FilterV2DeleteUnauthorized struct {
}

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

unauthorized

func NewFilterV2DeleteUnauthorized

func NewFilterV2DeleteUnauthorized() *FilterV2DeleteUnauthorized

NewFilterV2DeleteUnauthorized creates a FilterV2DeleteUnauthorized with default headers values

func (*FilterV2DeleteUnauthorized) Code

func (o *FilterV2DeleteUnauthorized) Code() int

Code gets the status code for the filter v2 delete unauthorized response

func (*FilterV2DeleteUnauthorized) Error

func (*FilterV2DeleteUnauthorized) IsClientError

func (o *FilterV2DeleteUnauthorized) IsClientError() bool

IsClientError returns true when this filter v2 delete unauthorized response has a 4xx status code

func (*FilterV2DeleteUnauthorized) IsCode

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

IsCode returns true when this filter v2 delete unauthorized response a status code equal to that given

func (*FilterV2DeleteUnauthorized) IsRedirect

func (o *FilterV2DeleteUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v2 delete unauthorized response has a 3xx status code

func (*FilterV2DeleteUnauthorized) IsServerError

func (o *FilterV2DeleteUnauthorized) IsServerError() bool

IsServerError returns true when this filter v2 delete unauthorized response has a 5xx status code

func (*FilterV2DeleteUnauthorized) IsSuccess

func (o *FilterV2DeleteUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v2 delete unauthorized response has a 2xx status code

func (*FilterV2DeleteUnauthorized) String

func (o *FilterV2DeleteUnauthorized) String() string

type FilterV2GetBadRequest

type FilterV2GetBadRequest struct {
}

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

bad request

func NewFilterV2GetBadRequest

func NewFilterV2GetBadRequest() *FilterV2GetBadRequest

NewFilterV2GetBadRequest creates a FilterV2GetBadRequest with default headers values

func (*FilterV2GetBadRequest) Code

func (o *FilterV2GetBadRequest) Code() int

Code gets the status code for the filter v2 get bad request response

func (*FilterV2GetBadRequest) Error

func (o *FilterV2GetBadRequest) Error() string

func (*FilterV2GetBadRequest) IsClientError

func (o *FilterV2GetBadRequest) IsClientError() bool

IsClientError returns true when this filter v2 get bad request response has a 4xx status code

func (*FilterV2GetBadRequest) IsCode

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

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

func (*FilterV2GetBadRequest) IsRedirect

func (o *FilterV2GetBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v2 get bad request response has a 3xx status code

func (*FilterV2GetBadRequest) IsServerError

func (o *FilterV2GetBadRequest) IsServerError() bool

IsServerError returns true when this filter v2 get bad request response has a 5xx status code

func (*FilterV2GetBadRequest) IsSuccess

func (o *FilterV2GetBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v2 get bad request response has a 2xx status code

func (*FilterV2GetBadRequest) String

func (o *FilterV2GetBadRequest) String() string

type FilterV2GetInternalServerError

type FilterV2GetInternalServerError struct {
}

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

internal server error

func NewFilterV2GetInternalServerError

func NewFilterV2GetInternalServerError() *FilterV2GetInternalServerError

NewFilterV2GetInternalServerError creates a FilterV2GetInternalServerError with default headers values

func (*FilterV2GetInternalServerError) Code

Code gets the status code for the filter v2 get internal server error response

func (*FilterV2GetInternalServerError) Error

func (*FilterV2GetInternalServerError) IsClientError

func (o *FilterV2GetInternalServerError) IsClientError() bool

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

func (*FilterV2GetInternalServerError) IsCode

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

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

func (*FilterV2GetInternalServerError) IsRedirect

func (o *FilterV2GetInternalServerError) IsRedirect() bool

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

func (*FilterV2GetInternalServerError) IsServerError

func (o *FilterV2GetInternalServerError) IsServerError() bool

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

func (*FilterV2GetInternalServerError) IsSuccess

func (o *FilterV2GetInternalServerError) IsSuccess() bool

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

func (*FilterV2GetInternalServerError) String

type FilterV2GetNotAcceptable

type FilterV2GetNotAcceptable struct {
}

FilterV2GetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV2GetNotAcceptable

func NewFilterV2GetNotAcceptable() *FilterV2GetNotAcceptable

NewFilterV2GetNotAcceptable creates a FilterV2GetNotAcceptable with default headers values

func (*FilterV2GetNotAcceptable) Code

func (o *FilterV2GetNotAcceptable) Code() int

Code gets the status code for the filter v2 get not acceptable response

func (*FilterV2GetNotAcceptable) Error

func (o *FilterV2GetNotAcceptable) Error() string

func (*FilterV2GetNotAcceptable) IsClientError

func (o *FilterV2GetNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v2 get not acceptable response has a 4xx status code

func (*FilterV2GetNotAcceptable) IsCode

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

IsCode returns true when this filter v2 get not acceptable response a status code equal to that given

func (*FilterV2GetNotAcceptable) IsRedirect

func (o *FilterV2GetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v2 get not acceptable response has a 3xx status code

func (*FilterV2GetNotAcceptable) IsServerError

func (o *FilterV2GetNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v2 get not acceptable response has a 5xx status code

func (*FilterV2GetNotAcceptable) IsSuccess

func (o *FilterV2GetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v2 get not acceptable response has a 2xx status code

func (*FilterV2GetNotAcceptable) String

func (o *FilterV2GetNotAcceptable) String() string

type FilterV2GetNotFound

type FilterV2GetNotFound struct {
}

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

not found

func NewFilterV2GetNotFound

func NewFilterV2GetNotFound() *FilterV2GetNotFound

NewFilterV2GetNotFound creates a FilterV2GetNotFound with default headers values

func (*FilterV2GetNotFound) Code

func (o *FilterV2GetNotFound) Code() int

Code gets the status code for the filter v2 get not found response

func (*FilterV2GetNotFound) Error

func (o *FilterV2GetNotFound) Error() string

func (*FilterV2GetNotFound) IsClientError

func (o *FilterV2GetNotFound) IsClientError() bool

IsClientError returns true when this filter v2 get not found response has a 4xx status code

func (*FilterV2GetNotFound) IsCode

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

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

func (*FilterV2GetNotFound) IsRedirect

func (o *FilterV2GetNotFound) IsRedirect() bool

IsRedirect returns true when this filter v2 get not found response has a 3xx status code

func (*FilterV2GetNotFound) IsServerError

func (o *FilterV2GetNotFound) IsServerError() bool

IsServerError returns true when this filter v2 get not found response has a 5xx status code

func (*FilterV2GetNotFound) IsSuccess

func (o *FilterV2GetNotFound) IsSuccess() bool

IsSuccess returns true when this filter v2 get not found response has a 2xx status code

func (*FilterV2GetNotFound) String

func (o *FilterV2GetNotFound) String() string

type FilterV2GetOK

type FilterV2GetOK struct {
	Payload *models.FilterV2
}

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

Requested filter.

func NewFilterV2GetOK

func NewFilterV2GetOK() *FilterV2GetOK

NewFilterV2GetOK creates a FilterV2GetOK with default headers values

func (*FilterV2GetOK) Code

func (o *FilterV2GetOK) Code() int

Code gets the status code for the filter v2 get o k response

func (*FilterV2GetOK) Error

func (o *FilterV2GetOK) Error() string

func (*FilterV2GetOK) GetPayload

func (o *FilterV2GetOK) GetPayload() *models.FilterV2

func (*FilterV2GetOK) IsClientError

func (o *FilterV2GetOK) IsClientError() bool

IsClientError returns true when this filter v2 get o k response has a 4xx status code

func (*FilterV2GetOK) IsCode

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

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

func (*FilterV2GetOK) IsRedirect

func (o *FilterV2GetOK) IsRedirect() bool

IsRedirect returns true when this filter v2 get o k response has a 3xx status code

func (*FilterV2GetOK) IsServerError

func (o *FilterV2GetOK) IsServerError() bool

IsServerError returns true when this filter v2 get o k response has a 5xx status code

func (*FilterV2GetOK) IsSuccess

func (o *FilterV2GetOK) IsSuccess() bool

IsSuccess returns true when this filter v2 get o k response has a 2xx status code

func (*FilterV2GetOK) String

func (o *FilterV2GetOK) String() string

type FilterV2GetParams

type FilterV2GetParams struct {

	/* ID.

	   ID of the filter
	*/
	ID string

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

FilterV2GetParams contains all the parameters to send to the API endpoint

for the filter v2 get operation.

Typically these are written to a http.Request.

func NewFilterV2GetParams

func NewFilterV2GetParams() *FilterV2GetParams

NewFilterV2GetParams creates a new FilterV2GetParams 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 NewFilterV2GetParamsWithContext

func NewFilterV2GetParamsWithContext(ctx context.Context) *FilterV2GetParams

NewFilterV2GetParamsWithContext creates a new FilterV2GetParams object with the ability to set a context for a request.

func NewFilterV2GetParamsWithHTTPClient

func NewFilterV2GetParamsWithHTTPClient(client *http.Client) *FilterV2GetParams

NewFilterV2GetParamsWithHTTPClient creates a new FilterV2GetParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV2GetParamsWithTimeout

func NewFilterV2GetParamsWithTimeout(timeout time.Duration) *FilterV2GetParams

NewFilterV2GetParamsWithTimeout creates a new FilterV2GetParams object with the ability to set a timeout on a request.

func (*FilterV2GetParams) SetContext

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

SetContext adds the context to the filter v2 get params

func (*FilterV2GetParams) SetDefaults

func (o *FilterV2GetParams) SetDefaults()

SetDefaults hydrates default values in the filter v2 get params (not the query body).

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

func (*FilterV2GetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v2 get params

func (*FilterV2GetParams) SetID

func (o *FilterV2GetParams) SetID(id string)

SetID adds the id to the filter v2 get params

func (*FilterV2GetParams) SetTimeout

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

SetTimeout adds the timeout to the filter v2 get params

func (*FilterV2GetParams) WithContext

func (o *FilterV2GetParams) WithContext(ctx context.Context) *FilterV2GetParams

WithContext adds the context to the filter v2 get params

func (*FilterV2GetParams) WithDefaults

func (o *FilterV2GetParams) WithDefaults() *FilterV2GetParams

WithDefaults hydrates default values in the filter v2 get params (not the query body).

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

func (*FilterV2GetParams) WithHTTPClient

func (o *FilterV2GetParams) WithHTTPClient(client *http.Client) *FilterV2GetParams

WithHTTPClient adds the HTTPClient to the filter v2 get params

func (*FilterV2GetParams) WithID

WithID adds the id to the filter v2 get params

func (*FilterV2GetParams) WithTimeout

func (o *FilterV2GetParams) WithTimeout(timeout time.Duration) *FilterV2GetParams

WithTimeout adds the timeout to the filter v2 get params

func (*FilterV2GetParams) WriteToRequest

func (o *FilterV2GetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV2GetReader

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

FilterV2GetReader is a Reader for the FilterV2Get structure.

func (*FilterV2GetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV2GetUnauthorized

type FilterV2GetUnauthorized struct {
}

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

unauthorized

func NewFilterV2GetUnauthorized

func NewFilterV2GetUnauthorized() *FilterV2GetUnauthorized

NewFilterV2GetUnauthorized creates a FilterV2GetUnauthorized with default headers values

func (*FilterV2GetUnauthorized) Code

func (o *FilterV2GetUnauthorized) Code() int

Code gets the status code for the filter v2 get unauthorized response

func (*FilterV2GetUnauthorized) Error

func (o *FilterV2GetUnauthorized) Error() string

func (*FilterV2GetUnauthorized) IsClientError

func (o *FilterV2GetUnauthorized) IsClientError() bool

IsClientError returns true when this filter v2 get unauthorized response has a 4xx status code

func (*FilterV2GetUnauthorized) IsCode

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

IsCode returns true when this filter v2 get unauthorized response a status code equal to that given

func (*FilterV2GetUnauthorized) IsRedirect

func (o *FilterV2GetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v2 get unauthorized response has a 3xx status code

func (*FilterV2GetUnauthorized) IsServerError

func (o *FilterV2GetUnauthorized) IsServerError() bool

IsServerError returns true when this filter v2 get unauthorized response has a 5xx status code

func (*FilterV2GetUnauthorized) IsSuccess

func (o *FilterV2GetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v2 get unauthorized response has a 2xx status code

func (*FilterV2GetUnauthorized) String

func (o *FilterV2GetUnauthorized) String() string

type FilterV2PostBadRequest

type FilterV2PostBadRequest struct {
}

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

bad request

func NewFilterV2PostBadRequest

func NewFilterV2PostBadRequest() *FilterV2PostBadRequest

NewFilterV2PostBadRequest creates a FilterV2PostBadRequest with default headers values

func (*FilterV2PostBadRequest) Code

func (o *FilterV2PostBadRequest) Code() int

Code gets the status code for the filter v2 post bad request response

func (*FilterV2PostBadRequest) Error

func (o *FilterV2PostBadRequest) Error() string

func (*FilterV2PostBadRequest) IsClientError

func (o *FilterV2PostBadRequest) IsClientError() bool

IsClientError returns true when this filter v2 post bad request response has a 4xx status code

func (*FilterV2PostBadRequest) IsCode

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

IsCode returns true when this filter v2 post bad request response a status code equal to that given

func (*FilterV2PostBadRequest) IsRedirect

func (o *FilterV2PostBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v2 post bad request response has a 3xx status code

func (*FilterV2PostBadRequest) IsServerError

func (o *FilterV2PostBadRequest) IsServerError() bool

IsServerError returns true when this filter v2 post bad request response has a 5xx status code

func (*FilterV2PostBadRequest) IsSuccess

func (o *FilterV2PostBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v2 post bad request response has a 2xx status code

func (*FilterV2PostBadRequest) String

func (o *FilterV2PostBadRequest) String() string

type FilterV2PostConflict

type FilterV2PostConflict struct {
}

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

conflict (duplicate title, keyword, or status)

func NewFilterV2PostConflict

func NewFilterV2PostConflict() *FilterV2PostConflict

NewFilterV2PostConflict creates a FilterV2PostConflict with default headers values

func (*FilterV2PostConflict) Code

func (o *FilterV2PostConflict) Code() int

Code gets the status code for the filter v2 post conflict response

func (*FilterV2PostConflict) Error

func (o *FilterV2PostConflict) Error() string

func (*FilterV2PostConflict) IsClientError

func (o *FilterV2PostConflict) IsClientError() bool

IsClientError returns true when this filter v2 post conflict response has a 4xx status code

func (*FilterV2PostConflict) IsCode

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

IsCode returns true when this filter v2 post conflict response a status code equal to that given

func (*FilterV2PostConflict) IsRedirect

func (o *FilterV2PostConflict) IsRedirect() bool

IsRedirect returns true when this filter v2 post conflict response has a 3xx status code

func (*FilterV2PostConflict) IsServerError

func (o *FilterV2PostConflict) IsServerError() bool

IsServerError returns true when this filter v2 post conflict response has a 5xx status code

func (*FilterV2PostConflict) IsSuccess

func (o *FilterV2PostConflict) IsSuccess() bool

IsSuccess returns true when this filter v2 post conflict response has a 2xx status code

func (*FilterV2PostConflict) String

func (o *FilterV2PostConflict) String() string

type FilterV2PostForbidden

type FilterV2PostForbidden struct {
}

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

forbidden to moved accounts

func NewFilterV2PostForbidden

func NewFilterV2PostForbidden() *FilterV2PostForbidden

NewFilterV2PostForbidden creates a FilterV2PostForbidden with default headers values

func (*FilterV2PostForbidden) Code

func (o *FilterV2PostForbidden) Code() int

Code gets the status code for the filter v2 post forbidden response

func (*FilterV2PostForbidden) Error

func (o *FilterV2PostForbidden) Error() string

func (*FilterV2PostForbidden) IsClientError

func (o *FilterV2PostForbidden) IsClientError() bool

IsClientError returns true when this filter v2 post forbidden response has a 4xx status code

func (*FilterV2PostForbidden) IsCode

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

IsCode returns true when this filter v2 post forbidden response a status code equal to that given

func (*FilterV2PostForbidden) IsRedirect

func (o *FilterV2PostForbidden) IsRedirect() bool

IsRedirect returns true when this filter v2 post forbidden response has a 3xx status code

func (*FilterV2PostForbidden) IsServerError

func (o *FilterV2PostForbidden) IsServerError() bool

IsServerError returns true when this filter v2 post forbidden response has a 5xx status code

func (*FilterV2PostForbidden) IsSuccess

func (o *FilterV2PostForbidden) IsSuccess() bool

IsSuccess returns true when this filter v2 post forbidden response has a 2xx status code

func (*FilterV2PostForbidden) String

func (o *FilterV2PostForbidden) String() string

type FilterV2PostInternalServerError

type FilterV2PostInternalServerError struct {
}

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

internal server error

func NewFilterV2PostInternalServerError

func NewFilterV2PostInternalServerError() *FilterV2PostInternalServerError

NewFilterV2PostInternalServerError creates a FilterV2PostInternalServerError with default headers values

func (*FilterV2PostInternalServerError) Code

Code gets the status code for the filter v2 post internal server error response

func (*FilterV2PostInternalServerError) Error

func (*FilterV2PostInternalServerError) IsClientError

func (o *FilterV2PostInternalServerError) IsClientError() bool

IsClientError returns true when this filter v2 post internal server error response has a 4xx status code

func (*FilterV2PostInternalServerError) IsCode

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

IsCode returns true when this filter v2 post internal server error response a status code equal to that given

func (*FilterV2PostInternalServerError) IsRedirect

func (o *FilterV2PostInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter v2 post internal server error response has a 3xx status code

func (*FilterV2PostInternalServerError) IsServerError

func (o *FilterV2PostInternalServerError) IsServerError() bool

IsServerError returns true when this filter v2 post internal server error response has a 5xx status code

func (*FilterV2PostInternalServerError) IsSuccess

func (o *FilterV2PostInternalServerError) IsSuccess() bool

IsSuccess returns true when this filter v2 post internal server error response has a 2xx status code

func (*FilterV2PostInternalServerError) String

type FilterV2PostNotAcceptable

type FilterV2PostNotAcceptable struct {
}

FilterV2PostNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV2PostNotAcceptable

func NewFilterV2PostNotAcceptable() *FilterV2PostNotAcceptable

NewFilterV2PostNotAcceptable creates a FilterV2PostNotAcceptable with default headers values

func (*FilterV2PostNotAcceptable) Code

func (o *FilterV2PostNotAcceptable) Code() int

Code gets the status code for the filter v2 post not acceptable response

func (*FilterV2PostNotAcceptable) Error

func (o *FilterV2PostNotAcceptable) Error() string

func (*FilterV2PostNotAcceptable) IsClientError

func (o *FilterV2PostNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v2 post not acceptable response has a 4xx status code

func (*FilterV2PostNotAcceptable) IsCode

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

IsCode returns true when this filter v2 post not acceptable response a status code equal to that given

func (*FilterV2PostNotAcceptable) IsRedirect

func (o *FilterV2PostNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v2 post not acceptable response has a 3xx status code

func (*FilterV2PostNotAcceptable) IsServerError

func (o *FilterV2PostNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v2 post not acceptable response has a 5xx status code

func (*FilterV2PostNotAcceptable) IsSuccess

func (o *FilterV2PostNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v2 post not acceptable response has a 2xx status code

func (*FilterV2PostNotAcceptable) String

func (o *FilterV2PostNotAcceptable) String() string

type FilterV2PostNotFound

type FilterV2PostNotFound struct {
}

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

not found

func NewFilterV2PostNotFound

func NewFilterV2PostNotFound() *FilterV2PostNotFound

NewFilterV2PostNotFound creates a FilterV2PostNotFound with default headers values

func (*FilterV2PostNotFound) Code

func (o *FilterV2PostNotFound) Code() int

Code gets the status code for the filter v2 post not found response

func (*FilterV2PostNotFound) Error

func (o *FilterV2PostNotFound) Error() string

func (*FilterV2PostNotFound) IsClientError

func (o *FilterV2PostNotFound) IsClientError() bool

IsClientError returns true when this filter v2 post not found response has a 4xx status code

func (*FilterV2PostNotFound) IsCode

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

IsCode returns true when this filter v2 post not found response a status code equal to that given

func (*FilterV2PostNotFound) IsRedirect

func (o *FilterV2PostNotFound) IsRedirect() bool

IsRedirect returns true when this filter v2 post not found response has a 3xx status code

func (*FilterV2PostNotFound) IsServerError

func (o *FilterV2PostNotFound) IsServerError() bool

IsServerError returns true when this filter v2 post not found response has a 5xx status code

func (*FilterV2PostNotFound) IsSuccess

func (o *FilterV2PostNotFound) IsSuccess() bool

IsSuccess returns true when this filter v2 post not found response has a 2xx status code

func (*FilterV2PostNotFound) String

func (o *FilterV2PostNotFound) String() string

type FilterV2PostOK

type FilterV2PostOK struct {
	Payload *models.FilterV2
}

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

New filter.

func NewFilterV2PostOK

func NewFilterV2PostOK() *FilterV2PostOK

NewFilterV2PostOK creates a FilterV2PostOK with default headers values

func (*FilterV2PostOK) Code

func (o *FilterV2PostOK) Code() int

Code gets the status code for the filter v2 post o k response

func (*FilterV2PostOK) Error

func (o *FilterV2PostOK) Error() string

func (*FilterV2PostOK) GetPayload

func (o *FilterV2PostOK) GetPayload() *models.FilterV2

func (*FilterV2PostOK) IsClientError

func (o *FilterV2PostOK) IsClientError() bool

IsClientError returns true when this filter v2 post o k response has a 4xx status code

func (*FilterV2PostOK) IsCode

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

IsCode returns true when this filter v2 post o k response a status code equal to that given

func (*FilterV2PostOK) IsRedirect

func (o *FilterV2PostOK) IsRedirect() bool

IsRedirect returns true when this filter v2 post o k response has a 3xx status code

func (*FilterV2PostOK) IsServerError

func (o *FilterV2PostOK) IsServerError() bool

IsServerError returns true when this filter v2 post o k response has a 5xx status code

func (*FilterV2PostOK) IsSuccess

func (o *FilterV2PostOK) IsSuccess() bool

IsSuccess returns true when this filter v2 post o k response has a 2xx status code

func (*FilterV2PostOK) String

func (o *FilterV2PostOK) String() string

type FilterV2PostParams

type FilterV2PostParams struct {

	/* FilterContext.

	     The contexts in which the filter should be applied.

	Sample: home, public
	*/
	FilterContext []string

	/* ExpiresIn.

	     Number of seconds from now that the filter should expire. If omitted, filter never expires.

	Sample: 86400
	*/
	ExpiresIn *float64

	/* FilterAction.

	     The action to be taken when a status matches this filter.

	Sample: warn

	     Default: "warn"
	*/
	FilterAction *string

	/* KeywordsAttributesKeyword.

	   Keywords to be added (if not using id param) or updated (if using id param).
	*/
	KeywordsAttributesKeyword []string

	/* KeywordsAttributesWholeWord.

	   Should each keyword consider word boundaries?
	*/
	KeywordsAttributesWholeWord []bool

	/* StatusesAttributesStatusID.

	   Statuses to be added to the filter.
	*/
	StatusesAttributesStatusID []string

	/* Title.

	     The name of the filter.

	Sample: illuminati nonsense
	*/
	Title string

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

FilterV2PostParams contains all the parameters to send to the API endpoint

for the filter v2 post operation.

Typically these are written to a http.Request.

func NewFilterV2PostParams

func NewFilterV2PostParams() *FilterV2PostParams

NewFilterV2PostParams creates a new FilterV2PostParams 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 NewFilterV2PostParamsWithContext

func NewFilterV2PostParamsWithContext(ctx context.Context) *FilterV2PostParams

NewFilterV2PostParamsWithContext creates a new FilterV2PostParams object with the ability to set a context for a request.

func NewFilterV2PostParamsWithHTTPClient

func NewFilterV2PostParamsWithHTTPClient(client *http.Client) *FilterV2PostParams

NewFilterV2PostParamsWithHTTPClient creates a new FilterV2PostParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV2PostParamsWithTimeout

func NewFilterV2PostParamsWithTimeout(timeout time.Duration) *FilterV2PostParams

NewFilterV2PostParamsWithTimeout creates a new FilterV2PostParams object with the ability to set a timeout on a request.

func (*FilterV2PostParams) SetContext

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

SetContext adds the context to the filter v2 post params

func (*FilterV2PostParams) SetDefaults

func (o *FilterV2PostParams) SetDefaults()

SetDefaults hydrates default values in the filter v2 post params (not the query body).

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

func (*FilterV2PostParams) SetExpiresIn

func (o *FilterV2PostParams) SetExpiresIn(expiresIn *float64)

SetExpiresIn adds the expiresIn to the filter v2 post params

func (*FilterV2PostParams) SetFilterAction

func (o *FilterV2PostParams) SetFilterAction(filterAction *string)

SetFilterAction adds the filterAction to the filter v2 post params

func (*FilterV2PostParams) SetFilterContext

func (o *FilterV2PostParams) SetFilterContext(context []string)

SetFilterContext adds the filter context to the filter v2 post params

func (*FilterV2PostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v2 post params

func (*FilterV2PostParams) SetKeywordsAttributesKeyword

func (o *FilterV2PostParams) SetKeywordsAttributesKeyword(keywordsAttributesKeyword []string)

SetKeywordsAttributesKeyword adds the keywordsAttributesKeyword to the filter v2 post params

func (*FilterV2PostParams) SetKeywordsAttributesWholeWord

func (o *FilterV2PostParams) SetKeywordsAttributesWholeWord(keywordsAttributesWholeWord []bool)

SetKeywordsAttributesWholeWord adds the keywordsAttributesWholeWord to the filter v2 post params

func (*FilterV2PostParams) SetStatusesAttributesStatusID

func (o *FilterV2PostParams) SetStatusesAttributesStatusID(statusesAttributesStatusID []string)

SetStatusesAttributesStatusID adds the statusesAttributesStatusId to the filter v2 post params

func (*FilterV2PostParams) SetTimeout

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

SetTimeout adds the timeout to the filter v2 post params

func (*FilterV2PostParams) SetTitle

func (o *FilterV2PostParams) SetTitle(title string)

SetTitle adds the title to the filter v2 post params

func (*FilterV2PostParams) WithContext

WithContext adds the context to the filter v2 post params

func (*FilterV2PostParams) WithDefaults

func (o *FilterV2PostParams) WithDefaults() *FilterV2PostParams

WithDefaults hydrates default values in the filter v2 post params (not the query body).

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

func (*FilterV2PostParams) WithExpiresIn

func (o *FilterV2PostParams) WithExpiresIn(expiresIn *float64) *FilterV2PostParams

WithExpiresIn adds the expiresIn to the filter v2 post params

func (*FilterV2PostParams) WithFilterAction

func (o *FilterV2PostParams) WithFilterAction(filterAction *string) *FilterV2PostParams

WithFilterAction adds the filterAction to the filter v2 post params

func (*FilterV2PostParams) WithFilterContext

func (o *FilterV2PostParams) WithFilterContext(context []string) *FilterV2PostParams

WithFilterContext adds the filter context to the filter v2 post params

func (*FilterV2PostParams) WithHTTPClient

func (o *FilterV2PostParams) WithHTTPClient(client *http.Client) *FilterV2PostParams

WithHTTPClient adds the HTTPClient to the filter v2 post params

func (*FilterV2PostParams) WithKeywordsAttributesKeyword

func (o *FilterV2PostParams) WithKeywordsAttributesKeyword(keywordsAttributesKeyword []string) *FilterV2PostParams

WithKeywordsAttributesKeyword adds the keywordsAttributesKeyword to the filter v2 post params

func (*FilterV2PostParams) WithKeywordsAttributesWholeWord

func (o *FilterV2PostParams) WithKeywordsAttributesWholeWord(keywordsAttributesWholeWord []bool) *FilterV2PostParams

WithKeywordsAttributesWholeWord adds the keywordsAttributesWholeWord to the filter v2 post params

func (*FilterV2PostParams) WithStatusesAttributesStatusID

func (o *FilterV2PostParams) WithStatusesAttributesStatusID(statusesAttributesStatusID []string) *FilterV2PostParams

WithStatusesAttributesStatusID adds the statusesAttributesStatusID to the filter v2 post params

func (*FilterV2PostParams) WithTimeout

func (o *FilterV2PostParams) WithTimeout(timeout time.Duration) *FilterV2PostParams

WithTimeout adds the timeout to the filter v2 post params

func (*FilterV2PostParams) WithTitle

func (o *FilterV2PostParams) WithTitle(title string) *FilterV2PostParams

WithTitle adds the title to the filter v2 post params

func (*FilterV2PostParams) WriteToRequest

func (o *FilterV2PostParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV2PostReader

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

FilterV2PostReader is a Reader for the FilterV2Post structure.

func (*FilterV2PostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV2PostUnauthorized

type FilterV2PostUnauthorized struct {
}

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

unauthorized

func NewFilterV2PostUnauthorized

func NewFilterV2PostUnauthorized() *FilterV2PostUnauthorized

NewFilterV2PostUnauthorized creates a FilterV2PostUnauthorized with default headers values

func (*FilterV2PostUnauthorized) Code

func (o *FilterV2PostUnauthorized) Code() int

Code gets the status code for the filter v2 post unauthorized response

func (*FilterV2PostUnauthorized) Error

func (o *FilterV2PostUnauthorized) Error() string

func (*FilterV2PostUnauthorized) IsClientError

func (o *FilterV2PostUnauthorized) IsClientError() bool

IsClientError returns true when this filter v2 post unauthorized response has a 4xx status code

func (*FilterV2PostUnauthorized) IsCode

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

IsCode returns true when this filter v2 post unauthorized response a status code equal to that given

func (*FilterV2PostUnauthorized) IsRedirect

func (o *FilterV2PostUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v2 post unauthorized response has a 3xx status code

func (*FilterV2PostUnauthorized) IsServerError

func (o *FilterV2PostUnauthorized) IsServerError() bool

IsServerError returns true when this filter v2 post unauthorized response has a 5xx status code

func (*FilterV2PostUnauthorized) IsSuccess

func (o *FilterV2PostUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v2 post unauthorized response has a 2xx status code

func (*FilterV2PostUnauthorized) String

func (o *FilterV2PostUnauthorized) String() string

type FilterV2PostUnprocessableEntity

type FilterV2PostUnprocessableEntity struct {
}

FilterV2PostUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterV2PostUnprocessableEntity

func NewFilterV2PostUnprocessableEntity() *FilterV2PostUnprocessableEntity

NewFilterV2PostUnprocessableEntity creates a FilterV2PostUnprocessableEntity with default headers values

func (*FilterV2PostUnprocessableEntity) Code

Code gets the status code for the filter v2 post unprocessable entity response

func (*FilterV2PostUnprocessableEntity) Error

func (*FilterV2PostUnprocessableEntity) IsClientError

func (o *FilterV2PostUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter v2 post unprocessable entity response has a 4xx status code

func (*FilterV2PostUnprocessableEntity) IsCode

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

IsCode returns true when this filter v2 post unprocessable entity response a status code equal to that given

func (*FilterV2PostUnprocessableEntity) IsRedirect

func (o *FilterV2PostUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter v2 post unprocessable entity response has a 3xx status code

func (*FilterV2PostUnprocessableEntity) IsServerError

func (o *FilterV2PostUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter v2 post unprocessable entity response has a 5xx status code

func (*FilterV2PostUnprocessableEntity) IsSuccess

func (o *FilterV2PostUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this filter v2 post unprocessable entity response has a 2xx status code

func (*FilterV2PostUnprocessableEntity) String

type FilterV2PutBadRequest

type FilterV2PutBadRequest struct {
}

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

bad request

func NewFilterV2PutBadRequest

func NewFilterV2PutBadRequest() *FilterV2PutBadRequest

NewFilterV2PutBadRequest creates a FilterV2PutBadRequest with default headers values

func (*FilterV2PutBadRequest) Code

func (o *FilterV2PutBadRequest) Code() int

Code gets the status code for the filter v2 put bad request response

func (*FilterV2PutBadRequest) Error

func (o *FilterV2PutBadRequest) Error() string

func (*FilterV2PutBadRequest) IsClientError

func (o *FilterV2PutBadRequest) IsClientError() bool

IsClientError returns true when this filter v2 put bad request response has a 4xx status code

func (*FilterV2PutBadRequest) IsCode

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

IsCode returns true when this filter v2 put bad request response a status code equal to that given

func (*FilterV2PutBadRequest) IsRedirect

func (o *FilterV2PutBadRequest) IsRedirect() bool

IsRedirect returns true when this filter v2 put bad request response has a 3xx status code

func (*FilterV2PutBadRequest) IsServerError

func (o *FilterV2PutBadRequest) IsServerError() bool

IsServerError returns true when this filter v2 put bad request response has a 5xx status code

func (*FilterV2PutBadRequest) IsSuccess

func (o *FilterV2PutBadRequest) IsSuccess() bool

IsSuccess returns true when this filter v2 put bad request response has a 2xx status code

func (*FilterV2PutBadRequest) String

func (o *FilterV2PutBadRequest) String() string

type FilterV2PutConflict

type FilterV2PutConflict struct {
}

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

conflict (duplicate title, keyword, or status)

func NewFilterV2PutConflict

func NewFilterV2PutConflict() *FilterV2PutConflict

NewFilterV2PutConflict creates a FilterV2PutConflict with default headers values

func (*FilterV2PutConflict) Code

func (o *FilterV2PutConflict) Code() int

Code gets the status code for the filter v2 put conflict response

func (*FilterV2PutConflict) Error

func (o *FilterV2PutConflict) Error() string

func (*FilterV2PutConflict) IsClientError

func (o *FilterV2PutConflict) IsClientError() bool

IsClientError returns true when this filter v2 put conflict response has a 4xx status code

func (*FilterV2PutConflict) IsCode

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

IsCode returns true when this filter v2 put conflict response a status code equal to that given

func (*FilterV2PutConflict) IsRedirect

func (o *FilterV2PutConflict) IsRedirect() bool

IsRedirect returns true when this filter v2 put conflict response has a 3xx status code

func (*FilterV2PutConflict) IsServerError

func (o *FilterV2PutConflict) IsServerError() bool

IsServerError returns true when this filter v2 put conflict response has a 5xx status code

func (*FilterV2PutConflict) IsSuccess

func (o *FilterV2PutConflict) IsSuccess() bool

IsSuccess returns true when this filter v2 put conflict response has a 2xx status code

func (*FilterV2PutConflict) String

func (o *FilterV2PutConflict) String() string

type FilterV2PutForbidden

type FilterV2PutForbidden struct {
}

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

forbidden to moved accounts

func NewFilterV2PutForbidden

func NewFilterV2PutForbidden() *FilterV2PutForbidden

NewFilterV2PutForbidden creates a FilterV2PutForbidden with default headers values

func (*FilterV2PutForbidden) Code

func (o *FilterV2PutForbidden) Code() int

Code gets the status code for the filter v2 put forbidden response

func (*FilterV2PutForbidden) Error

func (o *FilterV2PutForbidden) Error() string

func (*FilterV2PutForbidden) IsClientError

func (o *FilterV2PutForbidden) IsClientError() bool

IsClientError returns true when this filter v2 put forbidden response has a 4xx status code

func (*FilterV2PutForbidden) IsCode

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

IsCode returns true when this filter v2 put forbidden response a status code equal to that given

func (*FilterV2PutForbidden) IsRedirect

func (o *FilterV2PutForbidden) IsRedirect() bool

IsRedirect returns true when this filter v2 put forbidden response has a 3xx status code

func (*FilterV2PutForbidden) IsServerError

func (o *FilterV2PutForbidden) IsServerError() bool

IsServerError returns true when this filter v2 put forbidden response has a 5xx status code

func (*FilterV2PutForbidden) IsSuccess

func (o *FilterV2PutForbidden) IsSuccess() bool

IsSuccess returns true when this filter v2 put forbidden response has a 2xx status code

func (*FilterV2PutForbidden) String

func (o *FilterV2PutForbidden) String() string

type FilterV2PutInternalServerError

type FilterV2PutInternalServerError struct {
}

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

internal server error

func NewFilterV2PutInternalServerError

func NewFilterV2PutInternalServerError() *FilterV2PutInternalServerError

NewFilterV2PutInternalServerError creates a FilterV2PutInternalServerError with default headers values

func (*FilterV2PutInternalServerError) Code

Code gets the status code for the filter v2 put internal server error response

func (*FilterV2PutInternalServerError) Error

func (*FilterV2PutInternalServerError) IsClientError

func (o *FilterV2PutInternalServerError) IsClientError() bool

IsClientError returns true when this filter v2 put internal server error response has a 4xx status code

func (*FilterV2PutInternalServerError) IsCode

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

IsCode returns true when this filter v2 put internal server error response a status code equal to that given

func (*FilterV2PutInternalServerError) IsRedirect

func (o *FilterV2PutInternalServerError) IsRedirect() bool

IsRedirect returns true when this filter v2 put internal server error response has a 3xx status code

func (*FilterV2PutInternalServerError) IsServerError

func (o *FilterV2PutInternalServerError) IsServerError() bool

IsServerError returns true when this filter v2 put internal server error response has a 5xx status code

func (*FilterV2PutInternalServerError) IsSuccess

func (o *FilterV2PutInternalServerError) IsSuccess() bool

IsSuccess returns true when this filter v2 put internal server error response has a 2xx status code

func (*FilterV2PutInternalServerError) String

type FilterV2PutNotAcceptable

type FilterV2PutNotAcceptable struct {
}

FilterV2PutNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFilterV2PutNotAcceptable

func NewFilterV2PutNotAcceptable() *FilterV2PutNotAcceptable

NewFilterV2PutNotAcceptable creates a FilterV2PutNotAcceptable with default headers values

func (*FilterV2PutNotAcceptable) Code

func (o *FilterV2PutNotAcceptable) Code() int

Code gets the status code for the filter v2 put not acceptable response

func (*FilterV2PutNotAcceptable) Error

func (o *FilterV2PutNotAcceptable) Error() string

func (*FilterV2PutNotAcceptable) IsClientError

func (o *FilterV2PutNotAcceptable) IsClientError() bool

IsClientError returns true when this filter v2 put not acceptable response has a 4xx status code

func (*FilterV2PutNotAcceptable) IsCode

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

IsCode returns true when this filter v2 put not acceptable response a status code equal to that given

func (*FilterV2PutNotAcceptable) IsRedirect

func (o *FilterV2PutNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filter v2 put not acceptable response has a 3xx status code

func (*FilterV2PutNotAcceptable) IsServerError

func (o *FilterV2PutNotAcceptable) IsServerError() bool

IsServerError returns true when this filter v2 put not acceptable response has a 5xx status code

func (*FilterV2PutNotAcceptable) IsSuccess

func (o *FilterV2PutNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filter v2 put not acceptable response has a 2xx status code

func (*FilterV2PutNotAcceptable) String

func (o *FilterV2PutNotAcceptable) String() string

type FilterV2PutNotFound

type FilterV2PutNotFound struct {
}

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

not found

func NewFilterV2PutNotFound

func NewFilterV2PutNotFound() *FilterV2PutNotFound

NewFilterV2PutNotFound creates a FilterV2PutNotFound with default headers values

func (*FilterV2PutNotFound) Code

func (o *FilterV2PutNotFound) Code() int

Code gets the status code for the filter v2 put not found response

func (*FilterV2PutNotFound) Error

func (o *FilterV2PutNotFound) Error() string

func (*FilterV2PutNotFound) IsClientError

func (o *FilterV2PutNotFound) IsClientError() bool

IsClientError returns true when this filter v2 put not found response has a 4xx status code

func (*FilterV2PutNotFound) IsCode

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

IsCode returns true when this filter v2 put not found response a status code equal to that given

func (*FilterV2PutNotFound) IsRedirect

func (o *FilterV2PutNotFound) IsRedirect() bool

IsRedirect returns true when this filter v2 put not found response has a 3xx status code

func (*FilterV2PutNotFound) IsServerError

func (o *FilterV2PutNotFound) IsServerError() bool

IsServerError returns true when this filter v2 put not found response has a 5xx status code

func (*FilterV2PutNotFound) IsSuccess

func (o *FilterV2PutNotFound) IsSuccess() bool

IsSuccess returns true when this filter v2 put not found response has a 2xx status code

func (*FilterV2PutNotFound) String

func (o *FilterV2PutNotFound) String() string

type FilterV2PutOK

type FilterV2PutOK struct {
	Payload *models.FilterV2
}

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

Updated filter.

func NewFilterV2PutOK

func NewFilterV2PutOK() *FilterV2PutOK

NewFilterV2PutOK creates a FilterV2PutOK with default headers values

func (*FilterV2PutOK) Code

func (o *FilterV2PutOK) Code() int

Code gets the status code for the filter v2 put o k response

func (*FilterV2PutOK) Error

func (o *FilterV2PutOK) Error() string

func (*FilterV2PutOK) GetPayload

func (o *FilterV2PutOK) GetPayload() *models.FilterV2

func (*FilterV2PutOK) IsClientError

func (o *FilterV2PutOK) IsClientError() bool

IsClientError returns true when this filter v2 put o k response has a 4xx status code

func (*FilterV2PutOK) IsCode

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

IsCode returns true when this filter v2 put o k response a status code equal to that given

func (*FilterV2PutOK) IsRedirect

func (o *FilterV2PutOK) IsRedirect() bool

IsRedirect returns true when this filter v2 put o k response has a 3xx status code

func (*FilterV2PutOK) IsServerError

func (o *FilterV2PutOK) IsServerError() bool

IsServerError returns true when this filter v2 put o k response has a 5xx status code

func (*FilterV2PutOK) IsSuccess

func (o *FilterV2PutOK) IsSuccess() bool

IsSuccess returns true when this filter v2 put o k response has a 2xx status code

func (*FilterV2PutOK) String

func (o *FilterV2PutOK) String() string

type FilterV2PutParams

type FilterV2PutParams struct {

	/* FilterContext.

	     The contexts in which the filter should be applied.

	Sample: home, public
	*/
	FilterContext []string

	/* ExpiresIn.

	     Number of seconds from now that the filter should expire.

	Sample: 86400
	*/
	ExpiresIn *float64

	/* ID.

	   ID of the filter.
	*/
	ID string

	/* KeywordsAttributesKeyword.

	   Keywords to be added to the created filter.
	*/
	KeywordsAttributesKeyword []string

	/* KeywordsAttributesWholeWord.

	   Should each keyword consider word boundaries?
	*/
	KeywordsAttributesWholeWord []bool

	/* StatusesAttributesStatusID.

	   Statuses to be added to the newly created filter.
	*/
	StatusesAttributesStatusID []string

	/* Title.

	     The name of the filter.

	Sample: illuminati nonsense
	*/
	Title string

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

FilterV2PutParams contains all the parameters to send to the API endpoint

for the filter v2 put operation.

Typically these are written to a http.Request.

func NewFilterV2PutParams

func NewFilterV2PutParams() *FilterV2PutParams

NewFilterV2PutParams creates a new FilterV2PutParams 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 NewFilterV2PutParamsWithContext

func NewFilterV2PutParamsWithContext(ctx context.Context) *FilterV2PutParams

NewFilterV2PutParamsWithContext creates a new FilterV2PutParams object with the ability to set a context for a request.

func NewFilterV2PutParamsWithHTTPClient

func NewFilterV2PutParamsWithHTTPClient(client *http.Client) *FilterV2PutParams

NewFilterV2PutParamsWithHTTPClient creates a new FilterV2PutParams object with the ability to set a custom HTTPClient for a request.

func NewFilterV2PutParamsWithTimeout

func NewFilterV2PutParamsWithTimeout(timeout time.Duration) *FilterV2PutParams

NewFilterV2PutParamsWithTimeout creates a new FilterV2PutParams object with the ability to set a timeout on a request.

func (*FilterV2PutParams) SetContext

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

SetContext adds the context to the filter v2 put params

func (*FilterV2PutParams) SetDefaults

func (o *FilterV2PutParams) SetDefaults()

SetDefaults hydrates default values in the filter v2 put params (not the query body).

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

func (*FilterV2PutParams) SetExpiresIn

func (o *FilterV2PutParams) SetExpiresIn(expiresIn *float64)

SetExpiresIn adds the expiresIn to the filter v2 put params

func (*FilterV2PutParams) SetFilterContext

func (o *FilterV2PutParams) SetFilterContext(context []string)

SetFilterContext adds the filter context to the filter v2 put params

func (*FilterV2PutParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filter v2 put params

func (*FilterV2PutParams) SetID

func (o *FilterV2PutParams) SetID(id string)

SetID adds the id to the filter v2 put params

func (*FilterV2PutParams) SetKeywordsAttributesKeyword

func (o *FilterV2PutParams) SetKeywordsAttributesKeyword(keywordsAttributesKeyword []string)

SetKeywordsAttributesKeyword adds the keywordsAttributesKeyword to the filter v2 put params

func (*FilterV2PutParams) SetKeywordsAttributesWholeWord

func (o *FilterV2PutParams) SetKeywordsAttributesWholeWord(keywordsAttributesWholeWord []bool)

SetKeywordsAttributesWholeWord adds the keywordsAttributesWholeWord to the filter v2 put params

func (*FilterV2PutParams) SetStatusesAttributesStatusID

func (o *FilterV2PutParams) SetStatusesAttributesStatusID(statusesAttributesStatusID []string)

SetStatusesAttributesStatusID adds the statusesAttributesStatusId to the filter v2 put params

func (*FilterV2PutParams) SetTimeout

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

SetTimeout adds the timeout to the filter v2 put params

func (*FilterV2PutParams) SetTitle

func (o *FilterV2PutParams) SetTitle(title string)

SetTitle adds the title to the filter v2 put params

func (*FilterV2PutParams) WithContext

func (o *FilterV2PutParams) WithContext(ctx context.Context) *FilterV2PutParams

WithContext adds the context to the filter v2 put params

func (*FilterV2PutParams) WithDefaults

func (o *FilterV2PutParams) WithDefaults() *FilterV2PutParams

WithDefaults hydrates default values in the filter v2 put params (not the query body).

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

func (*FilterV2PutParams) WithExpiresIn

func (o *FilterV2PutParams) WithExpiresIn(expiresIn *float64) *FilterV2PutParams

WithExpiresIn adds the expiresIn to the filter v2 put params

func (*FilterV2PutParams) WithFilterContext

func (o *FilterV2PutParams) WithFilterContext(context []string) *FilterV2PutParams

WithFilterContext adds the filter context to the filter v2 put params

func (*FilterV2PutParams) WithHTTPClient

func (o *FilterV2PutParams) WithHTTPClient(client *http.Client) *FilterV2PutParams

WithHTTPClient adds the HTTPClient to the filter v2 put params

func (*FilterV2PutParams) WithID

WithID adds the id to the filter v2 put params

func (*FilterV2PutParams) WithKeywordsAttributesKeyword

func (o *FilterV2PutParams) WithKeywordsAttributesKeyword(keywordsAttributesKeyword []string) *FilterV2PutParams

WithKeywordsAttributesKeyword adds the keywordsAttributesKeyword to the filter v2 put params

func (*FilterV2PutParams) WithKeywordsAttributesWholeWord

func (o *FilterV2PutParams) WithKeywordsAttributesWholeWord(keywordsAttributesWholeWord []bool) *FilterV2PutParams

WithKeywordsAttributesWholeWord adds the keywordsAttributesWholeWord to the filter v2 put params

func (*FilterV2PutParams) WithStatusesAttributesStatusID

func (o *FilterV2PutParams) WithStatusesAttributesStatusID(statusesAttributesStatusID []string) *FilterV2PutParams

WithStatusesAttributesStatusID adds the statusesAttributesStatusID to the filter v2 put params

func (*FilterV2PutParams) WithTimeout

func (o *FilterV2PutParams) WithTimeout(timeout time.Duration) *FilterV2PutParams

WithTimeout adds the timeout to the filter v2 put params

func (*FilterV2PutParams) WithTitle

func (o *FilterV2PutParams) WithTitle(title string) *FilterV2PutParams

WithTitle adds the title to the filter v2 put params

func (*FilterV2PutParams) WriteToRequest

func (o *FilterV2PutParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FilterV2PutReader

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

FilterV2PutReader is a Reader for the FilterV2Put structure.

func (*FilterV2PutReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FilterV2PutUnauthorized

type FilterV2PutUnauthorized struct {
}

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

unauthorized

func NewFilterV2PutUnauthorized

func NewFilterV2PutUnauthorized() *FilterV2PutUnauthorized

NewFilterV2PutUnauthorized creates a FilterV2PutUnauthorized with default headers values

func (*FilterV2PutUnauthorized) Code

func (o *FilterV2PutUnauthorized) Code() int

Code gets the status code for the filter v2 put unauthorized response

func (*FilterV2PutUnauthorized) Error

func (o *FilterV2PutUnauthorized) Error() string

func (*FilterV2PutUnauthorized) IsClientError

func (o *FilterV2PutUnauthorized) IsClientError() bool

IsClientError returns true when this filter v2 put unauthorized response has a 4xx status code

func (*FilterV2PutUnauthorized) IsCode

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

IsCode returns true when this filter v2 put unauthorized response a status code equal to that given

func (*FilterV2PutUnauthorized) IsRedirect

func (o *FilterV2PutUnauthorized) IsRedirect() bool

IsRedirect returns true when this filter v2 put unauthorized response has a 3xx status code

func (*FilterV2PutUnauthorized) IsServerError

func (o *FilterV2PutUnauthorized) IsServerError() bool

IsServerError returns true when this filter v2 put unauthorized response has a 5xx status code

func (*FilterV2PutUnauthorized) IsSuccess

func (o *FilterV2PutUnauthorized) IsSuccess() bool

IsSuccess returns true when this filter v2 put unauthorized response has a 2xx status code

func (*FilterV2PutUnauthorized) String

func (o *FilterV2PutUnauthorized) String() string

type FilterV2PutUnprocessableEntity

type FilterV2PutUnprocessableEntity struct {
}

FilterV2PutUnprocessableEntity describes a response with status code 422, with default header values.

unprocessable content

func NewFilterV2PutUnprocessableEntity

func NewFilterV2PutUnprocessableEntity() *FilterV2PutUnprocessableEntity

NewFilterV2PutUnprocessableEntity creates a FilterV2PutUnprocessableEntity with default headers values

func (*FilterV2PutUnprocessableEntity) Code

Code gets the status code for the filter v2 put unprocessable entity response

func (*FilterV2PutUnprocessableEntity) Error

func (*FilterV2PutUnprocessableEntity) IsClientError

func (o *FilterV2PutUnprocessableEntity) IsClientError() bool

IsClientError returns true when this filter v2 put unprocessable entity response has a 4xx status code

func (*FilterV2PutUnprocessableEntity) IsCode

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

IsCode returns true when this filter v2 put unprocessable entity response a status code equal to that given

func (*FilterV2PutUnprocessableEntity) IsRedirect

func (o *FilterV2PutUnprocessableEntity) IsRedirect() bool

IsRedirect returns true when this filter v2 put unprocessable entity response has a 3xx status code

func (*FilterV2PutUnprocessableEntity) IsServerError

func (o *FilterV2PutUnprocessableEntity) IsServerError() bool

IsServerError returns true when this filter v2 put unprocessable entity response has a 5xx status code

func (*FilterV2PutUnprocessableEntity) IsSuccess

func (o *FilterV2PutUnprocessableEntity) IsSuccess() bool

IsSuccess returns true when this filter v2 put unprocessable entity response has a 2xx status code

func (*FilterV2PutUnprocessableEntity) String

type FiltersV1GetBadRequest

type FiltersV1GetBadRequest struct {
}

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

bad request

func NewFiltersV1GetBadRequest

func NewFiltersV1GetBadRequest() *FiltersV1GetBadRequest

NewFiltersV1GetBadRequest creates a FiltersV1GetBadRequest with default headers values

func (*FiltersV1GetBadRequest) Code

func (o *FiltersV1GetBadRequest) Code() int

Code gets the status code for the filters v1 get bad request response

func (*FiltersV1GetBadRequest) Error

func (o *FiltersV1GetBadRequest) Error() string

func (*FiltersV1GetBadRequest) IsClientError

func (o *FiltersV1GetBadRequest) IsClientError() bool

IsClientError returns true when this filters v1 get bad request response has a 4xx status code

func (*FiltersV1GetBadRequest) IsCode

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

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

func (*FiltersV1GetBadRequest) IsRedirect

func (o *FiltersV1GetBadRequest) IsRedirect() bool

IsRedirect returns true when this filters v1 get bad request response has a 3xx status code

func (*FiltersV1GetBadRequest) IsServerError

func (o *FiltersV1GetBadRequest) IsServerError() bool

IsServerError returns true when this filters v1 get bad request response has a 5xx status code

func (*FiltersV1GetBadRequest) IsSuccess

func (o *FiltersV1GetBadRequest) IsSuccess() bool

IsSuccess returns true when this filters v1 get bad request response has a 2xx status code

func (*FiltersV1GetBadRequest) String

func (o *FiltersV1GetBadRequest) String() string

type FiltersV1GetInternalServerError

type FiltersV1GetInternalServerError struct {
}

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

internal server error

func NewFiltersV1GetInternalServerError

func NewFiltersV1GetInternalServerError() *FiltersV1GetInternalServerError

NewFiltersV1GetInternalServerError creates a FiltersV1GetInternalServerError with default headers values

func (*FiltersV1GetInternalServerError) Code

Code gets the status code for the filters v1 get internal server error response

func (*FiltersV1GetInternalServerError) Error

func (*FiltersV1GetInternalServerError) IsClientError

func (o *FiltersV1GetInternalServerError) IsClientError() bool

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

func (*FiltersV1GetInternalServerError) IsCode

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

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

func (*FiltersV1GetInternalServerError) IsRedirect

func (o *FiltersV1GetInternalServerError) IsRedirect() bool

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

func (*FiltersV1GetInternalServerError) IsServerError

func (o *FiltersV1GetInternalServerError) IsServerError() bool

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

func (*FiltersV1GetInternalServerError) IsSuccess

func (o *FiltersV1GetInternalServerError) IsSuccess() bool

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

func (*FiltersV1GetInternalServerError) String

type FiltersV1GetNotAcceptable

type FiltersV1GetNotAcceptable struct {
}

FiltersV1GetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFiltersV1GetNotAcceptable

func NewFiltersV1GetNotAcceptable() *FiltersV1GetNotAcceptable

NewFiltersV1GetNotAcceptable creates a FiltersV1GetNotAcceptable with default headers values

func (*FiltersV1GetNotAcceptable) Code

func (o *FiltersV1GetNotAcceptable) Code() int

Code gets the status code for the filters v1 get not acceptable response

func (*FiltersV1GetNotAcceptable) Error

func (o *FiltersV1GetNotAcceptable) Error() string

func (*FiltersV1GetNotAcceptable) IsClientError

func (o *FiltersV1GetNotAcceptable) IsClientError() bool

IsClientError returns true when this filters v1 get not acceptable response has a 4xx status code

func (*FiltersV1GetNotAcceptable) IsCode

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

IsCode returns true when this filters v1 get not acceptable response a status code equal to that given

func (*FiltersV1GetNotAcceptable) IsRedirect

func (o *FiltersV1GetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filters v1 get not acceptable response has a 3xx status code

func (*FiltersV1GetNotAcceptable) IsServerError

func (o *FiltersV1GetNotAcceptable) IsServerError() bool

IsServerError returns true when this filters v1 get not acceptable response has a 5xx status code

func (*FiltersV1GetNotAcceptable) IsSuccess

func (o *FiltersV1GetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filters v1 get not acceptable response has a 2xx status code

func (*FiltersV1GetNotAcceptable) String

func (o *FiltersV1GetNotAcceptable) String() string

type FiltersV1GetNotFound

type FiltersV1GetNotFound struct {
}

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

not found

func NewFiltersV1GetNotFound

func NewFiltersV1GetNotFound() *FiltersV1GetNotFound

NewFiltersV1GetNotFound creates a FiltersV1GetNotFound with default headers values

func (*FiltersV1GetNotFound) Code

func (o *FiltersV1GetNotFound) Code() int

Code gets the status code for the filters v1 get not found response

func (*FiltersV1GetNotFound) Error

func (o *FiltersV1GetNotFound) Error() string

func (*FiltersV1GetNotFound) IsClientError

func (o *FiltersV1GetNotFound) IsClientError() bool

IsClientError returns true when this filters v1 get not found response has a 4xx status code

func (*FiltersV1GetNotFound) IsCode

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

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

func (*FiltersV1GetNotFound) IsRedirect

func (o *FiltersV1GetNotFound) IsRedirect() bool

IsRedirect returns true when this filters v1 get not found response has a 3xx status code

func (*FiltersV1GetNotFound) IsServerError

func (o *FiltersV1GetNotFound) IsServerError() bool

IsServerError returns true when this filters v1 get not found response has a 5xx status code

func (*FiltersV1GetNotFound) IsSuccess

func (o *FiltersV1GetNotFound) IsSuccess() bool

IsSuccess returns true when this filters v1 get not found response has a 2xx status code

func (*FiltersV1GetNotFound) String

func (o *FiltersV1GetNotFound) String() string

type FiltersV1GetOK

type FiltersV1GetOK struct {
	Payload []*models.FilterV1
}

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

Requested filters.

func NewFiltersV1GetOK

func NewFiltersV1GetOK() *FiltersV1GetOK

NewFiltersV1GetOK creates a FiltersV1GetOK with default headers values

func (*FiltersV1GetOK) Code

func (o *FiltersV1GetOK) Code() int

Code gets the status code for the filters v1 get o k response

func (*FiltersV1GetOK) Error

func (o *FiltersV1GetOK) Error() string

func (*FiltersV1GetOK) GetPayload

func (o *FiltersV1GetOK) GetPayload() []*models.FilterV1

func (*FiltersV1GetOK) IsClientError

func (o *FiltersV1GetOK) IsClientError() bool

IsClientError returns true when this filters v1 get o k response has a 4xx status code

func (*FiltersV1GetOK) IsCode

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

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

func (*FiltersV1GetOK) IsRedirect

func (o *FiltersV1GetOK) IsRedirect() bool

IsRedirect returns true when this filters v1 get o k response has a 3xx status code

func (*FiltersV1GetOK) IsServerError

func (o *FiltersV1GetOK) IsServerError() bool

IsServerError returns true when this filters v1 get o k response has a 5xx status code

func (*FiltersV1GetOK) IsSuccess

func (o *FiltersV1GetOK) IsSuccess() bool

IsSuccess returns true when this filters v1 get o k response has a 2xx status code

func (*FiltersV1GetOK) String

func (o *FiltersV1GetOK) String() string

type FiltersV1GetParams

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

FiltersV1GetParams contains all the parameters to send to the API endpoint

for the filters v1 get operation.

Typically these are written to a http.Request.

func NewFiltersV1GetParams

func NewFiltersV1GetParams() *FiltersV1GetParams

NewFiltersV1GetParams creates a new FiltersV1GetParams 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 NewFiltersV1GetParamsWithContext

func NewFiltersV1GetParamsWithContext(ctx context.Context) *FiltersV1GetParams

NewFiltersV1GetParamsWithContext creates a new FiltersV1GetParams object with the ability to set a context for a request.

func NewFiltersV1GetParamsWithHTTPClient

func NewFiltersV1GetParamsWithHTTPClient(client *http.Client) *FiltersV1GetParams

NewFiltersV1GetParamsWithHTTPClient creates a new FiltersV1GetParams object with the ability to set a custom HTTPClient for a request.

func NewFiltersV1GetParamsWithTimeout

func NewFiltersV1GetParamsWithTimeout(timeout time.Duration) *FiltersV1GetParams

NewFiltersV1GetParamsWithTimeout creates a new FiltersV1GetParams object with the ability to set a timeout on a request.

func (*FiltersV1GetParams) SetContext

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

SetContext adds the context to the filters v1 get params

func (*FiltersV1GetParams) SetDefaults

func (o *FiltersV1GetParams) SetDefaults()

SetDefaults hydrates default values in the filters v1 get params (not the query body).

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

func (*FiltersV1GetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filters v1 get params

func (*FiltersV1GetParams) SetTimeout

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

SetTimeout adds the timeout to the filters v1 get params

func (*FiltersV1GetParams) WithContext

WithContext adds the context to the filters v1 get params

func (*FiltersV1GetParams) WithDefaults

func (o *FiltersV1GetParams) WithDefaults() *FiltersV1GetParams

WithDefaults hydrates default values in the filters v1 get params (not the query body).

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

func (*FiltersV1GetParams) WithHTTPClient

func (o *FiltersV1GetParams) WithHTTPClient(client *http.Client) *FiltersV1GetParams

WithHTTPClient adds the HTTPClient to the filters v1 get params

func (*FiltersV1GetParams) WithTimeout

func (o *FiltersV1GetParams) WithTimeout(timeout time.Duration) *FiltersV1GetParams

WithTimeout adds the timeout to the filters v1 get params

func (*FiltersV1GetParams) WriteToRequest

func (o *FiltersV1GetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FiltersV1GetReader

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

FiltersV1GetReader is a Reader for the FiltersV1Get structure.

func (*FiltersV1GetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FiltersV1GetUnauthorized

type FiltersV1GetUnauthorized struct {
}

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

unauthorized

func NewFiltersV1GetUnauthorized

func NewFiltersV1GetUnauthorized() *FiltersV1GetUnauthorized

NewFiltersV1GetUnauthorized creates a FiltersV1GetUnauthorized with default headers values

func (*FiltersV1GetUnauthorized) Code

func (o *FiltersV1GetUnauthorized) Code() int

Code gets the status code for the filters v1 get unauthorized response

func (*FiltersV1GetUnauthorized) Error

func (o *FiltersV1GetUnauthorized) Error() string

func (*FiltersV1GetUnauthorized) IsClientError

func (o *FiltersV1GetUnauthorized) IsClientError() bool

IsClientError returns true when this filters v1 get unauthorized response has a 4xx status code

func (*FiltersV1GetUnauthorized) IsCode

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

IsCode returns true when this filters v1 get unauthorized response a status code equal to that given

func (*FiltersV1GetUnauthorized) IsRedirect

func (o *FiltersV1GetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filters v1 get unauthorized response has a 3xx status code

func (*FiltersV1GetUnauthorized) IsServerError

func (o *FiltersV1GetUnauthorized) IsServerError() bool

IsServerError returns true when this filters v1 get unauthorized response has a 5xx status code

func (*FiltersV1GetUnauthorized) IsSuccess

func (o *FiltersV1GetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filters v1 get unauthorized response has a 2xx status code

func (*FiltersV1GetUnauthorized) String

func (o *FiltersV1GetUnauthorized) String() string

type FiltersV2GetBadRequest

type FiltersV2GetBadRequest struct {
}

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

bad request

func NewFiltersV2GetBadRequest

func NewFiltersV2GetBadRequest() *FiltersV2GetBadRequest

NewFiltersV2GetBadRequest creates a FiltersV2GetBadRequest with default headers values

func (*FiltersV2GetBadRequest) Code

func (o *FiltersV2GetBadRequest) Code() int

Code gets the status code for the filters v2 get bad request response

func (*FiltersV2GetBadRequest) Error

func (o *FiltersV2GetBadRequest) Error() string

func (*FiltersV2GetBadRequest) IsClientError

func (o *FiltersV2GetBadRequest) IsClientError() bool

IsClientError returns true when this filters v2 get bad request response has a 4xx status code

func (*FiltersV2GetBadRequest) IsCode

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

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

func (*FiltersV2GetBadRequest) IsRedirect

func (o *FiltersV2GetBadRequest) IsRedirect() bool

IsRedirect returns true when this filters v2 get bad request response has a 3xx status code

func (*FiltersV2GetBadRequest) IsServerError

func (o *FiltersV2GetBadRequest) IsServerError() bool

IsServerError returns true when this filters v2 get bad request response has a 5xx status code

func (*FiltersV2GetBadRequest) IsSuccess

func (o *FiltersV2GetBadRequest) IsSuccess() bool

IsSuccess returns true when this filters v2 get bad request response has a 2xx status code

func (*FiltersV2GetBadRequest) String

func (o *FiltersV2GetBadRequest) String() string

type FiltersV2GetInternalServerError

type FiltersV2GetInternalServerError struct {
}

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

internal server error

func NewFiltersV2GetInternalServerError

func NewFiltersV2GetInternalServerError() *FiltersV2GetInternalServerError

NewFiltersV2GetInternalServerError creates a FiltersV2GetInternalServerError with default headers values

func (*FiltersV2GetInternalServerError) Code

Code gets the status code for the filters v2 get internal server error response

func (*FiltersV2GetInternalServerError) Error

func (*FiltersV2GetInternalServerError) IsClientError

func (o *FiltersV2GetInternalServerError) IsClientError() bool

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

func (*FiltersV2GetInternalServerError) IsCode

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

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

func (*FiltersV2GetInternalServerError) IsRedirect

func (o *FiltersV2GetInternalServerError) IsRedirect() bool

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

func (*FiltersV2GetInternalServerError) IsServerError

func (o *FiltersV2GetInternalServerError) IsServerError() bool

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

func (*FiltersV2GetInternalServerError) IsSuccess

func (o *FiltersV2GetInternalServerError) IsSuccess() bool

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

func (*FiltersV2GetInternalServerError) String

type FiltersV2GetNotAcceptable

type FiltersV2GetNotAcceptable struct {
}

FiltersV2GetNotAcceptable describes a response with status code 406, with default header values.

not acceptable

func NewFiltersV2GetNotAcceptable

func NewFiltersV2GetNotAcceptable() *FiltersV2GetNotAcceptable

NewFiltersV2GetNotAcceptable creates a FiltersV2GetNotAcceptable with default headers values

func (*FiltersV2GetNotAcceptable) Code

func (o *FiltersV2GetNotAcceptable) Code() int

Code gets the status code for the filters v2 get not acceptable response

func (*FiltersV2GetNotAcceptable) Error

func (o *FiltersV2GetNotAcceptable) Error() string

func (*FiltersV2GetNotAcceptable) IsClientError

func (o *FiltersV2GetNotAcceptable) IsClientError() bool

IsClientError returns true when this filters v2 get not acceptable response has a 4xx status code

func (*FiltersV2GetNotAcceptable) IsCode

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

IsCode returns true when this filters v2 get not acceptable response a status code equal to that given

func (*FiltersV2GetNotAcceptable) IsRedirect

func (o *FiltersV2GetNotAcceptable) IsRedirect() bool

IsRedirect returns true when this filters v2 get not acceptable response has a 3xx status code

func (*FiltersV2GetNotAcceptable) IsServerError

func (o *FiltersV2GetNotAcceptable) IsServerError() bool

IsServerError returns true when this filters v2 get not acceptable response has a 5xx status code

func (*FiltersV2GetNotAcceptable) IsSuccess

func (o *FiltersV2GetNotAcceptable) IsSuccess() bool

IsSuccess returns true when this filters v2 get not acceptable response has a 2xx status code

func (*FiltersV2GetNotAcceptable) String

func (o *FiltersV2GetNotAcceptable) String() string

type FiltersV2GetNotFound

type FiltersV2GetNotFound struct {
}

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

not found

func NewFiltersV2GetNotFound

func NewFiltersV2GetNotFound() *FiltersV2GetNotFound

NewFiltersV2GetNotFound creates a FiltersV2GetNotFound with default headers values

func (*FiltersV2GetNotFound) Code

func (o *FiltersV2GetNotFound) Code() int

Code gets the status code for the filters v2 get not found response

func (*FiltersV2GetNotFound) Error

func (o *FiltersV2GetNotFound) Error() string

func (*FiltersV2GetNotFound) IsClientError

func (o *FiltersV2GetNotFound) IsClientError() bool

IsClientError returns true when this filters v2 get not found response has a 4xx status code

func (*FiltersV2GetNotFound) IsCode

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

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

func (*FiltersV2GetNotFound) IsRedirect

func (o *FiltersV2GetNotFound) IsRedirect() bool

IsRedirect returns true when this filters v2 get not found response has a 3xx status code

func (*FiltersV2GetNotFound) IsServerError

func (o *FiltersV2GetNotFound) IsServerError() bool

IsServerError returns true when this filters v2 get not found response has a 5xx status code

func (*FiltersV2GetNotFound) IsSuccess

func (o *FiltersV2GetNotFound) IsSuccess() bool

IsSuccess returns true when this filters v2 get not found response has a 2xx status code

func (*FiltersV2GetNotFound) String

func (o *FiltersV2GetNotFound) String() string

type FiltersV2GetOK

type FiltersV2GetOK struct {
	Payload []*models.FilterV2
}

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

Requested filters.

func NewFiltersV2GetOK

func NewFiltersV2GetOK() *FiltersV2GetOK

NewFiltersV2GetOK creates a FiltersV2GetOK with default headers values

func (*FiltersV2GetOK) Code

func (o *FiltersV2GetOK) Code() int

Code gets the status code for the filters v2 get o k response

func (*FiltersV2GetOK) Error

func (o *FiltersV2GetOK) Error() string

func (*FiltersV2GetOK) GetPayload

func (o *FiltersV2GetOK) GetPayload() []*models.FilterV2

func (*FiltersV2GetOK) IsClientError

func (o *FiltersV2GetOK) IsClientError() bool

IsClientError returns true when this filters v2 get o k response has a 4xx status code

func (*FiltersV2GetOK) IsCode

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

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

func (*FiltersV2GetOK) IsRedirect

func (o *FiltersV2GetOK) IsRedirect() bool

IsRedirect returns true when this filters v2 get o k response has a 3xx status code

func (*FiltersV2GetOK) IsServerError

func (o *FiltersV2GetOK) IsServerError() bool

IsServerError returns true when this filters v2 get o k response has a 5xx status code

func (*FiltersV2GetOK) IsSuccess

func (o *FiltersV2GetOK) IsSuccess() bool

IsSuccess returns true when this filters v2 get o k response has a 2xx status code

func (*FiltersV2GetOK) String

func (o *FiltersV2GetOK) String() string

type FiltersV2GetParams

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

FiltersV2GetParams contains all the parameters to send to the API endpoint

for the filters v2 get operation.

Typically these are written to a http.Request.

func NewFiltersV2GetParams

func NewFiltersV2GetParams() *FiltersV2GetParams

NewFiltersV2GetParams creates a new FiltersV2GetParams 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 NewFiltersV2GetParamsWithContext

func NewFiltersV2GetParamsWithContext(ctx context.Context) *FiltersV2GetParams

NewFiltersV2GetParamsWithContext creates a new FiltersV2GetParams object with the ability to set a context for a request.

func NewFiltersV2GetParamsWithHTTPClient

func NewFiltersV2GetParamsWithHTTPClient(client *http.Client) *FiltersV2GetParams

NewFiltersV2GetParamsWithHTTPClient creates a new FiltersV2GetParams object with the ability to set a custom HTTPClient for a request.

func NewFiltersV2GetParamsWithTimeout

func NewFiltersV2GetParamsWithTimeout(timeout time.Duration) *FiltersV2GetParams

NewFiltersV2GetParamsWithTimeout creates a new FiltersV2GetParams object with the ability to set a timeout on a request.

func (*FiltersV2GetParams) SetContext

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

SetContext adds the context to the filters v2 get params

func (*FiltersV2GetParams) SetDefaults

func (o *FiltersV2GetParams) SetDefaults()

SetDefaults hydrates default values in the filters v2 get params (not the query body).

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

func (*FiltersV2GetParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the filters v2 get params

func (*FiltersV2GetParams) SetTimeout

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

SetTimeout adds the timeout to the filters v2 get params

func (*FiltersV2GetParams) WithContext

WithContext adds the context to the filters v2 get params

func (*FiltersV2GetParams) WithDefaults

func (o *FiltersV2GetParams) WithDefaults() *FiltersV2GetParams

WithDefaults hydrates default values in the filters v2 get params (not the query body).

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

func (*FiltersV2GetParams) WithHTTPClient

func (o *FiltersV2GetParams) WithHTTPClient(client *http.Client) *FiltersV2GetParams

WithHTTPClient adds the HTTPClient to the filters v2 get params

func (*FiltersV2GetParams) WithTimeout

func (o *FiltersV2GetParams) WithTimeout(timeout time.Duration) *FiltersV2GetParams

WithTimeout adds the timeout to the filters v2 get params

func (*FiltersV2GetParams) WriteToRequest

func (o *FiltersV2GetParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type FiltersV2GetReader

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

FiltersV2GetReader is a Reader for the FiltersV2Get structure.

func (*FiltersV2GetReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type FiltersV2GetUnauthorized

type FiltersV2GetUnauthorized struct {
}

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

unauthorized

func NewFiltersV2GetUnauthorized

func NewFiltersV2GetUnauthorized() *FiltersV2GetUnauthorized

NewFiltersV2GetUnauthorized creates a FiltersV2GetUnauthorized with default headers values

func (*FiltersV2GetUnauthorized) Code

func (o *FiltersV2GetUnauthorized) Code() int

Code gets the status code for the filters v2 get unauthorized response

func (*FiltersV2GetUnauthorized) Error

func (o *FiltersV2GetUnauthorized) Error() string

func (*FiltersV2GetUnauthorized) IsClientError

func (o *FiltersV2GetUnauthorized) IsClientError() bool

IsClientError returns true when this filters v2 get unauthorized response has a 4xx status code

func (*FiltersV2GetUnauthorized) IsCode

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

IsCode returns true when this filters v2 get unauthorized response a status code equal to that given

func (*FiltersV2GetUnauthorized) IsRedirect

func (o *FiltersV2GetUnauthorized) IsRedirect() bool

IsRedirect returns true when this filters v2 get unauthorized response has a 3xx status code

func (*FiltersV2GetUnauthorized) IsServerError

func (o *FiltersV2GetUnauthorized) IsServerError() bool

IsServerError returns true when this filters v2 get unauthorized response has a 5xx status code

func (*FiltersV2GetUnauthorized) IsSuccess

func (o *FiltersV2GetUnauthorized) IsSuccess() bool

IsSuccess returns true when this filters v2 get unauthorized response has a 2xx status code

func (*FiltersV2GetUnauthorized) String

func (o *FiltersV2GetUnauthorized) String() string

Jump to

Keyboard shortcuts

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