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;
}