pub struct HistoricalOffer {
pub creation_time: Option<DateTime<Utc>>,
pub status: Option<String>,
pub client_email: Option<String>,
pub client_id: Option<i64>,
pub client_name: Option<String>,
pub last_modified_time: Option<DateTime<Utc>>,
pub adwords_url: Option<String>,
pub offer_type: Option<String>,
pub sender_name: Option<String>,
pub offer_country_code: Option<String>,
pub expiration_time: Option<DateTime<Utc>>,
pub offer_code: Option<String>,
}Expand description
Historical information about a Google Partners Offer.
This type is not used in any activity, and only used as part of another schema.
Fields§
§creation_time: Option<DateTime<Utc>>Time offer was first created.
status: Option<String>Status of the offer.
client_email: Option<String>Email address for client.
client_id: Option<i64>ID of client.
client_name: Option<String>Name of the client.
last_modified_time: Option<DateTime<Utc>>Time last action was taken.
adwords_url: Option<String>Client’s AdWords page URL.
offer_type: Option<String>Type of offer.
sender_name: Option<String>Name (First + Last) of the partners user to whom the incentive is allocated.
offer_country_code: Option<String>Country Code for the offer country.
expiration_time: Option<DateTime<Utc>>Time this offer expires.
offer_code: Option<String>Offer code.
Trait Implementations§
Source§impl Clone for HistoricalOffer
impl Clone for HistoricalOffer
Source§fn clone(&self) -> HistoricalOffer
fn clone(&self) -> HistoricalOffer
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 HistoricalOffer
impl Debug for HistoricalOffer
Source§impl Default for HistoricalOffer
impl Default for HistoricalOffer
Source§fn default() -> HistoricalOffer
fn default() -> HistoricalOffer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoricalOffer
impl<'de> Deserialize<'de> for HistoricalOffer
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
Source§impl Serialize for HistoricalOffer
impl Serialize for HistoricalOffer
impl Part for HistoricalOffer
Auto Trait Implementations§
impl Freeze for HistoricalOffer
impl RefUnwindSafe for HistoricalOffer
impl Send for HistoricalOffer
impl Sync for HistoricalOffer
impl Unpin for HistoricalOffer
impl UnwindSafe for HistoricalOffer
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