github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_contracts_public_items_contract_id_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  /* A list of GetContractsPublicItemsContractId200Ok. */
    26  //easyjson:json
    27  type GetContractsPublicItemsContractId200OkList []GetContractsPublicItemsContractId200Ok
    28  
    29  /* 200 ok object */
    30  //easyjson:json
    31  type GetContractsPublicItemsContractId200Ok struct {
    32  	IsBlueprintCopy    bool  `json:"is_blueprint_copy,omitempty"`   /* is_blueprint_copy boolean */
    33  	IsIncluded         bool  `json:"is_included,omitempty"`         /* true if the contract issuer has submitted this item with the contract, false if the isser is asking for this item in the contract */
    34  	ItemId             int64 `json:"item_id,omitempty"`             /* Unique ID for the item being sold. Not present if item is being requested by contract rather than sold with contract */
    35  	MaterialEfficiency int32 `json:"material_efficiency,omitempty"` /* Material Efficiency Level of the blueprint */
    36  	Quantity           int32 `json:"quantity,omitempty"`            /* Number of items in the stack */
    37  	RecordId           int64 `json:"record_id,omitempty"`           /* Unique ID for the item, used by the contract system */
    38  	Runs               int32 `json:"runs,omitempty"`                /* Number of runs remaining if the blueprint is a copy, -1 if it is an original */
    39  	TimeEfficiency     int32 `json:"time_efficiency,omitempty"`     /* Time Efficiency Level of the blueprint */
    40  	TypeId             int32 `json:"type_id,omitempty"`             /* Type ID for item */
    41  }