github.com/antihax/goesi@v0.0.0-20240126031043-6c54d0cb7f95/esi/model_get_characters_character_id_orders_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 GetCharactersCharacterIdOrders200Ok. */
    30  //easyjson:json
    31  type GetCharactersCharacterIdOrders200OkList []GetCharactersCharacterIdOrders200Ok
    32  
    33  /* 200 ok object */
    34  //easyjson:json
    35  type GetCharactersCharacterIdOrders200Ok struct {
    36  	Duration      int32     `json:"duration,omitempty"`       /* Number of days for which order is valid (starting from the issued date). An order expires at time issued + duration */
    37  	Escrow        float64   `json:"escrow,omitempty"`         /* For buy orders, the amount of ISK in escrow */
    38  	IsBuyOrder    bool      `json:"is_buy_order,omitempty"`   /* True if the order is a bid (buy) order */
    39  	IsCorporation bool      `json:"is_corporation,omitempty"` /* Signifies whether the buy/sell order was placed on behalf of a corporation. */
    40  	Issued        time.Time `json:"issued,omitempty"`         /* Date and time when this order was issued */
    41  	LocationId    int64     `json:"location_id,omitempty"`    /* ID of the location where order was placed */
    42  	MinVolume     int32     `json:"min_volume,omitempty"`     /* For buy orders, the minimum quantity that will be accepted in a matching sell order */
    43  	OrderId       int64     `json:"order_id,omitempty"`       /* Unique order ID */
    44  	Price         float64   `json:"price,omitempty"`          /* Cost per unit for this order */
    45  	Range_        string    `json:"range,omitempty"`          /* Valid order range, numbers are ranges in jumps */
    46  	RegionId      int32     `json:"region_id,omitempty"`      /* ID of the region where order was placed */
    47  	TypeId        int32     `json:"type_id,omitempty"`        /* The type ID of the item transacted in this order */
    48  	VolumeRemain  int32     `json:"volume_remain,omitempty"`  /* Quantity of items still required or offered */
    49  	VolumeTotal   int32     `json:"volume_total,omitempty"`   /* Quantity of items required or offered at time order was placed */
    50  }