This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
eve-goclient/client/contacts/post_characters_character_id_contacts_parameters.go

396 lines
11 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package contacts
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"net/http"
"time"
"golang.org/x/net/context"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
cr "github.com/go-openapi/runtime/client"
"github.com/go-openapi/swag"
strfmt "github.com/go-openapi/strfmt"
)
// NewPostCharactersCharacterIDContactsParams creates a new PostCharactersCharacterIDContactsParams object
// with the default values initialized.
func NewPostCharactersCharacterIDContactsParams() *PostCharactersCharacterIDContactsParams {
var (
datasourceDefault = string("tranquility")
labelIDDefault = int64(0)
watchedDefault = bool(false)
)
return &PostCharactersCharacterIDContactsParams{
Datasource: &datasourceDefault,
LabelID: &labelIDDefault,
Watched: &watchedDefault,
timeout: cr.DefaultTimeout,
}
}
// NewPostCharactersCharacterIDContactsParamsWithTimeout creates a new PostCharactersCharacterIDContactsParams object
// with the default values initialized, and the ability to set a timeout on a request
func NewPostCharactersCharacterIDContactsParamsWithTimeout(timeout time.Duration) *PostCharactersCharacterIDContactsParams {
var (
datasourceDefault = string("tranquility")
labelIDDefault = int64(0)
watchedDefault = bool(false)
)
return &PostCharactersCharacterIDContactsParams{
Datasource: &datasourceDefault,
LabelID: &labelIDDefault,
Watched: &watchedDefault,
timeout: timeout,
}
}
// NewPostCharactersCharacterIDContactsParamsWithContext creates a new PostCharactersCharacterIDContactsParams object
// with the default values initialized, and the ability to set a context for a request
func NewPostCharactersCharacterIDContactsParamsWithContext(ctx context.Context) *PostCharactersCharacterIDContactsParams {
var (
datasourceDefault = string("tranquility")
labelIdDefault = int64(0)
watchedDefault = bool(false)
)
return &PostCharactersCharacterIDContactsParams{
Datasource: &datasourceDefault,
LabelID: &labelIdDefault,
Watched: &watchedDefault,
Context: ctx,
}
}
// NewPostCharactersCharacterIDContactsParamsWithHTTPClient creates a new PostCharactersCharacterIDContactsParams object
// with the default values initialized, and the ability to set a custom HTTPClient for a request
func NewPostCharactersCharacterIDContactsParamsWithHTTPClient(client *http.Client) *PostCharactersCharacterIDContactsParams {
var (
datasourceDefault = string("tranquility")
labelIdDefault = int64(0)
watchedDefault = bool(false)
)
return &PostCharactersCharacterIDContactsParams{
Datasource: &datasourceDefault,
LabelID: &labelIdDefault,
Watched: &watchedDefault,
HTTPClient: client,
}
}
/*PostCharactersCharacterIDContactsParams contains all the parameters to send to the API endpoint
for the post characters character id contacts operation typically these are written to a http.Request
*/
type PostCharactersCharacterIDContactsParams struct {
/*XUserAgent
Client identifier, takes precedence over User-Agent
*/
XUserAgent *string
/*CharacterID
An EVE character ID
*/
CharacterID int32
/*ContactIds
A list of contacts to add
*/
ContactIds []int32
/*Datasource
The server name you would like data from
*/
Datasource *string
/*LabelID
Add a custom label to the new contact
*/
LabelID *int64
/*Standing
Standing for the new contact
*/
Standing float32
/*Token
Access token to use if unable to set a header
*/
Token *string
/*UserAgent
Client identifier, takes precedence over headers
*/
UserAgent *string
/*Watched
Whether the new contact should be watched, note this is only effective on characters
*/
Watched *bool
timeout time.Duration
Context context.Context
HTTPClient *http.Client
}
// WithTimeout adds the timeout to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithTimeout(timeout time.Duration) *PostCharactersCharacterIDContactsParams {
o.SetTimeout(timeout)
return o
}
// SetTimeout adds the timeout to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetTimeout(timeout time.Duration) {
o.timeout = timeout
}
// WithContext adds the context to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithContext(ctx context.Context) *PostCharactersCharacterIDContactsParams {
o.SetContext(ctx)
return o
}
// SetContext adds the context to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetContext(ctx context.Context) {
o.Context = ctx
}
// WithHTTPClient adds the HTTPClient to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithHTTPClient(client *http.Client) *PostCharactersCharacterIDContactsParams {
o.SetHTTPClient(client)
return o
}
// SetHTTPClient adds the HTTPClient to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetHTTPClient(client *http.Client) {
o.HTTPClient = client
}
// WithXUserAgent adds the xUserAgent to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithXUserAgent(xUserAgent *string) *PostCharactersCharacterIDContactsParams {
o.SetXUserAgent(xUserAgent)
return o
}
// SetXUserAgent adds the xUserAgent to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetXUserAgent(xUserAgent *string) {
o.XUserAgent = xUserAgent
}
// WithCharacterID adds the characterID to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithCharacterID(characterID int32) *PostCharactersCharacterIDContactsParams {
o.SetCharacterID(characterID)
return o
}
// SetCharacterID adds the characterId to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetCharacterID(characterID int32) {
o.CharacterID = characterID
}
// WithContactIds adds the contactIds to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithContactIds(contactIds []int32) *PostCharactersCharacterIDContactsParams {
o.SetContactIds(contactIds)
return o
}
// SetContactIds adds the contactIds to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetContactIds(contactIds []int32) {
o.ContactIds = contactIds
}
// WithDatasource adds the datasource to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithDatasource(datasource *string) *PostCharactersCharacterIDContactsParams {
o.SetDatasource(datasource)
return o
}
// SetDatasource adds the datasource to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetDatasource(datasource *string) {
o.Datasource = datasource
}
// WithLabelID adds the labelID to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithLabelID(labelID *int64) *PostCharactersCharacterIDContactsParams {
o.SetLabelID(labelID)
return o
}
// SetLabelID adds the labelId to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetLabelID(labelID *int64) {
o.LabelID = labelID
}
// WithStanding adds the standing to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithStanding(standing float32) *PostCharactersCharacterIDContactsParams {
o.SetStanding(standing)
return o
}
// SetStanding adds the standing to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetStanding(standing float32) {
o.Standing = standing
}
// WithToken adds the token to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithToken(token *string) *PostCharactersCharacterIDContactsParams {
o.SetToken(token)
return o
}
// SetToken adds the token to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetToken(token *string) {
o.Token = token
}
// WithUserAgent adds the userAgent to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithUserAgent(userAgent *string) *PostCharactersCharacterIDContactsParams {
o.SetUserAgent(userAgent)
return o
}
// SetUserAgent adds the userAgent to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetUserAgent(userAgent *string) {
o.UserAgent = userAgent
}
// WithWatched adds the watched to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) WithWatched(watched *bool) *PostCharactersCharacterIDContactsParams {
o.SetWatched(watched)
return o
}
// SetWatched adds the watched to the post characters character id contacts params
func (o *PostCharactersCharacterIDContactsParams) SetWatched(watched *bool) {
o.Watched = watched
}
// WriteToRequest writes these params to a swagger request
func (o *PostCharactersCharacterIDContactsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error {
if err := r.SetTimeout(o.timeout); err != nil {
return err
}
var res []error
if o.XUserAgent != nil {
// header param X-User-Agent
if err := r.SetHeaderParam("X-User-Agent", *o.XUserAgent); err != nil {
return err
}
}
// path param character_id
if err := r.SetPathParam("character_id", swag.FormatInt32(o.CharacterID)); err != nil {
return err
}
if err := r.SetBodyParam(o.ContactIds); err != nil {
return err
}
if o.Datasource != nil {
// query param datasource
var qrDatasource string
if o.Datasource != nil {
qrDatasource = *o.Datasource
}
qDatasource := qrDatasource
if qDatasource != "" {
if err := r.SetQueryParam("datasource", qDatasource); err != nil {
return err
}
}
}
if o.LabelID != nil {
// query param label_id
var qrLabelID int64
if o.LabelID != nil {
qrLabelID = *o.LabelID
}
qLabelID := swag.FormatInt64(qrLabelID)
if qLabelID != "" {
if err := r.SetQueryParam("label_id", qLabelID); err != nil {
return err
}
}
}
// query param standing
qrStanding := o.Standing
qStanding := swag.FormatFloat32(qrStanding)
if qStanding != "" {
if err := r.SetQueryParam("standing", qStanding); err != nil {
return err
}
}
if o.Token != nil {
// query param token
var qrToken string
if o.Token != nil {
qrToken = *o.Token
}
qToken := qrToken
if qToken != "" {
if err := r.SetQueryParam("token", qToken); err != nil {
return err
}
}
}
if o.UserAgent != nil {
// query param user_agent
var qrUserAgent string
if o.UserAgent != nil {
qrUserAgent = *o.UserAgent
}
qUserAgent := qrUserAgent
if qUserAgent != "" {
if err := r.SetQueryParam("user_agent", qUserAgent); err != nil {
return err
}
}
}
if o.Watched != nil {
// query param watched
var qrWatched bool
if o.Watched != nil {
qrWatched = *o.Watched
}
qWatched := swag.FormatBool(qrWatched)
if qWatched != "" {
if err := r.SetQueryParam("watched", qWatched); err != nil {
return err
}
}
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}