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

Required Methods§

Implementors§