github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_characters_character_id_ok.go (about)

     1  /*
     2   * EVE Swagger Interface
     3   *
     4   * An OpenAPI for EVE Online
     5   *
     6   * OpenAPI spec version: 1.21
     7   *
     8   * Generated by: https://github.com/swagger-api/swagger-codegen.git
     9   *
    10   * Licensed under the Apache License, Version 2.0 (the "License");
    11   * you may not use this file except in compliance with the License.
    12   * You may obtain a copy of the License at
    13   *
    14   *      http://www.apache.org/licenses/LICENSE-2.0
    15   *
    16   * Unless required by applicable law or agreed to in writing, software
    17   * distributed under the License is distributed on an "AS IS" BASIS,
    18   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    19   * See the License for the specific language governing permissions and
    20   * limitations under the License.
    21   */
    22  
    23  package esi
    24  
    25  import (
    26  	"time"
    27  )
    28  
    29  /* A list of GetCharactersCharacterIdOk. */
    30  //easyjson:json
    31  type GetCharactersCharacterIdOkList []GetCharactersCharacterIdOk
    32  
    33  /* 200 ok object */
    34  //easyjson:json
    35  type GetCharactersCharacterIdOk struct {
    36  	AllianceId     int32     `json:"alliance_id,omitempty"`     /* The character's alliance ID */
    37  	Birthday       time.Time `json:"birthday,omitempty"`        /* Creation date of the character */
    38  	BloodlineId    int32     `json:"bloodline_id,omitempty"`    /* bloodline_id integer */
    39  	CorporationId  int32     `json:"corporation_id,omitempty"`  /* The character's corporation ID */
    40  	Description    string    `json:"description,omitempty"`     /* description string */
    41  	FactionId      int32     `json:"faction_id,omitempty"`      /* ID of the faction the character is fighting for, if the character is enlisted in Factional Warfare */
    42  	Gender         string    `json:"gender,omitempty"`          /* gender string */
    43  	Name           string    `json:"name,omitempty"`            /* name string */
    44  	RaceId         int32     `json:"race_id,omitempty"`         /* race_id integer */
    45  	SecurityStatus float32   `json:"security_status,omitempty"` /* security_status number */
    46  	Title          string    `json:"title,omitempty"`           /* The individual title of the character */
    47  }