pub trait AggregationService {
    // Required methods
    fn get(&self) -> AggregationServiceGetResponse;
    fn put(&mut self, body: AggregationService) -> AggregationServicePutResponse;
    fn patch(&mut self, body: Value) -> AggregationServicePatchResponse;
}

Required Methods§

Implementors§