Versions in this module Expand all Collapse all v0 v0.2.1 May 19, 2023 Changes in this version + var ContextAPIKey = contextKey("apikey") + var ContextAccessToken = contextKey("accesstoken") + var ContextBasicAuth = contextKey("basic") + var ContextOAuth2 = contextKey("token") + func CacheExpires(r *http.Response) time.Time + type APIClient struct + AgentsApi *AgentsApiService + ContractsApi *ContractsApiService + DefaultApi *DefaultApiService + FactionsApi *FactionsApiService + FleetApi *FleetApiService + SystemsApi *SystemsApiService + func NewAPIClient(cfg *Configuration) *APIClient + func (c *APIClient) ChangeBasePath(path string) + type APIKey struct + Key string + Prefix string + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type Agent struct + AccountId string + Credits int32 + Headquarters string + Symbol string + type AgentsApiService service + func (a *AgentsApiService) GetMyAgent(ctx context.Context) (InlineResponse2009, *http.Response, error) + type BasicAuth struct + Password string + UserName string + type Chart struct + SubmittedBy string + SubmittedOn time.Time + WaypointSymbol string + type Configuration struct + BasePath string + DefaultHeader map[string]string + HTTPClient *http.Client + Host string + Scheme string + UserAgent string + func NewConfiguration() *Configuration + func (c *Configuration) AddDefaultHeader(key string, value string) + type ConnectedSystem struct + Distance int32 + FactionSymbol string + SectorSymbol string + Symbol string + Type_ *SystemType + X int32 + Y int32 + type Contract struct + Accepted bool + Expiration time.Time + FactionSymbol string + Fulfilled bool + Id string + Terms *ContractTerms + Type_ string + type ContractDeliverGood struct + DestinationSymbol string + TradeSymbol string + UnitsFulfilled int32 + UnitsRequired int32 + type ContractIdDeliverBody struct + ShipSymbol string + TradeSymbol string + Units int32 + type ContractPayment struct + OnAccepted int32 + OnFulfilled int32 + type ContractTerms struct + Deadline time.Time + Deliver []ContractDeliverGood + Payment *ContractPayment + type ContractsApiDeliverContractOpts struct + Body optional.Interface + type ContractsApiGetContractsOpts struct + Limit optional.Int32 + Page optional.Int32 + type ContractsApiService service + func (a *ContractsApiService) AcceptContract(ctx context.Context, contractId string) (InlineResponse20012, *http.Response, error) + func (a *ContractsApiService) DeliverContract(ctx context.Context, contractId string, ...) (InlineResponse20013, *http.Response, error) + func (a *ContractsApiService) FulfillContract(ctx context.Context, contractId string) (InlineResponse20014, *http.Response, error) + func (a *ContractsApiService) GetContract(ctx context.Context, contractId string) (InlineResponse20011, *http.Response, error) + func (a *ContractsApiService) GetContracts(ctx context.Context, localVarOptionals *ContractsApiGetContractsOpts) (InlineResponse20010, *http.Response, error) + type Cooldown struct + Expiration time.Time + RemainingSeconds int32 + ShipSymbol string + TotalSeconds int32 + type DefaultApiRegisterOpts struct + Body optional.Interface + type DefaultApiService service + func (a *DefaultApiService) Register(ctx context.Context, localVarOptionals *DefaultApiRegisterOpts) (InlineResponse201, *http.Response, error) + type DockShip200Response struct + Data *OrbitShip200ResponseData + type Extraction struct + ShipSymbol string + Yield *ExtractionYield + type ExtractionYield struct + Symbol string + Units int32 + type Faction struct + Description string + Headquarters string + Name string + Symbol string + Traits []FactionTrait + type FactionTrait struct + Description string + Name string + Symbol string + type FactionsApiGetFactionsOpts struct + Limit optional.Int32 + Page optional.Int32 + type FactionsApiService service + func (a *FactionsApiService) GetFaction(ctx context.Context, factionSymbol string) (InlineResponse2008, *http.Response, error) + func (a *FactionsApiService) GetFactions(ctx context.Context, localVarOptionals *FactionsApiGetFactionsOpts) (InlineResponse2007, *http.Response, error) + type FleetApiExtractResourcesOpts struct + Body optional.Interface + type FleetApiGetMyShipsOpts struct + Limit optional.Int32 + Page optional.Int32 + type FleetApiJettisonOpts struct + Body optional.Interface + type FleetApiJumpShipOpts struct + Body optional.Interface + type FleetApiNavigateShipOpts struct + Body optional.Interface + type FleetApiPatchShipNavOpts struct + Body optional.Interface + type FleetApiPurchaseCargoOpts struct + Body optional.Interface + type FleetApiPurchaseShipOpts struct + Body optional.Interface + type FleetApiSellCargoOpts struct + Body optional.Interface + type FleetApiService service + func (a *FleetApiService) CreateChart(ctx context.Context, shipSymbol string) (InlineResponse2012, *http.Response, error) + func (a *FleetApiService) CreateShipShipScan(ctx context.Context, shipSymbol string) (InlineResponse2017, *http.Response, error) + func (a *FleetApiService) CreateShipSystemScan(ctx context.Context, shipSymbol string) (InlineResponse2015, *http.Response, error) + func (a *FleetApiService) CreateShipWaypointScan(ctx context.Context, shipSymbol string) (InlineResponse2016, *http.Response, error) + func (a *FleetApiService) CreateSurvey(ctx context.Context, shipSymbol string) (InlineResponse2013, *http.Response, error) + func (a *FleetApiService) DockShip(ctx context.Context, shipSymbol string) (DockShip200Response, *http.Response, error) + func (a *FleetApiService) ExtractResources(ctx context.Context, shipSymbol string, ...) (InlineResponse2014, *http.Response, error) + func (a *FleetApiService) GetMyShip(ctx context.Context, shipSymbol string) (InlineResponse20016, *http.Response, error) + func (a *FleetApiService) GetMyShipCargo(ctx context.Context, shipSymbol string) (InlineResponse20017, *http.Response, error) + func (a *FleetApiService) GetMyShips(ctx context.Context, localVarOptionals *FleetApiGetMyShipsOpts) (InlineResponse20015, *http.Response, error) + func (a *FleetApiService) GetShipCooldown(ctx context.Context, shipSymbol string) (InlineResponse20018, *http.Response, error) + func (a *FleetApiService) GetShipNav(ctx context.Context, shipSymbol string) (InlineResponse20022, *http.Response, error) + func (a *FleetApiService) Jettison(ctx context.Context, shipSymbol string, ...) (InlineResponse20019, *http.Response, error) + func (a *FleetApiService) JumpShip(ctx context.Context, shipSymbol string, ...) (InlineResponse20020, *http.Response, error) + func (a *FleetApiService) NavigateShip(ctx context.Context, shipSymbol string, ...) (InlineResponse20021, *http.Response, error) + func (a *FleetApiService) OrbitShip(ctx context.Context, shipSymbol string) (OrbitShip200Response, *http.Response, error) + func (a *FleetApiService) PatchShipNav(ctx context.Context, shipSymbol string, ...) (InlineResponse20022, *http.Response, error) + func (a *FleetApiService) PurchaseCargo(ctx context.Context, shipSymbol string, ...) (PurchaseCargo201Response, *http.Response, error) + func (a *FleetApiService) PurchaseShip(ctx context.Context, localVarOptionals *FleetApiPurchaseShipOpts) (InlineResponse2011, *http.Response, error) + func (a *FleetApiService) RefuelShip(ctx context.Context, shipSymbol string) (InlineResponse20023, *http.Response, error) + func (a *FleetApiService) SellCargo(ctx context.Context, shipSymbol string, ...) (SellCargo201Response, *http.Response, error) + func (a *FleetApiService) ShipRefine(ctx context.Context, shipSymbol string, ...) (ShipRefine200Response, *http.Response, error) + func (a *FleetApiService) TransferCargo(ctx context.Context, shipSymbol string, ...) (TransferCargo200Response, *http.Response, error) + func (a *FleetApiService) WarpShip(ctx context.Context, shipSymbol string, ...) (InlineResponse20021, *http.Response, error) + type FleetApiShipRefineOpts struct + Body optional.Interface + type FleetApiTransferCargoOpts struct + Body optional.Interface + type FleetApiWarpShipOpts struct + Body optional.Interface + type GenericSwaggerError struct + func (e GenericSwaggerError) Body() []byte + func (e GenericSwaggerError) Error() string + func (e GenericSwaggerError) Model() interface{} + type InlineResponse200 struct + Data []System + Meta *Meta + type InlineResponse2001 struct + Data *System + type InlineResponse20010 struct + Data []Contract + Meta *Meta + type InlineResponse20011 struct + Data *Contract + type InlineResponse20012 struct + Data *InlineResponse20012Data + type InlineResponse20012Data struct + Agent *Agent + Contract *Contract + type InlineResponse20013 struct + Data *InlineResponse20013Data + type InlineResponse20013Data struct + Cargo *ShipCargo + Contract *Contract + type InlineResponse20014 struct + Data *InlineResponse20012Data + type InlineResponse20015 struct + Data []Ship + Meta *Meta + type InlineResponse20016 struct + Data *Ship + type InlineResponse20017 struct + Data *ShipCargo + type InlineResponse20018 struct + Data *Cooldown + type InlineResponse20019 struct + Data *InlineResponse20019Data + type InlineResponse20019Data struct + Cargo *ShipCargo + type InlineResponse2002 struct + Data []Waypoint + Meta *Meta + type InlineResponse20020 struct + Data *InlineResponse20020Data + type InlineResponse20020Data struct + Cooldown *Cooldown + Nav *ShipNav + type InlineResponse20021 struct + Data *InlineResponse20021Data + type InlineResponse20021Data struct + Fuel *ShipFuel + Nav *ShipNav + type InlineResponse20022 struct + Data *ShipNav + type InlineResponse20023 struct + Data *InlineResponse20023Data + type InlineResponse20023Data struct + Agent *Agent + Fuel *ShipFuel + type InlineResponse2003 struct + Data *Waypoint + type InlineResponse2004 struct + Data *Market + type InlineResponse2005 struct + Data *Shipyard + type InlineResponse2006 struct + Data *JumpGate + type InlineResponse2007 struct + Data []Faction + Meta *Meta + type InlineResponse2008 struct + Data *Faction + type InlineResponse2009 struct + Data *Agent + type InlineResponse201 struct + Data *InlineResponse201Data + type InlineResponse2011 struct + Data *InlineResponse2011Data + type InlineResponse2011Data struct + Agent *Agent + Ship *Ship + Transaction *ShipyardTransaction + type InlineResponse2012 struct + Data *InlineResponse2012Data + type InlineResponse2012Data struct + Chart *Chart + Waypoint *Waypoint + type InlineResponse2013 struct + Data *InlineResponse2013Data + type InlineResponse2013Data struct + Cooldown *Cooldown + Surveys []Survey + type InlineResponse2014 struct + Data *InlineResponse2014Data + type InlineResponse2014Data struct + Cargo *ShipCargo + Cooldown *Cooldown + Extraction *Extraction + type InlineResponse2015 struct + Data *InlineResponse2015Data + type InlineResponse2015Data struct + Cooldown *Cooldown + Systems []ScannedSystem + type InlineResponse2016 struct + Data *InlineResponse2016Data + type InlineResponse2016Data struct + Cooldown *Cooldown + Waypoints []ScannedWaypoint + type InlineResponse2017 struct + Data *InlineResponse2017Data + type InlineResponse2017Data struct + Cooldown *Cooldown + Ships []ScannedShip + type InlineResponse201Data struct + Agent *Agent + Contract *Contract + Faction *Faction + Ship *Ship + Token string + type JumpGate struct + ConnectedSystems []ConnectedSystem + FactionSymbol string + JumpRange float64 + type Market struct + Exchange []TradeGood + Exports []TradeGood + Imports []TradeGood + Symbol string + TradeGoods []MarketTradeGood + Transactions []MarketTransaction + type MarketTradeGood struct + PurchasePrice int32 + SellPrice int32 + Supply string + Symbol string + TradeVolume int32 + type MarketTransaction struct + PricePerUnit int32 + ShipSymbol string + Timestamp time.Time + TotalPrice int32 + TradeSymbol string + Type_ string + Units int32 + WaypointSymbol string + type Meta struct + Limit int32 + Page int32 + Total int32 + type MyShipsBody struct + ShipType *ShipType + WaypointSymbol string + type OrbitShip200Response struct + Data *OrbitShip200ResponseData + type OrbitShip200ResponseData struct + Nav *ShipNav + type PurchaseCargo201Response struct + Data *SellCargo201ResponseData + type PurchaseCargoRequest struct + Symbol string + Units int32 + type RegisterBody struct + Email string + Faction string + Symbol string + type ScannedShip struct + Engine *ScannedShipEngine + Frame *ScannedShipFrame + Mounts []ScannedShipMounts + Nav *ShipNav + Reactor *ScannedShipReactor + Registration *ShipRegistration + Symbol string + type ScannedShipEngine struct + Symbol string + type ScannedShipFrame struct + Symbol string + type ScannedShipMounts struct + Symbol string + type ScannedShipReactor struct + Symbol string + type ScannedSystem struct + Distance int32 + SectorSymbol string + Symbol string + Type_ *SystemType + X int32 + Y int32 + type ScannedWaypoint struct + Chart *Chart + Faction *WaypointFaction + Orbitals []WaypointOrbital + Symbol string + SystemSymbol string + Traits []WaypointTrait + Type_ *WaypointType + X int32 + Y int32 + type SellCargo201Response struct + Data *SellCargo201ResponseData + type SellCargo201ResponseData struct + Agent *Agent + Cargo *ShipCargo + Transaction *MarketTransaction + type SellCargoRequest struct + Symbol string + Units int32 + type Ship struct + Cargo *ShipCargo + Crew *ShipCrew + Engine *ShipEngine + Frame *ShipFrame + Fuel *ShipFuel + Modules []ShipModule + Mounts []ShipMount + Nav *ShipNav + Reactor *ShipReactor + Registration *ShipRegistration + Symbol string + type ShipCargo struct + Capacity int32 + Inventory []ShipCargoItem + Units int32 + type ShipCargoItem struct + Description string + Name string + Symbol string + Units int32 + type ShipCrew struct + Capacity int32 + Current int32 + Morale int32 + Required int32 + Rotation string + Wages int32 + type ShipEngine struct + Condition int32 + Description string + Name string + Requirements *ShipRequirements + Speed float64 + Symbol string + type ShipFrame struct + Condition int32 + Description string + FuelCapacity int32 + ModuleSlots int32 + MountingPoints int32 + Name string + Requirements *ShipRequirements + Symbol string + type ShipFuel struct + Capacity int32 + Consumed *ShipFuelConsumed + Current int32 + type ShipFuelConsumed struct + Amount int32 + Timestamp time.Time + type ShipModule struct + Capacity int32 + Description string + Name string + Range_ int32 + Requirements *ShipRequirements + Symbol string + type ShipMount struct + Deposits []string + Description string + Name string + Requirements *ShipRequirements + Strength int32 + Symbol string + type ShipNav struct + FlightMode *ShipNavFlightMode + Route *ShipNavRoute + Status *ShipNavStatus + SystemSymbol string + WaypointSymbol string + type ShipNavFlightMode string + const BURN_ShipNavFlightMode + const CRUISE_ShipNavFlightMode + const DRIFT_ShipNavFlightMode + const STEALTH_ShipNavFlightMode + type ShipNavRoute struct + Arrival time.Time + Departure *ShipNavRouteWaypoint + DepartureTime time.Time + Destination *ShipNavRouteWaypoint + type ShipNavRouteWaypoint struct + Symbol string + SystemSymbol string + Type_ *WaypointType + X int32 + Y int32 + type ShipNavStatus string + const DOCKED_ShipNavStatus + const IN_ORBIT_ShipNavStatus + const IN_TRANSIT_ShipNavStatus + type ShipReactor struct + Condition int32 + Description string + Name string + PowerOutput int32 + Requirements *ShipRequirements + Symbol string + type ShipRefine200Response struct + Data *ShipRefine200ResponseData + type ShipRefine200ResponseData struct + Cargo *ShipCargo + Consumed []ShipRefine200ResponseDataProduced + Cooldown *Cooldown + Produced []ShipRefine200ResponseDataProduced + type ShipRefine200ResponseDataProduced struct + TradeSymbol string + Units int32 + type ShipRegistration struct + FactionSymbol string + Name string + Role *ShipRole + type ShipRequirements struct + Crew int32 + Power int32 + Slots int32 + type ShipRole string + const CARRIER_ShipRole + const COMMAND_ShipRole + const EXCAVATOR_ShipRole + const EXPLORER_ShipRole + const FABRICATOR_ShipRole + const HARVESTER_ShipRole + const HAULER_ShipRole + const INTERCEPTOR_ShipRole + const PATROL_ShipRole + const REFINERY_ShipRole + const REPAIR_ShipRole + const SATELLITE_ShipRole + const SURVEYOR_ShipRole + const TRANSPORT_ShipRole + type ShipSymbolExtractBody struct + Survey *Survey + type ShipSymbolJettisonBody struct + Symbol string + Units int32 + type ShipSymbolJumpBody struct + SystemSymbol string + type ShipSymbolNavBody struct + FlightMode *ShipNavFlightMode + type ShipSymbolNavigateBody struct + WaypointSymbol string + type ShipSymbolRefineBody struct + Produce string + type ShipSymbolWarpBody struct + WaypointSymbol string + type ShipType string + const COMMAND_FRIGATE_ShipType + const EXPLORER_ShipType + const HEAVY_FREIGHTER_ShipType + const INTERCEPTOR_ShipType + const LIGHT_HAULER_ShipType + const LIGHT_SHUTTLE_ShipType + const MINING_DRONE_ShipType + const ORE_HOUND_ShipType + const PROBE_ShipType + const REFINING_FREIGHTER_ShipType + type Shipyard struct + ShipTypes []ShipyardShipTypes + Ships []ShipyardShip + Symbol string + Transactions []ShipyardTransaction + type ShipyardShip struct + Description string + Engine *ShipEngine + Frame *ShipFrame + Modules []ShipModule + Mounts []ShipMount + Name string + PurchasePrice int32 + Reactor *ShipReactor + Type_ *ShipType + type ShipyardShipTypes struct + Type_ *ShipType + type ShipyardTransaction struct + AgentSymbol string + Price int32 + ShipSymbol string + Timestamp time.Time + WaypointSymbol string + type Survey struct + Deposits []SurveyDeposit + Expiration time.Time + Signature string + Size string + Symbol string + type SurveyDeposit struct + Symbol string + type System struct + Factions []SystemFaction + SectorSymbol string + Symbol string + Type_ *SystemType + Waypoints []SystemWaypoint + X int32 + Y int32 + type SystemFaction struct + Symbol string + type SystemType string + const BLACK_HOLE_SystemType + const BLUE_STAR_SystemType + const HYPERGIANT_SystemType + const NEBULA_SystemType + const NEUTRON_STAR_SystemType + const ORANGE_STAR_SystemType + const RED_STAR_SystemType + const UNSTABLE_SystemType + const WHITE_DWARF_SystemType + const YOUNG_STAR_SystemType + type SystemWaypoint struct + Symbol string + Type_ *WaypointType + X int32 + Y int32 + type SystemsApiGetSystemWaypointsOpts struct + Limit optional.Int32 + Page optional.Int32 + type SystemsApiGetSystemsOpts struct + Limit optional.Int32 + Page optional.Int32 + type SystemsApiService service + func (a *SystemsApiService) GetJumpGate(ctx context.Context, systemSymbol string, waypointSymbol string) (InlineResponse2006, *http.Response, error) + func (a *SystemsApiService) GetMarket(ctx context.Context, systemSymbol string, waypointSymbol string) (InlineResponse2004, *http.Response, error) + func (a *SystemsApiService) GetShipyard(ctx context.Context, systemSymbol string, waypointSymbol string) (InlineResponse2005, *http.Response, error) + func (a *SystemsApiService) GetSystem(ctx context.Context, systemSymbol string) (InlineResponse2001, *http.Response, error) + func (a *SystemsApiService) GetSystemWaypoints(ctx context.Context, systemSymbol string, ...) (InlineResponse2002, *http.Response, error) + func (a *SystemsApiService) GetSystems(ctx context.Context, localVarOptionals *SystemsApiGetSystemsOpts) (InlineResponse200, *http.Response, error) + func (a *SystemsApiService) GetWaypoint(ctx context.Context, systemSymbol string, waypointSymbol string) (InlineResponse2003, *http.Response, error) + type TradeGood struct + Description string + Name string + Symbol *TradeSymbol + type TradeSymbol string + const ADVANCED_CIRCUITRY_TradeSymbol + const AI_MAINFRAMES_TradeSymbol + const ALUMINUM_ORE_TradeSymbol + const ALUMINUM_TradeSymbol + const AMMONIA_ICE_TradeSymbol + const AMMUNITION_TradeSymbol + const ANTIMATTER_TradeSymbol + const ASSAULT_RIFLES_TradeSymbol + const BIOCOMPOSITES_TradeSymbol + const BOTANICAL_SPECIMENS_TradeSymbol + const CLOTHING_TradeSymbol + const COPPER_ORE_TradeSymbol + const COPPER_TradeSymbol + const CULTURAL_ARTIFACTS_TradeSymbol + const CYBER_IMPLANTS_TradeSymbol + const DIAMONDS_TradeSymbol + const DRUGS_TradeSymbol + const ELECTRONICS_TradeSymbol + const ENGINE_HYPER_DRIVE_I_TradeSymbol + const ENGINE_IMPULSE_DRIVE_I_TradeSymbol + const ENGINE_ION_DRIVE_II_TradeSymbol + const ENGINE_ION_DRIVE_I_TradeSymbol + const EQUIPMENT_TradeSymbol + const EXOTIC_MATTER_TradeSymbol + const EXPLOSIVES_TradeSymbol + const FABRICS_TradeSymbol + const FERTILIZERS_TradeSymbol + const FIREARMS_TradeSymbol + const FOOD_TradeSymbol + const FUEL_TradeSymbol + const GENE_THERAPEUTICS_TradeSymbol + const GOLD_ORE_TradeSymbol + const GOLD_TradeSymbol + const GRAVITON_EMITTERS_TradeSymbol + const HOLOGRAPHICS_TradeSymbol + const HYDROCARBON_TradeSymbol + const ICE_WATER_TradeSymbol + const IRON_ORE_TradeSymbol + const IRON_TradeSymbol + const JEWELRY_TradeSymbol + const LAB_INSTRUMENTS_TradeSymbol + const LASER_RIFLES_TradeSymbol + const LIQUID_HYDROGEN_TradeSymbol + const LIQUID_NITROGEN_TradeSymbol + const MACHINERY_TradeSymbol + const MEDICINE_TradeSymbol + const MERITIUM_ORE_TradeSymbol + const MERITIUM_TradeSymbol + const MICROPROCESSORS_TradeSymbol + const MICRO_FUSION_GENERATORS_TradeSymbol + const MILITARY_EQUIPMENT_TradeSymbol + const MODULE_CARGO_HOLD_I_TradeSymbol + const MODULE_CREW_QUARTERS_I_TradeSymbol + const MODULE_ENVOY_QUARTERS_I_TradeSymbol + const MODULE_FUEL_REFINERY_I_TradeSymbol + const MODULE_JUMP_DRIVE_III_TradeSymbol + const MODULE_JUMP_DRIVE_II_TradeSymbol + const MODULE_JUMP_DRIVE_I_TradeSymbol + const MODULE_MICRO_REFINERY_I_TradeSymbol + const MODULE_MINERAL_PROCESSOR_I_TradeSymbol + const MODULE_ORE_REFINERY_I_TradeSymbol + const MODULE_PASSENGER_CABIN_I_TradeSymbol + const MODULE_SCIENCE_LAB_I_TradeSymbol + const MODULE_SHIELD_GENERATOR_II_TradeSymbol + const MODULE_SHIELD_GENERATOR_I_TradeSymbol + const MODULE_WARP_DRIVE_III_TradeSymbol + const MODULE_WARP_DRIVE_II_TradeSymbol + const MODULE_WARP_DRIVE_I_TradeSymbol + const MOOD_REGULATORS_TradeSymbol + const MOUNT_GAS_SIPHON_III_TradeSymbol + const MOUNT_GAS_SIPHON_II_TradeSymbol + const MOUNT_GAS_SIPHON_I_TradeSymbol + const MOUNT_LASER_CANNON_I_TradeSymbol + const MOUNT_MINING_LASER_III_TradeSymbol + const MOUNT_MINING_LASER_II_TradeSymbol + const MOUNT_MINING_LASER_I_TradeSymbol + const MOUNT_MISSILE_LAUNCHER_I_TradeSymbol + const MOUNT_SENSOR_ARRAY_III_TradeSymbol + const MOUNT_SENSOR_ARRAY_II_TradeSymbol + const MOUNT_SENSOR_ARRAY_I_TradeSymbol + const MOUNT_SURVEYOR_III_TradeSymbol + const MOUNT_SURVEYOR_II_TradeSymbol + const MOUNT_SURVEYOR_I_TradeSymbol + const MOUNT_TURRET_I_TradeSymbol + const NANOBOTS_TradeSymbol + const NEURAL_CHIPS_TradeSymbol + const NOVEL_LIFEFORMS_TradeSymbol + const PLASTICS_TradeSymbol + const PLATINUM_ORE_TradeSymbol + const PLATINUM_TradeSymbol + const POLYNUCLEOTIDES_TradeSymbol + const PRECIOUS_STONES_TradeSymbol + const QUANTUM_DRIVES_TradeSymbol + const QUARTZ_SAND_TradeSymbol + const REACTOR_ANTIMATTER_I_TradeSymbol + const REACTOR_CHEMICAL_I_TradeSymbol + const REACTOR_FISSION_I_TradeSymbol + const REACTOR_FUSION_I_TradeSymbol + const REACTOR_SOLAR_I_TradeSymbol + const RELIC_TECH_TradeSymbol + const ROBOTIC_DRONES_TradeSymbol + const SHIP_PLATING_TradeSymbol + const SHIP_SALVAGE_TradeSymbol + const SILICON_CRYSTALS_TradeSymbol + const SILVER_ORE_TradeSymbol + const SILVER_TradeSymbol + const SUPERGRAINS_TradeSymbol + const URANITE_ORE_TradeSymbol + const URANITE_TradeSymbol + const VIRAL_AGENTS_TradeSymbol + type TransferCargo200Response struct + Data *InlineResponse20019Data + type TransferCargoRequest struct + ShipSymbol string + TradeSymbol string + Units int32 + type Waypoint struct + Chart *Chart + Faction *WaypointFaction + Orbitals []WaypointOrbital + Symbol string + SystemSymbol string + Traits []WaypointTrait + Type_ *WaypointType + X int32 + Y int32 + type WaypointFaction struct + Symbol string + type WaypointOrbital struct + Symbol string + type WaypointTrait struct + Description string + Name string + Symbol string + type WaypointType string + const ASTEROID_FIELD_WaypointType + const DEBRIS_FIELD_WaypointType + const GAS_GIANT_WaypointType + const GRAVITY_WELL_WaypointType + const JUMP_GATE_WaypointType + const MOON_WaypointType + const NEBULA_WaypointType + const ORBITAL_STATION_WaypointType + const PLANET_WaypointType