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/models/post_characters_character_id_cspa_created_body.go

56 lines
1.4 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package models
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/errors"
"github.com/go-openapi/swag"
)
// PostCharactersCharacterIDCspaCreatedBody post_characters_character_id_cspa_created
//
// 201 created object
// swagger:model postCharactersCharacterIdCspaCreatedBody
type PostCharactersCharacterIDCspaCreatedBody struct {
// post_characters_character_id_cspa_cost
//
// cost integer
Cost int64 `json:"cost,omitempty"`
}
/* polymorph postCharactersCharacterIdCspaCreatedBody cost false */
// Validate validates this post characters character Id cspa created body
func (m *PostCharactersCharacterIDCspaCreatedBody) Validate(formats strfmt.Registry) error {
var res []error
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
// MarshalBinary interface implementation
func (m *PostCharactersCharacterIDCspaCreatedBody) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *PostCharactersCharacterIDCspaCreatedBody) UnmarshalBinary(b []byte) error {
var res PostCharactersCharacterIDCspaCreatedBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}