/// This trait allows the item to be used as a response.
/// Allows the item to be nested in an `ApiPage` or `ApiItem`.
pubtraitApiObject{/// A unique name for the type. All in `snake_case` and singular.
fnget_type()-> String;/// The URL to an item in the api.
fnget_item_link(&self, base_url:&str)-> String;/// The URL to a page (list) in the api.
/// This URL will be extended with query parameters.
fnget_page_link(base_url:&str)-> String;/// The URL to the count page in the api.
/// This URL will be extended with query parameters.
fnget_count_link(base_url:&str)-> String;}