112 lines
3.3 KiB
Go
112 lines
3.3 KiB
Go
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
package assets
|
|
|
|
// This file was generated by the swagger tool.
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
import (
|
|
"github.com/go-openapi/runtime"
|
|
|
|
strfmt "github.com/go-openapi/strfmt"
|
|
)
|
|
|
|
// New creates a new assets API client.
|
|
func New(transport runtime.ClientTransport, formats strfmt.Registry) *Client {
|
|
return &Client{transport: transport, formats: formats}
|
|
}
|
|
|
|
/*
|
|
Client for assets API
|
|
*/
|
|
type Client struct {
|
|
transport runtime.ClientTransport
|
|
formats strfmt.Registry
|
|
}
|
|
|
|
/*
|
|
GetCharactersCharacterIDAssets gets character assets
|
|
|
|
Return a list of the characters assets
|
|
|
|
---
|
|
Alternate route: `/v1/characters/{character_id}/assets/`
|
|
|
|
Alternate route: `/legacy/characters/{character_id}/assets/`
|
|
|
|
Alternate route: `/dev/characters/{character_id}/assets/`
|
|
|
|
---
|
|
This route is cached for up to 3600 seconds
|
|
*/
|
|
func (a *Client) GetCharactersCharacterIDAssets(params *GetCharactersCharacterIDAssetsParams, authInfo runtime.ClientAuthInfoWriter) (*GetCharactersCharacterIDAssetsOK, error) {
|
|
// TODO: Validate the params before sending
|
|
if params == nil {
|
|
params = NewGetCharactersCharacterIDAssetsParams()
|
|
}
|
|
|
|
result, err := a.transport.Submit(&runtime.ClientOperation{
|
|
ID: "get_characters_character_id_assets",
|
|
Method: "GET",
|
|
PathPattern: "/characters/{character_id}/assets/",
|
|
ProducesMediaTypes: []string{"application/json"},
|
|
ConsumesMediaTypes: []string{""},
|
|
Schemes: []string{"https"},
|
|
Params: params,
|
|
Reader: &GetCharactersCharacterIDAssetsReader{formats: a.formats},
|
|
AuthInfo: authInfo,
|
|
Context: params.Context,
|
|
Client: params.HTTPClient,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return result.(*GetCharactersCharacterIDAssetsOK), nil
|
|
|
|
}
|
|
|
|
/*
|
|
GetCorporationsCorporationIDAssets gets corporation assets
|
|
|
|
Return a list of the corporation assets
|
|
|
|
---
|
|
Alternate route: `/v1/corporations/{corporation_id}/assets/`
|
|
|
|
Alternate route: `/legacy/corporations/{corporation_id}/assets/`
|
|
|
|
Alternate route: `/dev/corporations/{corporation_id}/assets/`
|
|
|
|
---
|
|
This route is cached for up to 3600 seconds
|
|
*/
|
|
func (a *Client) GetCorporationsCorporationIDAssets(params *GetCorporationsCorporationIDAssetsParams, authInfo runtime.ClientAuthInfoWriter) (*GetCorporationsCorporationIDAssetsOK, error) {
|
|
// TODO: Validate the params before sending
|
|
if params == nil {
|
|
params = NewGetCorporationsCorporationIDAssetsParams()
|
|
}
|
|
|
|
result, err := a.transport.Submit(&runtime.ClientOperation{
|
|
ID: "get_corporations_corporation_id_assets",
|
|
Method: "GET",
|
|
PathPattern: "/corporations/{corporation_id}/assets/",
|
|
ProducesMediaTypes: []string{"application/json"},
|
|
ConsumesMediaTypes: []string{""},
|
|
Schemes: []string{"https"},
|
|
Params: params,
|
|
Reader: &GetCorporationsCorporationIDAssetsReader{formats: a.formats},
|
|
AuthInfo: authInfo,
|
|
Context: params.Context,
|
|
Client: params.HTTPClient,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return result.(*GetCorporationsCorporationIDAssetsOK), nil
|
|
|
|
}
|
|
|
|
// SetTransport changes the transport on the client
|
|
func (a *Client) SetTransport(transport runtime.ClientTransport) {
|
|
a.transport = transport
|
|
}
|