github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_characters_character_id_skillqueue_200_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 GetCharactersCharacterIdSkillqueue200Ok. */
    30  //easyjson:json
    31  type GetCharactersCharacterIdSkillqueue200OkList []GetCharactersCharacterIdSkillqueue200Ok
    32  
    33  /* 200 ok object */
    34  //easyjson:json
    35  type GetCharactersCharacterIdSkillqueue200Ok struct {
    36  	FinishDate      time.Time `json:"finish_date,omitempty"`       /* Date on which training of the skill will complete. Omitted if the skill queue is paused. */
    37  	FinishedLevel   int32     `json:"finished_level,omitempty"`    /* finished_level integer */
    38  	LevelEndSp      int32     `json:"level_end_sp,omitempty"`      /* level_end_sp integer */
    39  	LevelStartSp    int32     `json:"level_start_sp,omitempty"`    /* Amount of SP that was in the skill when it started training it's current level. Used to calculate % of current level complete. */
    40  	QueuePosition   int32     `json:"queue_position,omitempty"`    /* queue_position integer */
    41  	SkillId         int32     `json:"skill_id,omitempty"`          /* skill_id integer */
    42  	StartDate       time.Time `json:"start_date,omitempty"`        /* start_date string */
    43  	TrainingStartSp int32     `json:"training_start_sp,omitempty"` /* training_start_sp integer */
    44  }