pub struct GetOneTimeProductOfferRequest {
pub offer_id: Option<String>,
pub package_name: Option<String>,
pub product_id: Option<String>,
pub purchase_option_id: Option<String>,
}Expand description
Request message for GetOneTimeProductOffers.
This type is not used in any activity, and only used as part of another schema.
Fields§
§offer_id: Option<String>Required. The unique offer ID of the offer to get.
package_name: Option<String>Required. The parent app (package name) of the offer to get.
product_id: Option<String>Required. The parent one-time product (ID) of the offer to get.
purchase_option_id: Option<String>Required. The parent purchase option (ID) of the offer to get.
Trait Implementations§
Source§impl Clone for GetOneTimeProductOfferRequest
impl Clone for GetOneTimeProductOfferRequest
Source§fn clone(&self) -> GetOneTimeProductOfferRequest
fn clone(&self) -> GetOneTimeProductOfferRequest
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 Default for GetOneTimeProductOfferRequest
impl Default for GetOneTimeProductOfferRequest
Source§fn default() -> GetOneTimeProductOfferRequest
fn default() -> GetOneTimeProductOfferRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetOneTimeProductOfferRequest
impl<'de> Deserialize<'de> for GetOneTimeProductOfferRequest
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 Part for GetOneTimeProductOfferRequest
Auto Trait Implementations§
impl Freeze for GetOneTimeProductOfferRequest
impl RefUnwindSafe for GetOneTimeProductOfferRequest
impl Send for GetOneTimeProductOfferRequest
impl Sync for GetOneTimeProductOfferRequest
impl Unpin for GetOneTimeProductOfferRequest
impl UnwindSafe for GetOneTimeProductOfferRequest
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