-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* BinarySchemaRenderer without Stencil * PlainTextSchemaRenderer without Stencil * PropertyRenderer without Stencil * OneOfSchemaRenderer without Stencil * EnumSchemaRenderer without Stencil * OperationRenderer without Stencil * Regenerate endpoints * ObjectSchemaRenderer without Stencil * Remove Stencil * Discussion over url * Regenerate models
- Loading branch information
1 parent
de8fb85
commit b5d7879
Showing
1,074 changed files
with
13,613 additions
and
7,964 deletions.
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
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
24 changes: 12 additions & 12 deletions
24
Sources/Bagbutik/Endpoints/AgeRatingDeclaration/UpdateAgeRatingDeclarationV1.swift
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
public extension Request { | ||
/** | ||
# Modify an Age Rating Declaration | ||
Provide age-related information so the App Store can determine the age rating for your app. | ||
# Modify an Age Rating Declaration | ||
Provide age-related information so the App Store can determine the age rating for your app. | ||
|
||
Every app store version has an age rating declaration. Use this endpoint to edit the declaration and provide app-characteristic information so App Store Connect can determine the appropriate age rating for the app. | ||
Use this endpoint to indicate whether an app is Made for Kids. | ||
When calling this endpoint, only include the attributes that you’re modifying. | ||
For example, in an app that has a `FREQUENT_OR_INTENSE` declaration for contests, the age rating for the `AppInfos` is 12+. If you declare a value of true for `gamblingAndContests` instead, the age rating for the `AppInfos` is 17+. | ||
Every app store version has an age rating declaration. Use this endpoint to edit the declaration and provide app-characteristic information so App Store Connect can determine the appropriate age rating for the app. | ||
Use this endpoint to indicate whether an app is Made for Kids. | ||
When calling this endpoint, only include the attributes that you’re modifying. | ||
For example, in an app that has a `FREQUENT_OR_INTENSE` declaration for contests, the age rating for the `AppInfos` is 12+. If you declare a value of true for `gamblingAndContests` instead, the age rating for the `AppInfos` is 17+. | ||
|
||
Full documentation: | ||
<https://developer.apple.com/documentation/appstoreconnectapi/modify_an_age_rating_declaration> | ||
Full documentation: | ||
<https://developer.apple.com/documentation/appstoreconnectapi/modify_an_age_rating_declaration> | ||
|
||
- Parameter id: The id of the requested resource | ||
- Parameter requestBody: AgeRatingDeclaration representation | ||
- Returns: A ``Request`` to send to an instance of ``BagbutikService`` | ||
- Parameter id: The id of the requested resource | ||
- Parameter requestBody: AgeRatingDeclaration representation | ||
- Returns: A ``Request`` to send to an instance of ``BagbutikService`` | ||
*/ | ||
static func updateAgeRatingDeclarationV1(id: String, | ||
requestBody: AgeRatingDeclarationUpdateRequest) -> Request<AgeRatingDeclarationResponse, ErrorResponse> | ||
{ | ||
return .init(path: "/v1/ageRatingDeclarations/\(id)", method: .patch, requestBody: requestBody) | ||
.init(path: "/v1/ageRatingDeclarations/\(id)", method: .patch, requestBody: requestBody) | ||
} | ||
} |
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
Oops, something went wrong.