pub struct HistoryResponse {
pub revision: Option<String>,
pub has_more: Option<bool>,
pub bundle_id: Option<String>,
pub app_apple_id: Option<i64>,
pub environment: Option<Environment>,
pub signed_transactions: Option<Vec<String>>,
}Expand description
A response that contains the customer’s transaction history for an app.
Fields§
§revision: Option<String>A token you use in a query to request the next set of transactions for the customer.
has_more: Option<bool>A Boolean value indicating whether the App Store has more transaction data.
bundle_id: Option<String>The bundle identifier of an app.
app_apple_id: Option<i64>The unique identifier of an app in the App Store.
environment: Option<Environment>The server environment in which you’re making the request, whether sandbox or production.
signed_transactions: Option<Vec<String>>An array of in-app purchase transactions for the customer, signed by Apple, in JSON Web Signature format.
Trait Implementations§
Source§impl Clone for HistoryResponse
impl Clone for HistoryResponse
Source§fn clone(&self) -> HistoryResponse
fn clone(&self) -> HistoryResponse
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 HistoryResponse
impl Debug for HistoryResponse
Source§impl<'de> Deserialize<'de> for HistoryResponse
impl<'de> Deserialize<'de> for HistoryResponse
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 Hash for HistoryResponse
impl Hash for HistoryResponse
Auto Trait Implementations§
impl Freeze for HistoryResponse
impl RefUnwindSafe for HistoryResponse
impl Send for HistoryResponse
impl Sync for HistoryResponse
impl Unpin for HistoryResponse
impl UnwindSafe for HistoryResponse
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