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_mail_params_body.go

131 lines
3.1 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"
"github.com/go-openapi/validate"
)
// PostCharactersCharacterIDMailParamsBody post_characters_character_id_mail_mail
//
// mail schema
// swagger:model postCharactersCharacterIdMailParamsBody
type PostCharactersCharacterIDMailParamsBody struct {
// post_characters_character_id_mail_approved_cost
//
// approved_cost integer
ApprovedCost int64 `json:"approved_cost,omitempty"`
// post_characters_character_id_mail_body
//
// body string
// Required: true
// Max Length: 10000
Body *string `json:"body"`
// recipients
// Required: true
Recipients PostCharactersCharacterIDMailParamsBodyRecipients `json:"recipients"`
// post_characters_character_id_mail_subject
//
// subject string
// Required: true
// Max Length: 1000
Subject *string `json:"subject"`
}
/* polymorph postCharactersCharacterIdMailParamsBody approved_cost false */
/* polymorph postCharactersCharacterIdMailParamsBody body false */
/* polymorph postCharactersCharacterIdMailParamsBody recipients false */
/* polymorph postCharactersCharacterIdMailParamsBody subject false */
// Validate validates this post characters character Id mail params body
func (m *PostCharactersCharacterIDMailParamsBody) Validate(formats strfmt.Registry) error {
var res []error
if err := m.validateBody(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateRecipients(formats); err != nil {
// prop
res = append(res, err)
}
if err := m.validateSubject(formats); err != nil {
// prop
res = append(res, err)
}
if len(res) > 0 {
return errors.CompositeValidationError(res...)
}
return nil
}
func (m *PostCharactersCharacterIDMailParamsBody) validateBody(formats strfmt.Registry) error {
if err := validate.Required("body", "body", m.Body); err != nil {
return err
}
if err := validate.MaxLength("body", "body", string(*m.Body), 10000); err != nil {
return err
}
return nil
}
func (m *PostCharactersCharacterIDMailParamsBody) validateRecipients(formats strfmt.Registry) error {
if err := validate.Required("recipients", "body", m.Recipients); err != nil {
return err
}
return nil
}
func (m *PostCharactersCharacterIDMailParamsBody) validateSubject(formats strfmt.Registry) error {
if err := validate.Required("subject", "body", m.Subject); err != nil {
return err
}
if err := validate.MaxLength("subject", "body", string(*m.Subject), 1000); err != nil {
return err
}
return nil
}
// MarshalBinary interface implementation
func (m *PostCharactersCharacterIDMailParamsBody) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *PostCharactersCharacterIDMailParamsBody) UnmarshalBinary(b []byte) error {
var res PostCharactersCharacterIDMailParamsBody
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}