@apple/app-store-server-library
    Preparing search index...

    Interface UploadMessageRequestBody

    The request body for uploading a message, which includes the message text and an optional image reference.

    UploadMessageRequestBody

    interface UploadMessageRequestBody {
        body: string;
        header: string;
        image?: UploadMessageImage;
    }
    Index

    Properties

    Properties

    body: string

    The body text of the retention message that the system displays to customers.

    Maximum length: 144 characters

    body

    header: string

    The header text of the retention message that the system displays to customers.

    Maximum length: 66 characters

    header

    The optional image identifier and its alternative text to appear as part of a text-based message with an image.

    UploadMessageImage