pub struct ListOffersHistoryResponse {
pub can_show_entire_company: Option<bool>,
pub total_results: Option<i32>,
pub showing_entire_company: Option<bool>,
pub offers: Option<Vec<HistoricalOffer>>,
pub next_page_token: Option<String>,
pub response_metadata: Option<ResponseMetadata>,
}Expand description
Response for ListOfferHistory.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- history list offers (response)
Fields§
§can_show_entire_company: Option<bool>True if the user has the option to show entire company history.
total_results: Option<i32>Number of results across all pages.
showing_entire_company: Option<bool>True if this response is showing entire company history.
offers: Option<Vec<HistoricalOffer>>Historical offers meeting request.
next_page_token: Option<String>Supply this token in a ListOffersHistoryRequest to retrieve the next page.
response_metadata: Option<ResponseMetadata>Current response metadata.
Trait Implementations§
Source§impl Clone for ListOffersHistoryResponse
impl Clone for ListOffersHistoryResponse
Source§fn clone(&self) -> ListOffersHistoryResponse
fn clone(&self) -> ListOffersHistoryResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ListOffersHistoryResponse
impl Debug for ListOffersHistoryResponse
Source§impl Default for ListOffersHistoryResponse
impl Default for ListOffersHistoryResponse
Source§fn default() -> ListOffersHistoryResponse
fn default() -> ListOffersHistoryResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListOffersHistoryResponse
impl<'de> Deserialize<'de> for ListOffersHistoryResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl ResponseResult for ListOffersHistoryResponse
Auto Trait Implementations§
impl Freeze for ListOffersHistoryResponse
impl RefUnwindSafe for ListOffersHistoryResponse
impl Send for ListOffersHistoryResponse
impl Sync for ListOffersHistoryResponse
impl Unpin for ListOffersHistoryResponse
impl UnwindSafe for ListOffersHistoryResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more