# -*- coding: utf-8 -*-
# File generated from our OpenAPI spec
from typing import List
from typing_extensions import Literal, NotRequired, TypedDict


class PersonalizationDesignRejectParams(TypedDict):
    expand: NotRequired[List[str]]
    """
    Specifies which fields in the response should be expanded.
    """
    rejection_reasons: "PersonalizationDesignRejectParamsRejectionReasons"
    """
    The reason(s) the personalization design was rejected.
    """


class PersonalizationDesignRejectParamsRejectionReasons(TypedDict):
    card_logo: NotRequired[
        List[
            Literal[
                "geographic_location",
                "inappropriate",
                "network_name",
                "non_binary_image",
                "non_fiat_currency",
                "other",
                "other_entity",
                "promotional_material",
            ]
        ]
    ]
    """
    The reason(s) the card logo was rejected.
    """
    carrier_text: NotRequired[
        List[
            Literal[
                "geographic_location",
                "inappropriate",
                "network_name",
                "non_fiat_currency",
                "other",
                "other_entity",
                "promotional_material",
            ]
        ]
    ]
    """
    The reason(s) the carrier text was rejected.
    """
