support

package
v0.9.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for support API

func (*Client) GetAPI24Support

func (a *Client) GetAPI24Support(params *GetAPI24SupportParams) (*GetApi24SupportOK, error)

GetAPI24Support lists connection paths

Displays connection paths between the current array and each connected array.

func (*Client) GetAPI24SupportTest

func (a *Client) GetAPI24SupportTest(params *GetAPI24SupportTestParams) (*GetApi24SupportTestOK, error)

GetAPI24SupportTest lists pure storage support connection data

Displays information about whether the array can connect to Pure Storage Support by establishing a secure shell or secure HTTP connection and verifies that messages can be exchanged.

func (*Client) PatchAPI24Support

func (a *Client) PatchAPI24Support(params *PatchAPI24SupportParams) (*PatchApi24SupportOK, error)

PatchAPI24Support creates connection path

Creates a connection path from the array to another array.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	GetAPI24Support(params *GetAPI24SupportParams) (*GetApi24SupportOK, error)

	GetAPI24SupportTest(params *GetAPI24SupportTestParams) (*GetApi24SupportTestOK, error)

	PatchAPI24Support(params *PatchAPI24SupportParams) (*PatchApi24SupportOK, 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 support API client.

type GetAPI24SupportParams

type GetAPI24SupportParams struct {

	/*Authorization
	  Access token (in JWT format) required to use any API endpoint (except `/oauth2`, `/login`, and `/logout`)

	*/
	Authorization *string
	/*XRequestID
	  Supplied by client during request or generated by server.

	*/
	XRequestID *string
	/*ContinuationToken
	  A token used to retrieve the next page of data with some consistency guaranteed. The token is a Base64 encoded value. Set `continuation_token` to the system-generated token taken from the `x-next-token` header field of the response. A query has reached its last page when the response does not include a token. Pagination requires the `limit` and `continuation_token` query parameters.

	*/
	ContinuationToken *string
	/*Filter
	  Narrows down the results to only the response objects that satisfy the filter criteria.

	*/
	Filter *string
	/*Limit
	  Limits the size of the response to the specified number of objects on each page. To return the total number of resources, set `limit=0`. The total number of resources is returned as a `total_item_count` value. If the page size requested is larger than the system maximum limit, the server returns the maximum limit, disregarding the requested page size.

	*/
	Limit *int32
	/*Offset
	  The starting position based on the results of the query in relation to the full set of response objects returned.

	*/
	Offset *int32
	/*Sort
	  Returns the response objects in the order specified. Set `sort` to the name in the response by which to sort. Sorting can be performed on any of the names in the response, and the objects can be sorted in ascending or descending order. By default, the response objects are sorted in ascending order. To sort in descending order, append the minus sign (`-`) to the name. A single request can be sorted on multiple objects. For example, you can sort all volumes from largest to smallest volume size, and then sort volumes of the same size in ascending order by volume name. To sort on multiple names, list the names as comma-separated values.

	*/
	Sort []string
	/*TotalItemCount
	  If set to `true`, the `total_item_count` matching the specified query parameters is calculated and returned in the response. If set to `false`, the `total_item_count` is `null` in the response. This may speed up queries where the `total_item_count` is large. If not specified, defaults to `false`.

	*/
	TotalItemCount *bool

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

GetAPI24SupportParams contains all the parameters to send to the API endpoint for the get API 24 support operation typically these are written to a http.Request

func NewGetAPI24SupportParams

func NewGetAPI24SupportParams() *GetAPI24SupportParams

NewGetAPI24SupportParams creates a new GetAPI24SupportParams object with the default values initialized.

func NewGetAPI24SupportParamsWithContext

func NewGetAPI24SupportParamsWithContext(ctx context.Context) *GetAPI24SupportParams

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

func NewGetAPI24SupportParamsWithHTTPClient

func NewGetAPI24SupportParamsWithHTTPClient(client *http.Client) *GetAPI24SupportParams

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

func NewGetAPI24SupportParamsWithTimeout

func NewGetAPI24SupportParamsWithTimeout(timeout time.Duration) *GetAPI24SupportParams

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

func (*GetAPI24SupportParams) SetAuthorization

func (o *GetAPI24SupportParams) SetAuthorization(authorization *string)

SetAuthorization adds the authorization to the get API 24 support params

func (*GetAPI24SupportParams) SetContext

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

SetContext adds the context to the get API 24 support params

func (*GetAPI24SupportParams) SetContinuationToken

func (o *GetAPI24SupportParams) SetContinuationToken(continuationToken *string)

SetContinuationToken adds the continuationToken to the get API 24 support params

func (*GetAPI24SupportParams) SetFilter

func (o *GetAPI24SupportParams) SetFilter(filter *string)

SetFilter adds the filter to the get API 24 support params

func (*GetAPI24SupportParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API 24 support params

func (*GetAPI24SupportParams) SetLimit

func (o *GetAPI24SupportParams) SetLimit(limit *int32)

SetLimit adds the limit to the get API 24 support params

func (*GetAPI24SupportParams) SetOffset

func (o *GetAPI24SupportParams) SetOffset(offset *int32)

SetOffset adds the offset to the get API 24 support params

func (*GetAPI24SupportParams) SetSort

func (o *GetAPI24SupportParams) SetSort(sort []string)

SetSort adds the sort to the get API 24 support params

func (*GetAPI24SupportParams) SetTimeout

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

SetTimeout adds the timeout to the get API 24 support params

func (*GetAPI24SupportParams) SetTotalItemCount

func (o *GetAPI24SupportParams) SetTotalItemCount(totalItemCount *bool)

SetTotalItemCount adds the totalItemCount to the get API 24 support params

func (*GetAPI24SupportParams) SetXRequestID

func (o *GetAPI24SupportParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get API 24 support params

func (*GetAPI24SupportParams) WithAuthorization

func (o *GetAPI24SupportParams) WithAuthorization(authorization *string) *GetAPI24SupportParams

WithAuthorization adds the authorization to the get API 24 support params

func (*GetAPI24SupportParams) WithContext

WithContext adds the context to the get API 24 support params

func (*GetAPI24SupportParams) WithContinuationToken

func (o *GetAPI24SupportParams) WithContinuationToken(continuationToken *string) *GetAPI24SupportParams

WithContinuationToken adds the continuationToken to the get API 24 support params

func (*GetAPI24SupportParams) WithFilter

func (o *GetAPI24SupportParams) WithFilter(filter *string) *GetAPI24SupportParams

WithFilter adds the filter to the get API 24 support params

func (*GetAPI24SupportParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get API 24 support params

func (*GetAPI24SupportParams) WithLimit

func (o *GetAPI24SupportParams) WithLimit(limit *int32) *GetAPI24SupportParams

WithLimit adds the limit to the get API 24 support params

func (*GetAPI24SupportParams) WithOffset

func (o *GetAPI24SupportParams) WithOffset(offset *int32) *GetAPI24SupportParams

WithOffset adds the offset to the get API 24 support params

func (*GetAPI24SupportParams) WithSort

func (o *GetAPI24SupportParams) WithSort(sort []string) *GetAPI24SupportParams

WithSort adds the sort to the get API 24 support params

func (*GetAPI24SupportParams) WithTimeout

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

WithTimeout adds the timeout to the get API 24 support params

func (*GetAPI24SupportParams) WithTotalItemCount

func (o *GetAPI24SupportParams) WithTotalItemCount(totalItemCount *bool) *GetAPI24SupportParams

WithTotalItemCount adds the totalItemCount to the get API 24 support params

func (*GetAPI24SupportParams) WithXRequestID

func (o *GetAPI24SupportParams) WithXRequestID(xRequestID *string) *GetAPI24SupportParams

WithXRequestID adds the xRequestID to the get API 24 support params

func (*GetAPI24SupportParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAPI24SupportReader

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

GetAPI24SupportReader is a Reader for the GetAPI24Support structure.

func (*GetAPI24SupportReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPI24SupportTestParams

type GetAPI24SupportTestParams struct {

	/*Authorization
	  Access token (in JWT format) required to use any API endpoint (except `/oauth2`, `/login`, and `/logout`)

	*/
	Authorization *string
	/*XRequestID
	  Supplied by client during request or generated by server.

	*/
	XRequestID *string
	/*Filter
	  Narrows down the results to only the response objects that satisfy the filter criteria.

	*/
	Filter *string
	/*Limit
	  Limits the size of the response to the specified number of objects on each page. To return the total number of resources, set `limit=0`. The total number of resources is returned as a `total_item_count` value. If the page size requested is larger than the system maximum limit, the server returns the maximum limit, disregarding the requested page size.

	*/
	Limit *int32
	/*Offset
	  The starting position based on the results of the query in relation to the full set of response objects returned.

	*/
	Offset *int32
	/*Sort
	  Returns the response objects in the order specified. Set `sort` to the name in the response by which to sort. Sorting can be performed on any of the names in the response, and the objects can be sorted in ascending or descending order. By default, the response objects are sorted in ascending order. To sort in descending order, append the minus sign (`-`) to the name. A single request can be sorted on multiple objects. For example, you can sort all volumes from largest to smallest volume size, and then sort volumes of the same size in ascending order by volume name. To sort on multiple names, list the names as comma-separated values.

	*/
	Sort []string
	/*TestType
	  Specifies the type of test. Valid values are `all`, `phonehome`, and `remote-assist`. If not specified, defaults to `all`.

	*/
	TestType *string
	/*TotalItemCount
	  If set to `true`, the `total_item_count` matching the specified query parameters is calculated and returned in the response. If set to `false`, the `total_item_count` is `null` in the response. This may speed up queries where the `total_item_count` is large. If not specified, defaults to `false`.

	*/
	TotalItemCount *bool

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

GetAPI24SupportTestParams contains all the parameters to send to the API endpoint for the get API 24 support test operation typically these are written to a http.Request

func NewGetAPI24SupportTestParams

func NewGetAPI24SupportTestParams() *GetAPI24SupportTestParams

NewGetAPI24SupportTestParams creates a new GetAPI24SupportTestParams object with the default values initialized.

func NewGetAPI24SupportTestParamsWithContext

func NewGetAPI24SupportTestParamsWithContext(ctx context.Context) *GetAPI24SupportTestParams

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

func NewGetAPI24SupportTestParamsWithHTTPClient

func NewGetAPI24SupportTestParamsWithHTTPClient(client *http.Client) *GetAPI24SupportTestParams

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

func NewGetAPI24SupportTestParamsWithTimeout

func NewGetAPI24SupportTestParamsWithTimeout(timeout time.Duration) *GetAPI24SupportTestParams

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

func (*GetAPI24SupportTestParams) SetAuthorization

func (o *GetAPI24SupportTestParams) SetAuthorization(authorization *string)

SetAuthorization adds the authorization to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetContext

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

SetContext adds the context to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetFilter

func (o *GetAPI24SupportTestParams) SetFilter(filter *string)

SetFilter adds the filter to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetLimit

func (o *GetAPI24SupportTestParams) SetLimit(limit *int32)

SetLimit adds the limit to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetOffset

func (o *GetAPI24SupportTestParams) SetOffset(offset *int32)

SetOffset adds the offset to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetSort

func (o *GetAPI24SupportTestParams) SetSort(sort []string)

SetSort adds the sort to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetTestType

func (o *GetAPI24SupportTestParams) SetTestType(testType *string)

SetTestType adds the testType to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetTimeout

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

SetTimeout adds the timeout to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetTotalItemCount

func (o *GetAPI24SupportTestParams) SetTotalItemCount(totalItemCount *bool)

SetTotalItemCount adds the totalItemCount to the get API 24 support test params

func (*GetAPI24SupportTestParams) SetXRequestID

func (o *GetAPI24SupportTestParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithAuthorization

func (o *GetAPI24SupportTestParams) WithAuthorization(authorization *string) *GetAPI24SupportTestParams

WithAuthorization adds the authorization to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithContext

WithContext adds the context to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithFilter

WithFilter adds the filter to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithLimit

WithLimit adds the limit to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithOffset

WithOffset adds the offset to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithSort

WithSort adds the sort to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithTestType

func (o *GetAPI24SupportTestParams) WithTestType(testType *string) *GetAPI24SupportTestParams

WithTestType adds the testType to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithTimeout

WithTimeout adds the timeout to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithTotalItemCount

func (o *GetAPI24SupportTestParams) WithTotalItemCount(totalItemCount *bool) *GetAPI24SupportTestParams

WithTotalItemCount adds the totalItemCount to the get API 24 support test params

func (*GetAPI24SupportTestParams) WithXRequestID

func (o *GetAPI24SupportTestParams) WithXRequestID(xRequestID *string) *GetAPI24SupportTestParams

WithXRequestID adds the xRequestID to the get API 24 support test params

func (*GetAPI24SupportTestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPI24SupportTestReader

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

GetAPI24SupportTestReader is a Reader for the GetAPI24SupportTest structure.

func (*GetAPI24SupportTestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetApi24SupportBadRequest

type GetApi24SupportBadRequest struct {
	Payload *models.Error
}

GetApi24SupportBadRequest handles this case with default header values.

BadRequest

func NewGetApi24SupportBadRequest

func NewGetApi24SupportBadRequest() *GetApi24SupportBadRequest

NewGetApi24SupportBadRequest creates a GetApi24SupportBadRequest with default headers values

func (*GetApi24SupportBadRequest) Error

func (o *GetApi24SupportBadRequest) Error() string

func (*GetApi24SupportBadRequest) GetPayload

func (o *GetApi24SupportBadRequest) GetPayload() *models.Error

type GetApi24SupportOK

type GetApi24SupportOK struct {
	Payload *models.SupportGetResponse
}

GetApi24SupportOK handles this case with default header values.

OK

func NewGetApi24SupportOK

func NewGetApi24SupportOK() *GetApi24SupportOK

NewGetApi24SupportOK creates a GetApi24SupportOK with default headers values

func (*GetApi24SupportOK) Error

func (o *GetApi24SupportOK) Error() string

func (*GetApi24SupportOK) GetPayload

func (o *GetApi24SupportOK) GetPayload() *models.SupportGetResponse

type GetApi24SupportTestBadRequest

type GetApi24SupportTestBadRequest struct {
	Payload *models.Error
}

GetApi24SupportTestBadRequest handles this case with default header values.

BadRequest

func NewGetApi24SupportTestBadRequest

func NewGetApi24SupportTestBadRequest() *GetApi24SupportTestBadRequest

NewGetApi24SupportTestBadRequest creates a GetApi24SupportTestBadRequest with default headers values

func (*GetApi24SupportTestBadRequest) Error

func (*GetApi24SupportTestBadRequest) GetPayload

func (o *GetApi24SupportTestBadRequest) GetPayload() *models.Error

type GetApi24SupportTestOK

type GetApi24SupportTestOK struct {
	Payload *models.TestResultGetResponse
}

GetApi24SupportTestOK handles this case with default header values.

OK

func NewGetApi24SupportTestOK

func NewGetApi24SupportTestOK() *GetApi24SupportTestOK

NewGetApi24SupportTestOK creates a GetApi24SupportTestOK with default headers values

func (*GetApi24SupportTestOK) Error

func (o *GetApi24SupportTestOK) Error() string

func (*GetApi24SupportTestOK) GetPayload

type PatchAPI24SupportParams

type PatchAPI24SupportParams struct {

	/*Authorization
	  Access token (in JWT format) required to use any API endpoint (except `/oauth2`, `/login`, and `/logout`)

	*/
	Authorization *string
	/*XRequestID
	  Supplied by client during request or generated by server.

	*/
	XRequestID *string
	/*Support*/
	Support *models.SupportPatch

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

PatchAPI24SupportParams contains all the parameters to send to the API endpoint for the patch API 24 support operation typically these are written to a http.Request

func NewPatchAPI24SupportParams

func NewPatchAPI24SupportParams() *PatchAPI24SupportParams

NewPatchAPI24SupportParams creates a new PatchAPI24SupportParams object with the default values initialized.

func NewPatchAPI24SupportParamsWithContext

func NewPatchAPI24SupportParamsWithContext(ctx context.Context) *PatchAPI24SupportParams

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

func NewPatchAPI24SupportParamsWithHTTPClient

func NewPatchAPI24SupportParamsWithHTTPClient(client *http.Client) *PatchAPI24SupportParams

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

func NewPatchAPI24SupportParamsWithTimeout

func NewPatchAPI24SupportParamsWithTimeout(timeout time.Duration) *PatchAPI24SupportParams

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

func (*PatchAPI24SupportParams) SetAuthorization

func (o *PatchAPI24SupportParams) SetAuthorization(authorization *string)

SetAuthorization adds the authorization to the patch API 24 support params

func (*PatchAPI24SupportParams) SetContext

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

SetContext adds the context to the patch API 24 support params

func (*PatchAPI24SupportParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the patch API 24 support params

func (*PatchAPI24SupportParams) SetSupport

func (o *PatchAPI24SupportParams) SetSupport(support *models.SupportPatch)

SetSupport adds the support to the patch API 24 support params

func (*PatchAPI24SupportParams) SetTimeout

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

SetTimeout adds the timeout to the patch API 24 support params

func (*PatchAPI24SupportParams) SetXRequestID

func (o *PatchAPI24SupportParams) SetXRequestID(xRequestID *string)

SetXRequestID adds the xRequestId to the patch API 24 support params

func (*PatchAPI24SupportParams) WithAuthorization

func (o *PatchAPI24SupportParams) WithAuthorization(authorization *string) *PatchAPI24SupportParams

WithAuthorization adds the authorization to the patch API 24 support params

func (*PatchAPI24SupportParams) WithContext

WithContext adds the context to the patch API 24 support params

func (*PatchAPI24SupportParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the patch API 24 support params

func (*PatchAPI24SupportParams) WithSupport

WithSupport adds the support to the patch API 24 support params

func (*PatchAPI24SupportParams) WithTimeout

WithTimeout adds the timeout to the patch API 24 support params

func (*PatchAPI24SupportParams) WithXRequestID

func (o *PatchAPI24SupportParams) WithXRequestID(xRequestID *string) *PatchAPI24SupportParams

WithXRequestID adds the xRequestID to the patch API 24 support params

func (*PatchAPI24SupportParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PatchAPI24SupportReader

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

PatchAPI24SupportReader is a Reader for the PatchAPI24Support structure.

func (*PatchAPI24SupportReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchApi24SupportBadRequest

type PatchApi24SupportBadRequest struct {
	Payload *models.Error
}

PatchApi24SupportBadRequest handles this case with default header values.

BadRequest

func NewPatchApi24SupportBadRequest

func NewPatchApi24SupportBadRequest() *PatchApi24SupportBadRequest

NewPatchApi24SupportBadRequest creates a PatchApi24SupportBadRequest with default headers values

func (*PatchApi24SupportBadRequest) Error

func (*PatchApi24SupportBadRequest) GetPayload

func (o *PatchApi24SupportBadRequest) GetPayload() *models.Error

type PatchApi24SupportOK

type PatchApi24SupportOK struct {
	Payload *models.SupportResponse
}

PatchApi24SupportOK handles this case with default header values.

OK

func NewPatchApi24SupportOK

func NewPatchApi24SupportOK() *PatchApi24SupportOK

NewPatchApi24SupportOK creates a PatchApi24SupportOK with default headers values

func (*PatchApi24SupportOK) Error

func (o *PatchApi24SupportOK) Error() string

func (*PatchApi24SupportOK) GetPayload

func (o *PatchApi24SupportOK) GetPayload() *models.SupportResponse

Jump to

Keyboard shortcuts

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