Source code for appstoreserverlibrary.models.LifetimeDollarsPurchased
# Copyright (c) 2023 Apple Inc. Licensed under MIT License.
from enum import IntEnum
from .LibraryUtility import AppStoreServerLibraryEnumMeta
[docs]
class LifetimeDollarsPurchased(IntEnum, metaclass=AppStoreServerLibraryEnumMeta):
"""
A value that indicates the total amount, in USD, of in-app purchases the customer has made in your app, across all platforms.
https://developer.apple.com/documentation/appstoreserverapi/lifetimedollarspurchased
"""
UNDECLARED = 0
ZERO_DOLLARS = 1
ONE_CENT_TO_FORTY_NINE_DOLLARS_AND_NINETY_NINE_CENTS = 2
FIFTY_DOLLARS_TO_NINETY_NINE_DOLLARS_AND_NINETY_NINE_CENTS = 3
ONE_HUNDRED_DOLLARS_TO_FOUR_HUNDRED_NINETY_NINE_DOLLARS_AND_NINETY_NINE_CENTS = 4
FIVE_HUNDRED_DOLLARS_TO_NINE_HUNDRED_NINETY_NINE_DOLLARS_AND_NINETY_NINE_CENTS = 5
ONE_THOUSAND_DOLLARS_TO_ONE_THOUSAND_NINE_HUNDRED_NINETY_NINE_DOLLARS_AND_NINETY_NINE_CENTS = 6
TWO_THOUSAND_DOLLARS_OR_GREATER = 7