pub trait Zones {
// Required methods
fn get(&self, fabric_id: String) -> ZonesGetResponse;
fn post(&mut self, fabric_id: String, body: Zone) -> ZonesPostResponse;
}
pub trait Zones {
// Required methods
fn get(&self, fabric_id: String) -> ZonesGetResponse;
fn post(&mut self, fabric_id: String, body: Zone) -> ZonesPostResponse;
}