app-store-server-library 6.0.0

The Rust server library for the App Store Server API, App Store Server Notifications and Advanced Commerce API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

use crate::models::get_image_list_response_item::GetImageListResponseItem;

/// A response that contains status information for all images.
///
/// [GetImageListResponse](https://developer.apple.com/documentation/retentionmessaging/getimagelistresponse)
#[derive(Debug, Clone, Deserialize, Serialize, Hash, PartialEq, Eq)]
pub struct GetImageListResponse {
    /// An array of all image identifiers and their image state.
    ///
    /// [GetImageListResponseItem](https://developer.apple.com/documentation/retentionmessaging/getimagelistresponseitem)
    #[serde(rename = "imageIdentifiers")]
    pub image_identifiers: Option<Vec<GetImageListResponseItem>>,
}