[][src]Trait ynab_api::apis::PayeeLocationsApi

pub trait PayeeLocationsApi {
    fn get_payee_location_by_id(
        &self,
        budget_id: &str,
        payee_location_id: &str
    ) -> Result<PayeeLocationResponse, Error>;
fn get_payee_locations(
        &self,
        budget_id: &str
    ) -> Result<PayeeLocationsResponse, Error>;
fn get_payee_locations_by_payee(
        &self,
        budget_id: &str,
        payee_id: &str
    ) -> Result<PayeeLocationsResponse, Error>; }

Required methods

fn get_payee_location_by_id(
    &self,
    budget_id: &str,
    payee_location_id: &str
) -> Result<PayeeLocationResponse, Error>

fn get_payee_locations(
    &self,
    budget_id: &str
) -> Result<PayeeLocationsResponse, Error>

fn get_payee_locations_by_payee(
    &self,
    budget_id: &str,
    payee_id: &str
) -> Result<PayeeLocationsResponse, Error>

Loading content...

Implementors

impl PayeeLocationsApi for PayeeLocationsApiClient[src]

Loading content...