pub struct StatusResponse {
pub environment: Option<Environment>,
pub bundle_id: String,
pub app_apple_id: Option<i64>,
pub data: Vec<SubscriptionGroupIdentifierItem>,
}Expand description
The response that contains status information for all of a customer’s auto-renewable subscriptions in your app.
Fields§
§environment: Option<Environment>The server environment, sandbox or production, in which the App Store generated the response.
bundle_id: StringThe bundle identifier of an app.
app_apple_id: Option<i64>The unique identifier of an app in the App Store.
data: Vec<SubscriptionGroupIdentifierItem>An array of information for auto-renewable subscriptions, including App Store-signed transaction information and App Store-signed renewal information.
Trait Implementations§
Source§impl Clone for StatusResponse
impl Clone for StatusResponse
Source§fn clone(&self) -> StatusResponse
fn clone(&self) -> StatusResponse
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 StatusResponse
impl Debug for StatusResponse
Source§impl<'de> Deserialize<'de> for StatusResponse
impl<'de> Deserialize<'de> for StatusResponse
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 StatusResponse
impl Hash for StatusResponse
Auto Trait Implementations§
impl Freeze for StatusResponse
impl RefUnwindSafe for StatusResponse
impl Send for StatusResponse
impl Sync for StatusResponse
impl Unpin for StatusResponse
impl UnwindSafe for StatusResponse
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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