-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from alexanderjordanbaker/AppStoreServerAPI110
Updating new fields added in App Store Server API v1.10
- Loading branch information
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Copyright (c) 2023 Apple Inc. Licensed under MIT License. | ||
|
||
from enum import Enum | ||
|
||
from .LibraryUtility import AppStoreServerLibraryEnumMeta | ||
|
||
class OfferDiscountType(str, Enum, metaclass=AppStoreServerLibraryEnumMeta): | ||
""" | ||
The payment mode you configure for an introductory offer, promotional offer, or offer code on an auto-renewable subscription. | ||
https://developer.apple.com/documentation/appstoreserverapi/offerdiscounttype | ||
""" | ||
FREE_TRIAL = "FREE_TRIAL" | ||
PAY_AS_YOU_GO = "PAY_AS_YOU_GO" | ||
PAY_UP_FRONT = "PAY_UP_FRONT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters