pub trait RemoteAccountService {
    // Required methods
    fn get(&self, manager_id: String) -> RemoteAccountServiceGetResponse;
    fn put(
        &mut self,
        manager_id: String,
        body: AccountService
    ) -> RemoteAccountServicePutResponse;
    fn patch(
        &mut self,
        manager_id: String,
        body: Value
    ) -> RemoteAccountServicePatchResponse;
}

Required Methods§

source

fn get(&self, manager_id: String) -> RemoteAccountServiceGetResponse

source

fn put( &mut self, manager_id: String, body: AccountService ) -> RemoteAccountServicePutResponse

source

fn patch( &mut self, manager_id: String, body: Value ) -> RemoteAccountServicePatchResponse

Implementors§