Trait PlanetaryInteractionApi
Source pub trait PlanetaryInteractionApi {
// Required methods
fn get_characters_character_id_planets(
&self,
character_id: i32,
datasource: &str,
if_none_match: &str,
token: &str,
) -> Result<Vec<GetCharactersCharacterIdPlanets200Ok>, Error>;
fn get_characters_character_id_planets_planet_id(
&self,
character_id: i32,
planet_id: i32,
datasource: &str,
if_none_match: &str,
token: &str,
) -> Result<GetCharactersCharacterIdPlanetsPlanetIdOk, Error>;
fn get_corporations_corporation_id_customs_offices(
&self,
corporation_id: i32,
datasource: &str,
if_none_match: &str,
page: i32,
token: &str,
) -> Result<Vec<GetCorporationsCorporationIdCustomsOffices200Ok>, Error>;
fn get_universe_schematics_schematic_id(
&self,
schematic_id: i32,
datasource: &str,
if_none_match: &str,
) -> Result<GetUniverseSchematicsSchematicIdOk, Error>;
}