prices

package
v0.0.0-...-417219d Latest Latest
Warning

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

Go to latest
Published: Jan 25, 2024 License: MIT Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for prices API

func (*Client) GetPrice

func (a *Client) GetPrice(params *GetPriceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPriceOK, error)

GetPrice Returns a price

func (*Client) GetPrices

func (a *Client) GetPrices(params *GetPricesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPricesOK, error)

GetPrices Return available Prices across all Regions for a Product.

func (*Client) GetProduct

func (a *Client) GetProduct(params *GetProductParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetProductOK, error)

GetProduct Return a product

func (*Client) GetProducts

func (a *Client) GetProducts(params *GetProductsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetProductsOK, error)

GetProducts Return available Products for a Service. For example, with a Provider of AWS and a Service of EC2, Products will be a list of all EC2 Instances. By default, this endpoint returns all Products across all Services and Providers but has optional query parameters for filtering listed below.

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 is the option for Client methods

type ClientService

type ClientService interface {
	GetPrice(params *GetPriceParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPriceOK, error)

	GetPrices(params *GetPricesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetPricesOK, error)

	GetProduct(params *GetProductParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetProductOK, error)

	GetProducts(params *GetProductsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetProductsOK, 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 prices API client.

type GetPriceOK

type GetPriceOK struct {
	Payload *models.Price
}

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

GetPriceOK get price o k

func NewGetPriceOK

func NewGetPriceOK() *GetPriceOK

NewGetPriceOK creates a GetPriceOK with default headers values

func (*GetPriceOK) Code

func (o *GetPriceOK) Code() int

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

func (*GetPriceOK) Error

func (o *GetPriceOK) Error() string

func (*GetPriceOK) GetPayload

func (o *GetPriceOK) GetPayload() *models.Price

func (*GetPriceOK) IsClientError

func (o *GetPriceOK) IsClientError() bool

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

func (*GetPriceOK) IsCode

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

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

func (*GetPriceOK) IsRedirect

func (o *GetPriceOK) IsRedirect() bool

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

func (*GetPriceOK) IsServerError

func (o *GetPriceOK) IsServerError() bool

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

func (*GetPriceOK) IsSuccess

func (o *GetPriceOK) IsSuccess() bool

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

func (*GetPriceOK) String

func (o *GetPriceOK) String() string

type GetPriceParams

type GetPriceParams struct {

	// ID.
	ID string

	// ProductID.
	ProductID string

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

GetPriceParams contains all the parameters to send to the API endpoint

for the get price operation.

Typically these are written to a http.Request.

func NewGetPriceParams

func NewGetPriceParams() *GetPriceParams

NewGetPriceParams creates a new GetPriceParams 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 NewGetPriceParamsWithContext

func NewGetPriceParamsWithContext(ctx context.Context) *GetPriceParams

NewGetPriceParamsWithContext creates a new GetPriceParams object with the ability to set a context for a request.

func NewGetPriceParamsWithHTTPClient

func NewGetPriceParamsWithHTTPClient(client *http.Client) *GetPriceParams

NewGetPriceParamsWithHTTPClient creates a new GetPriceParams object with the ability to set a custom HTTPClient for a request.

func NewGetPriceParamsWithTimeout

func NewGetPriceParamsWithTimeout(timeout time.Duration) *GetPriceParams

NewGetPriceParamsWithTimeout creates a new GetPriceParams object with the ability to set a timeout on a request.

func (*GetPriceParams) SetContext

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

SetContext adds the context to the get price params

func (*GetPriceParams) SetDefaults

func (o *GetPriceParams) SetDefaults()

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

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

func (*GetPriceParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get price params

func (*GetPriceParams) SetID

func (o *GetPriceParams) SetID(id string)

SetID adds the id to the get price params

func (*GetPriceParams) SetProductID

func (o *GetPriceParams) SetProductID(productID string)

SetProductID adds the productId to the get price params

func (*GetPriceParams) SetTimeout

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

SetTimeout adds the timeout to the get price params

func (*GetPriceParams) WithContext

func (o *GetPriceParams) WithContext(ctx context.Context) *GetPriceParams

WithContext adds the context to the get price params

func (*GetPriceParams) WithDefaults

func (o *GetPriceParams) WithDefaults() *GetPriceParams

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

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

func (*GetPriceParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get price params

func (*GetPriceParams) WithID

func (o *GetPriceParams) WithID(id string) *GetPriceParams

WithID adds the id to the get price params

func (*GetPriceParams) WithProductID

func (o *GetPriceParams) WithProductID(productID string) *GetPriceParams

WithProductID adds the productID to the get price params

func (*GetPriceParams) WithTimeout

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

WithTimeout adds the timeout to the get price params

func (*GetPriceParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetPriceReader

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

GetPriceReader is a Reader for the GetPrice structure.

func (*GetPriceReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetPricesOK

type GetPricesOK struct {
	Payload *models.Prices
}

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

GetPricesOK get prices o k

func NewGetPricesOK

func NewGetPricesOK() *GetPricesOK

NewGetPricesOK creates a GetPricesOK with default headers values

func (*GetPricesOK) Code

func (o *GetPricesOK) Code() int

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

func (*GetPricesOK) Error

func (o *GetPricesOK) Error() string

func (*GetPricesOK) GetPayload

func (o *GetPricesOK) GetPayload() *models.Prices

func (*GetPricesOK) IsClientError

func (o *GetPricesOK) IsClientError() bool

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

func (*GetPricesOK) IsCode

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

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

func (*GetPricesOK) IsRedirect

func (o *GetPricesOK) IsRedirect() bool

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

func (*GetPricesOK) IsServerError

func (o *GetPricesOK) IsServerError() bool

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

func (*GetPricesOK) IsSuccess

func (o *GetPricesOK) IsSuccess() bool

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

func (*GetPricesOK) String

func (o *GetPricesOK) String() string

type GetPricesParams

type GetPricesParams struct {

	/* Limit.

	   The amount of results to return. The maximum is 1000

	   Format: int32
	*/
	Limit *int32

	/* Page.

	   The page of results to return.

	   Format: int32
	*/
	Page *int32

	// ProductID.
	ProductID string

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

GetPricesParams contains all the parameters to send to the API endpoint

for the get prices operation.

Typically these are written to a http.Request.

func NewGetPricesParams

func NewGetPricesParams() *GetPricesParams

NewGetPricesParams creates a new GetPricesParams 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 NewGetPricesParamsWithContext

func NewGetPricesParamsWithContext(ctx context.Context) *GetPricesParams

NewGetPricesParamsWithContext creates a new GetPricesParams object with the ability to set a context for a request.

func NewGetPricesParamsWithHTTPClient

func NewGetPricesParamsWithHTTPClient(client *http.Client) *GetPricesParams

NewGetPricesParamsWithHTTPClient creates a new GetPricesParams object with the ability to set a custom HTTPClient for a request.

func NewGetPricesParamsWithTimeout

func NewGetPricesParamsWithTimeout(timeout time.Duration) *GetPricesParams

NewGetPricesParamsWithTimeout creates a new GetPricesParams object with the ability to set a timeout on a request.

func (*GetPricesParams) SetContext

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

SetContext adds the context to the get prices params

func (*GetPricesParams) SetDefaults

func (o *GetPricesParams) SetDefaults()

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

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

func (*GetPricesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get prices params

func (*GetPricesParams) SetLimit

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

SetLimit adds the limit to the get prices params

func (*GetPricesParams) SetPage

func (o *GetPricesParams) SetPage(page *int32)

SetPage adds the page to the get prices params

func (*GetPricesParams) SetProductID

func (o *GetPricesParams) SetProductID(productID string)

SetProductID adds the productId to the get prices params

func (*GetPricesParams) SetTimeout

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

SetTimeout adds the timeout to the get prices params

func (*GetPricesParams) WithContext

func (o *GetPricesParams) WithContext(ctx context.Context) *GetPricesParams

WithContext adds the context to the get prices params

func (*GetPricesParams) WithDefaults

func (o *GetPricesParams) WithDefaults() *GetPricesParams

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

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

func (*GetPricesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get prices params

func (*GetPricesParams) WithLimit

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

WithLimit adds the limit to the get prices params

func (*GetPricesParams) WithPage

func (o *GetPricesParams) WithPage(page *int32) *GetPricesParams

WithPage adds the page to the get prices params

func (*GetPricesParams) WithProductID

func (o *GetPricesParams) WithProductID(productID string) *GetPricesParams

WithProductID adds the productID to the get prices params

func (*GetPricesParams) WithTimeout

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

WithTimeout adds the timeout to the get prices params

func (*GetPricesParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetPricesReader

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

GetPricesReader is a Reader for the GetPrices structure.

func (*GetPricesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetProductOK

type GetProductOK struct {
	Payload *models.Product
}

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

GetProductOK get product o k

func NewGetProductOK

func NewGetProductOK() *GetProductOK

NewGetProductOK creates a GetProductOK with default headers values

func (*GetProductOK) Code

func (o *GetProductOK) Code() int

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

func (*GetProductOK) Error

func (o *GetProductOK) Error() string

func (*GetProductOK) GetPayload

func (o *GetProductOK) GetPayload() *models.Product

func (*GetProductOK) IsClientError

func (o *GetProductOK) IsClientError() bool

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

func (*GetProductOK) IsCode

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

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

func (*GetProductOK) IsRedirect

func (o *GetProductOK) IsRedirect() bool

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

func (*GetProductOK) IsServerError

func (o *GetProductOK) IsServerError() bool

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

func (*GetProductOK) IsSuccess

func (o *GetProductOK) IsSuccess() bool

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

func (*GetProductOK) String

func (o *GetProductOK) String() string

type GetProductParams

type GetProductParams struct {

	// ID.
	ID string

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

GetProductParams contains all the parameters to send to the API endpoint

for the get product operation.

Typically these are written to a http.Request.

func NewGetProductParams

func NewGetProductParams() *GetProductParams

NewGetProductParams creates a new GetProductParams 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 NewGetProductParamsWithContext

func NewGetProductParamsWithContext(ctx context.Context) *GetProductParams

NewGetProductParamsWithContext creates a new GetProductParams object with the ability to set a context for a request.

func NewGetProductParamsWithHTTPClient

func NewGetProductParamsWithHTTPClient(client *http.Client) *GetProductParams

NewGetProductParamsWithHTTPClient creates a new GetProductParams object with the ability to set a custom HTTPClient for a request.

func NewGetProductParamsWithTimeout

func NewGetProductParamsWithTimeout(timeout time.Duration) *GetProductParams

NewGetProductParamsWithTimeout creates a new GetProductParams object with the ability to set a timeout on a request.

func (*GetProductParams) SetContext

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

SetContext adds the context to the get product params

func (*GetProductParams) SetDefaults

func (o *GetProductParams) SetDefaults()

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

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

func (*GetProductParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get product params

func (*GetProductParams) SetID

func (o *GetProductParams) SetID(id string)

SetID adds the id to the get product params

func (*GetProductParams) SetTimeout

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

SetTimeout adds the timeout to the get product params

func (*GetProductParams) WithContext

func (o *GetProductParams) WithContext(ctx context.Context) *GetProductParams

WithContext adds the context to the get product params

func (*GetProductParams) WithDefaults

func (o *GetProductParams) WithDefaults() *GetProductParams

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

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

func (*GetProductParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get product params

func (*GetProductParams) WithID

func (o *GetProductParams) WithID(id string) *GetProductParams

WithID adds the id to the get product params

func (*GetProductParams) WithTimeout

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

WithTimeout adds the timeout to the get product params

func (*GetProductParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetProductReader

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

GetProductReader is a Reader for the GetProduct structure.

func (*GetProductReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetProductsOK

type GetProductsOK struct {
	Payload *models.Products
}

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

GetProductsOK get products o k

func NewGetProductsOK

func NewGetProductsOK() *GetProductsOK

NewGetProductsOK creates a GetProductsOK with default headers values

func (*GetProductsOK) Code

func (o *GetProductsOK) Code() int

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

func (*GetProductsOK) Error

func (o *GetProductsOK) Error() string

func (*GetProductsOK) GetPayload

func (o *GetProductsOK) GetPayload() *models.Products

func (*GetProductsOK) IsClientError

func (o *GetProductsOK) IsClientError() bool

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

func (*GetProductsOK) IsCode

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

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

func (*GetProductsOK) IsRedirect

func (o *GetProductsOK) IsRedirect() bool

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

func (*GetProductsOK) IsServerError

func (o *GetProductsOK) IsServerError() bool

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

func (*GetProductsOK) IsSuccess

func (o *GetProductsOK) IsSuccess() bool

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

func (*GetProductsOK) String

func (o *GetProductsOK) String() string

type GetProductsParams

type GetProductsParams struct {

	/* Limit.

	   The amount of results to return. The maximum is 1000

	   Format: int32
	*/
	Limit *int32

	/* Name.

	   Query by name of the Product to see a list of products which match that name. e.g. m5a.16xlarge
	*/
	Name *string

	/* Page.

	   The page of results to return.

	   Format: int32
	*/
	Page *int32

	/* ProviderID.

	   Query by Provider to list all Products across all Services for a Provider. e.g. aws
	*/
	ProviderID *string

	/* ServiceID.

	   Query by Service to list all Products for a specific provider service. e.g. aws-ec2
	*/
	ServiceID *string

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

GetProductsParams contains all the parameters to send to the API endpoint

for the get products operation.

Typically these are written to a http.Request.

func NewGetProductsParams

func NewGetProductsParams() *GetProductsParams

NewGetProductsParams creates a new GetProductsParams 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 NewGetProductsParamsWithContext

func NewGetProductsParamsWithContext(ctx context.Context) *GetProductsParams

NewGetProductsParamsWithContext creates a new GetProductsParams object with the ability to set a context for a request.

func NewGetProductsParamsWithHTTPClient

func NewGetProductsParamsWithHTTPClient(client *http.Client) *GetProductsParams

NewGetProductsParamsWithHTTPClient creates a new GetProductsParams object with the ability to set a custom HTTPClient for a request.

func NewGetProductsParamsWithTimeout

func NewGetProductsParamsWithTimeout(timeout time.Duration) *GetProductsParams

NewGetProductsParamsWithTimeout creates a new GetProductsParams object with the ability to set a timeout on a request.

func (*GetProductsParams) SetContext

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

SetContext adds the context to the get products params

func (*GetProductsParams) SetDefaults

func (o *GetProductsParams) SetDefaults()

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

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

func (*GetProductsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get products params

func (*GetProductsParams) SetLimit

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

SetLimit adds the limit to the get products params

func (*GetProductsParams) SetName

func (o *GetProductsParams) SetName(name *string)

SetName adds the name to the get products params

func (*GetProductsParams) SetPage

func (o *GetProductsParams) SetPage(page *int32)

SetPage adds the page to the get products params

func (*GetProductsParams) SetProviderID

func (o *GetProductsParams) SetProviderID(providerID *string)

SetProviderID adds the providerId to the get products params

func (*GetProductsParams) SetServiceID

func (o *GetProductsParams) SetServiceID(serviceID *string)

SetServiceID adds the serviceId to the get products params

func (*GetProductsParams) SetTimeout

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

SetTimeout adds the timeout to the get products params

func (*GetProductsParams) WithContext

func (o *GetProductsParams) WithContext(ctx context.Context) *GetProductsParams

WithContext adds the context to the get products params

func (*GetProductsParams) WithDefaults

func (o *GetProductsParams) WithDefaults() *GetProductsParams

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

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

func (*GetProductsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get products params

func (*GetProductsParams) WithLimit

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

WithLimit adds the limit to the get products params

func (*GetProductsParams) WithName

func (o *GetProductsParams) WithName(name *string) *GetProductsParams

WithName adds the name to the get products params

func (*GetProductsParams) WithPage

func (o *GetProductsParams) WithPage(page *int32) *GetProductsParams

WithPage adds the page to the get products params

func (*GetProductsParams) WithProviderID

func (o *GetProductsParams) WithProviderID(providerID *string) *GetProductsParams

WithProviderID adds the providerID to the get products params

func (*GetProductsParams) WithServiceID

func (o *GetProductsParams) WithServiceID(serviceID *string) *GetProductsParams

WithServiceID adds the serviceID to the get products params

func (*GetProductsParams) WithTimeout

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

WithTimeout adds the timeout to the get products params

func (*GetProductsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetProductsReader

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

GetProductsReader is a Reader for the GetProducts structure.

func (*GetProductsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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