github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_characters_character_id_industry_jobs_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 GetCharactersCharacterIdIndustryJobs200Ok. */
    30  //easyjson:json
    31  type GetCharactersCharacterIdIndustryJobs200OkList []GetCharactersCharacterIdIndustryJobs200Ok
    32  
    33  /* 200 ok object */
    34  //easyjson:json
    35  type GetCharactersCharacterIdIndustryJobs200Ok struct {
    36  	ActivityId           int32     `json:"activity_id,omitempty"`            /* Job activity ID */
    37  	BlueprintId          int64     `json:"blueprint_id,omitempty"`           /* blueprint_id integer */
    38  	BlueprintLocationId  int64     `json:"blueprint_location_id,omitempty"`  /* Location ID of the location from which the blueprint was installed. Normally a station ID, but can also be an asset (e.g. container) or corporation facility */
    39  	BlueprintTypeId      int32     `json:"blueprint_type_id,omitempty"`      /* blueprint_type_id integer */
    40  	CompletedCharacterId int32     `json:"completed_character_id,omitempty"` /* ID of the character which completed this job */
    41  	CompletedDate        time.Time `json:"completed_date,omitempty"`         /* Date and time when this job was completed */
    42  	Cost                 float64   `json:"cost,omitempty"`                   /* The sume of job installation fee and industry facility tax */
    43  	Duration             int32     `json:"duration,omitempty"`               /* Job duration in seconds */
    44  	EndDate              time.Time `json:"end_date,omitempty"`               /* Date and time when this job finished */
    45  	FacilityId           int64     `json:"facility_id,omitempty"`            /* ID of the facility where this job is running */
    46  	InstallerId          int32     `json:"installer_id,omitempty"`           /* ID of the character which installed this job */
    47  	JobId                int32     `json:"job_id,omitempty"`                 /* Unique job ID */
    48  	LicensedRuns         int32     `json:"licensed_runs,omitempty"`          /* Number of runs blueprint is licensed for */
    49  	OutputLocationId     int64     `json:"output_location_id,omitempty"`     /* Location ID of the location to which the output of the job will be delivered. Normally a station ID, but can also be a corporation facility */
    50  	PauseDate            time.Time `json:"pause_date,omitempty"`             /* Date and time when this job was paused (i.e. time when the facility where this job was installed went offline) */
    51  	Probability          float32   `json:"probability,omitempty"`            /* Chance of success for invention */
    52  	ProductTypeId        int32     `json:"product_type_id,omitempty"`        /* Type ID of product (manufactured, copied or invented) */
    53  	Runs                 int32     `json:"runs,omitempty"`                   /* Number of runs for a manufacturing job, or number of copies to make for a blueprint copy */
    54  	StartDate            time.Time `json:"start_date,omitempty"`             /* Date and time when this job started */
    55  	StationId            int64     `json:"station_id,omitempty"`             /* ID of the station where industry facility is located */
    56  	Status               string    `json:"status,omitempty"`                 /* status string */
    57  	SuccessfulRuns       int32     `json:"successful_runs,omitempty"`        /* Number of successful runs for this job. Equal to runs unless this is an invention job */
    58  }