Source code for appstoreserverlibrary.models.GetMessageListResponse

# Copyright (c) 2025 Apple Inc. Licensed under MIT License.

from typing import Optional, List

from attr import define
import attr

from .GetMessageListResponseItem import GetMessageListResponseItem

[docs] @define class GetMessageListResponse: """ A response that contains status information for all messages. https://developer.apple.com/documentation/retentionmessaging/getmessagelistresponse """ messageIdentifiers: Optional[List[GetMessageListResponseItem]] = attr.ib(default=None) """ An array of all message identifiers and their message state. https://developer.apple.com/documentation/retentionmessaging/getmessagelistresponseitem """