Index: discovery/googleapis/firebasedynamiclinks__v1.json |
diff --git a/discovery/googleapis/firebasedynamiclinks__v1.json b/discovery/googleapis/firebasedynamiclinks__v1.json |
index 24a8b9b0eb5880e9f455fda9712decddf034704d..0d5c6bd84ec758c93f6dce777da6908ef40541fe 100644 |
--- a/discovery/googleapis/firebasedynamiclinks__v1.json |
+++ b/discovery/googleapis/firebasedynamiclinks__v1.json |
@@ -25,13 +25,13 @@ |
"ownerDomain": "google.com", |
"ownerName": "Google", |
"parameters": { |
- "oauth_token": { |
- "description": "OAuth 2.0 token for the current user.", |
+ "bearer_token": { |
+ "description": "OAuth bearer token.", |
"location": "query", |
"type": "string" |
}, |
- "bearer_token": { |
- "description": "OAuth bearer token.", |
+ "oauth_token": { |
+ "description": "OAuth 2.0 token for the current user.", |
"location": "query", |
"type": "string" |
}, |
@@ -46,18 +46,13 @@ |
"location": "query", |
"type": "boolean" |
}, |
- "fields": { |
- "description": "Selector specifying which fields to include in a partial response.", |
- "location": "query", |
- "type": "string" |
- }, |
"uploadType": { |
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").", |
"location": "query", |
"type": "string" |
}, |
- "callback": { |
- "description": "JSONP", |
+ "fields": { |
+ "description": "Selector specifying which fields to include in a partial response.", |
"location": "query", |
"type": "string" |
}, |
@@ -74,6 +69,11 @@ |
"location": "query", |
"type": "string" |
}, |
+ "callback": { |
+ "description": "JSONP", |
+ "location": "query", |
+ "type": "string" |
+ }, |
"alt": { |
"default": "json", |
"description": "Data format for response.", |
@@ -90,13 +90,13 @@ |
"location": "query", |
"type": "string" |
}, |
- "key": { |
- "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", |
+ "access_token": { |
+ "description": "OAuth access token.", |
"location": "query", |
"type": "string" |
}, |
- "access_token": { |
- "description": "OAuth access token.", |
+ "key": { |
+ "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", |
"location": "query", |
"type": "string" |
}, |
@@ -114,6 +114,27 @@ |
}, |
"protocol": "rest", |
"resources": { |
+ "shortLinks": { |
+ "methods": { |
+ "create": { |
+ "description": "Creates a short Dynamic Link given either a valid long Dynamic Link or\ndetails such as Dynamic Link domain, Android and iOS app information.\nThe created short Dynamic Link will not expire.\n\nRepeated calls with the same long Dynamic Link or Dynamic Link information\nwill produce the same short Dynamic Link.\n\nThe Dynamic Link domain in the request must be owned by requester's\nFirebase project.", |
+ "httpMethod": "POST", |
+ "id": "firebasedynamiclinks.shortLinks.create", |
+ "parameterOrder": [], |
+ "parameters": {}, |
+ "path": "v1/shortLinks", |
+ "request": { |
+ "$ref": "CreateShortDynamicLinkRequest" |
+ }, |
+ "response": { |
+ "$ref": "CreateShortDynamicLinkResponse" |
+ }, |
+ "scopes": [ |
+ "https://www.googleapis.com/auth/firebase" |
+ ] |
+ } |
+ } |
+ }, |
"v1": { |
"methods": { |
"getLinkStats": { |
@@ -146,212 +167,11 @@ |
] |
} |
} |
- }, |
- "shortLinks": { |
- "methods": { |
- "create": { |
- "description": "Creates a short Dynamic Link given either a valid long Dynamic Link or\ndetails such as Dynamic Link domain, Android and iOS app information.\nThe created short Dynamic Link will not expire.\n\nRepeated calls with the same long Dynamic Link or Dynamic Link information\nwill produce the same short Dynamic Link.\n\nThe Dynamic Link domain in the request must be owned by requester's\nFirebase project.", |
- "httpMethod": "POST", |
- "id": "firebasedynamiclinks.shortLinks.create", |
- "parameterOrder": [], |
- "parameters": {}, |
- "path": "v1/shortLinks", |
- "request": { |
- "$ref": "CreateShortDynamicLinkRequest" |
- }, |
- "response": { |
- "$ref": "CreateShortDynamicLinkResponse" |
- }, |
- "scopes": [ |
- "https://www.googleapis.com/auth/firebase" |
- ] |
- } |
- } |
} |
}, |
- "revision": "20170605", |
+ "revision": "20170703", |
"rootUrl": "https://firebasedynamiclinks.googleapis.com/", |
"schemas": { |
- "DynamicLinkEventStat": { |
- "description": "Dynamic Link event stat.", |
- "id": "DynamicLinkEventStat", |
- "properties": { |
- "count": { |
- "description": "The number of times this event occurred.", |
- "format": "int64", |
- "type": "string" |
- }, |
- "event": { |
- "description": "Link event.", |
- "enum": [ |
- "DYNAMIC_LINK_EVENT_UNSPECIFIED", |
- "CLICK", |
- "REDIRECT", |
- "APP_INSTALL", |
- "APP_FIRST_OPEN", |
- "APP_RE_OPEN" |
- ], |
- "enumDescriptions": [ |
- "Unspecified type.", |
- "Indicates that an FDL is clicked by users.", |
- "Indicates that an FDL redirects users to fallback link.", |
- "Indicates that an FDL triggers an app install from Play store, currently\nit's impossible to get stats from App store.", |
- "Indicates that the app is opened for the first time after an install\ntriggered by FDLs", |
- "Indicates that the app is opened via an FDL for non-first time." |
- ], |
- "type": "string" |
- }, |
- "platform": { |
- "description": "Requested platform.", |
- "enum": [ |
- "DYNAMIC_LINK_PLATFORM_UNSPECIFIED", |
- "ANDROID", |
- "IOS", |
- "DESKTOP" |
- ], |
- "enumDescriptions": [ |
- "Unspecified platform.", |
- "Represents Android platform.\nAll apps and browsers on Android are classfied in this category.", |
- "Represents iOS platform.\nAll apps and browsers on iOS are classfied in this category.", |
- "Represents desktop.\nNote: other platforms like Windows, Blackberry, Amazon fall into this\ncategory." |
- ], |
- "type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
- "CreateShortDynamicLinkResponse": { |
- "description": "Response to create a short Dynamic Link.", |
- "id": "CreateShortDynamicLinkResponse", |
- "properties": { |
- "shortLink": { |
- "description": "Short Dynamic Link value. e.g. https://abcd.app.goo.gl/wxyz", |
- "type": "string" |
- }, |
- "previewLink": { |
- "description": "Preivew link to show the link flow chart.", |
- "type": "string" |
- }, |
- "warning": { |
- "description": "Information about potential warnings on link creation.", |
- "items": { |
- "$ref": "DynamicLinkWarning" |
- }, |
- "type": "array" |
- } |
- }, |
- "type": "object" |
- }, |
- "Suffix": { |
- "description": "Short Dynamic Link suffix.", |
- "id": "Suffix", |
- "properties": { |
- "option": { |
- "description": "Suffix option.", |
- "enum": [ |
- "OPTION_UNSPECIFIED", |
- "UNGUESSABLE", |
- "SHORT" |
- ], |
- "enumDescriptions": [ |
- "The suffix option is not specified, performs as NOT_GUESSABLE .", |
- "Short Dynamic Link suffix is a base62 [0-9A-Za-z] encoded string of\na random generated 96 bit random number, which has a length of 17 chars.\nFor example, \"nlAR8U4SlKRZw1cb2\".\nIt prevents other people from guessing and crawling short Dynamic Links\nthat contain personal identifiable information.", |
- "Short Dynamic Link suffix is a base62 [0-9A-Za-z] string starting with a\nlength of 4 chars. the length will increase when all the space is\noccupied." |
- ], |
- "type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
- "GooglePlayAnalytics": { |
- "description": "Parameters for Google Play Campaign Measurements.\n[Learn more](https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#campaign-params)", |
- "id": "GooglePlayAnalytics", |
- "properties": { |
- "utmMedium": { |
- "description": "Campaign medium; used to identify a medium such as email or cost-per-click.", |
- "type": "string" |
- }, |
- "utmTerm": { |
- "description": "Campaign term; used with paid search to supply the keywords for ads.", |
- "type": "string" |
- }, |
- "utmSource": { |
- "description": "Campaign source; used to identify a search engine, newsletter, or other\nsource.", |
- "type": "string" |
- }, |
- "gclid": { |
- "description": "[AdWords autotagging parameter](https://support.google.com/analytics/answer/1033981?hl=en);\nused to measure Google AdWords ads. This value is generated dynamically\nand should never be modified.", |
- "type": "string" |
- }, |
- "utmCampaign": { |
- "description": "Campaign name; used for keyword analysis to identify a specific product\npromotion or strategic campaign.", |
- "type": "string" |
- }, |
- "utmContent": { |
- "description": "Campaign content; used for A/B testing and content-targeted ads to\ndifferentiate ads or links that point to the same URL.", |
- "type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
- "DynamicLinkInfo": { |
- "description": "Information about a Dynamic Link.", |
- "id": "DynamicLinkInfo", |
- "properties": { |
- "iosInfo": { |
- "$ref": "IosInfo", |
- "description": "iOS related information. See iOS related parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
- }, |
- "socialMetaTagInfo": { |
- "$ref": "SocialMetaTagInfo", |
- "description": "Parameters for social meta tag params.\nUsed to set meta tag data for link previews on social sites." |
- }, |
- "androidInfo": { |
- "$ref": "AndroidInfo", |
- "description": "Android related information. See Android related parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
- }, |
- "navigationInfo": { |
- "$ref": "NavigationInfo", |
- "description": "Information of navigation behavior of a Firebase Dynamic Links." |
- }, |
- "analyticsInfo": { |
- "$ref": "AnalyticsInfo", |
- "description": "Parameters used for tracking. See all tracking parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
- }, |
- "dynamicLinkDomain": { |
- "description": "Dynamic Links domain that the project owns, e.g. abcd.app.goo.gl\n[Learn more](https://firebase.google.com/docs/dynamic-links/android/receive)\non how to set up Dynamic Link domain associated with your Firebase project.\n\nRequired.", |
- "type": "string" |
- }, |
- "link": { |
- "description": "The link your app will open, You can specify any URL your app can handle.\nThis link must be a well-formatted URL, be properly URL-encoded, and use\nthe HTTP or HTTPS scheme. See 'link' parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually).\n\nRequired.", |
- "type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
- "ITunesConnectAnalytics": { |
- "description": "Parameters for iTunes Connect App Analytics.", |
- "id": "ITunesConnectAnalytics", |
- "properties": { |
- "at": { |
- "description": "Affiliate token used to create affiliate-coded links.", |
- "type": "string" |
- }, |
- "mt": { |
- "description": "iTune media types, including music, podcasts, audiobooks and so on.", |
- "type": "string" |
- }, |
- "ct": { |
- "description": "Campaign text that developers can optionally add to any link in order to\ntrack sales from a specific marketing campaign.", |
- "type": "string" |
- }, |
- "pt": { |
- "description": "Provider token that enables analytics for Dynamic Links from within iTunes\nConnect.", |
- "type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
"SocialMetaTagInfo": { |
"description": "Parameters for social meta tag params.\nUsed to set meta tag data for link previews on social sites.", |
"id": "SocialMetaTagInfo", |
@@ -371,25 +191,16 @@ |
}, |
"type": "object" |
}, |
- "AndroidInfo": { |
- "description": "Android related attributes to the Dynamic Link.", |
- "id": "AndroidInfo", |
+ "DynamicLinkStats": { |
+ "description": "Analytics stats of a Dynamic Link for a given timeframe.", |
+ "id": "DynamicLinkStats", |
"properties": { |
- "androidPackageName": { |
- "description": "Android package name of the app.", |
- "type": "string" |
- }, |
- "androidMinPackageVersionCode": { |
- "description": "Minimum version code for the Android app. If the installed app’s version\ncode is lower, then the user is taken to the Play Store.", |
- "type": "string" |
- }, |
- "androidLink": { |
- "description": "If specified, this overrides the ‘link’ parameter on Android.", |
- "type": "string" |
- }, |
- "androidFallbackLink": { |
- "description": "Link to open on Android if the app is not installed.", |
- "type": "string" |
+ "linkEventStats": { |
+ "description": "Dynamic Link event stats.", |
+ "items": { |
+ "$ref": "DynamicLinkEventStat" |
+ }, |
+ "type": "array" |
} |
}, |
"type": "object" |
@@ -398,6 +209,10 @@ |
"description": "Dynamic Links warning messages.", |
"id": "DynamicLinkWarning", |
"properties": { |
+ "warningMessage": { |
+ "description": "The warning message to help developers improve their requests.", |
+ "type": "string" |
+ }, |
"warningCode": { |
"description": "The warning code.", |
"enum": [ |
@@ -463,24 +278,29 @@ |
"The iOS bundle ID does not match with the given iOS store ID." |
], |
"type": "string" |
- }, |
- "warningMessage": { |
- "description": "The warning message to help developers improve their requests.", |
- "type": "string" |
} |
}, |
"type": "object" |
}, |
- "DynamicLinkStats": { |
- "description": "Analytics stats of a Dynamic Link for a given timeframe.", |
- "id": "DynamicLinkStats", |
+ "AndroidInfo": { |
+ "description": "Android related attributes to the Dynamic Link.", |
+ "id": "AndroidInfo", |
"properties": { |
- "linkEventStats": { |
- "description": "Dynamic Link event stats.", |
- "items": { |
- "$ref": "DynamicLinkEventStat" |
- }, |
- "type": "array" |
+ "androidLink": { |
+ "description": "If specified, this overrides the ‘link’ parameter on Android.", |
+ "type": "string" |
+ }, |
+ "androidFallbackLink": { |
+ "description": "Link to open on Android if the app is not installed.", |
+ "type": "string" |
+ }, |
+ "androidPackageName": { |
+ "description": "Android package name of the app.", |
+ "type": "string" |
+ }, |
+ "androidMinPackageVersionCode": { |
+ "description": "Minimum version code for the Android app. If the installed app’s version\ncode is lower, then the user is taken to the Play Store.", |
+ "type": "string" |
} |
}, |
"type": "object" |
@@ -500,6 +320,10 @@ |
"description": "iOS related attributes to the Dynamic Link..", |
"id": "IosInfo", |
"properties": { |
+ "iosFallbackLink": { |
+ "description": "Link to open on iOS if the app is not installed.", |
+ "type": "string" |
+ }, |
"iosAppStoreId": { |
"description": "iOS App Store ID.", |
"type": "string" |
@@ -519,10 +343,6 @@ |
"iosBundleId": { |
"description": "iOS bundle ID of the app.", |
"type": "string" |
- }, |
- "iosFallbackLink": { |
- "description": "Link to open on iOS if the app is not installed.", |
- "type": "string" |
} |
}, |
"type": "object" |
@@ -546,6 +366,10 @@ |
"description": "Request to create a short Dynamic Link.", |
"id": "CreateShortDynamicLinkRequest", |
"properties": { |
+ "longDynamicLink": { |
+ "description": "Full long Dynamic Link URL with desired query parameters specified.\nFor example,\n\"https://sample.app.goo.gl/?link=http://www.google.com&apn=com.sample\",\n[Learn more](https://firebase.google.com/docs/dynamic-links/android#create-a-dynamic-link-programmatically).", |
+ "type": "string" |
+ }, |
"suffix": { |
"$ref": "Suffix", |
"description": "Short Dynamic Link suffix. Optional." |
@@ -553,9 +377,185 @@ |
"dynamicLinkInfo": { |
"$ref": "DynamicLinkInfo", |
"description": "Information about the Dynamic Link to be shortened.\n[Learn more](https://firebase.google.com/docs/dynamic-links/android#create-a-dynamic-link-programmatically)." |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "DynamicLinkEventStat": { |
+ "description": "Dynamic Link event stat.", |
+ "id": "DynamicLinkEventStat", |
+ "properties": { |
+ "event": { |
+ "description": "Link event.", |
+ "enum": [ |
+ "DYNAMIC_LINK_EVENT_UNSPECIFIED", |
+ "CLICK", |
+ "REDIRECT", |
+ "APP_INSTALL", |
+ "APP_FIRST_OPEN", |
+ "APP_RE_OPEN" |
+ ], |
+ "enumDescriptions": [ |
+ "Unspecified type.", |
+ "Indicates that an FDL is clicked by users.", |
+ "Indicates that an FDL redirects users to fallback link.", |
+ "Indicates that an FDL triggers an app install from Play store, currently\nit's impossible to get stats from App store.", |
+ "Indicates that the app is opened for the first time after an install\ntriggered by FDLs", |
+ "Indicates that the app is opened via an FDL for non-first time." |
+ ], |
+ "type": "string" |
}, |
- "longDynamicLink": { |
- "description": "Full long Dynamic Link URL with desired query parameters specified.\nFor example,\n\"https://sample.app.goo.gl/?link=http://www.google.com&apn=com.sample\",\n[Learn more](https://firebase.google.com/docs/dynamic-links/android#create-a-dynamic-link-programmatically).", |
+ "platform": { |
+ "description": "Requested platform.", |
+ "enum": [ |
+ "DYNAMIC_LINK_PLATFORM_UNSPECIFIED", |
+ "ANDROID", |
+ "IOS", |
+ "DESKTOP" |
+ ], |
+ "enumDescriptions": [ |
+ "Unspecified platform.", |
+ "Represents Android platform.\nAll apps and browsers on Android are classfied in this category.", |
+ "Represents iOS platform.\nAll apps and browsers on iOS are classfied in this category.", |
+ "Represents desktop.\nNote: other platforms like Windows, Blackberry, Amazon fall into this\ncategory." |
+ ], |
+ "type": "string" |
+ }, |
+ "count": { |
+ "description": "The number of times this event occurred.", |
+ "format": "int64", |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "CreateShortDynamicLinkResponse": { |
+ "description": "Response to create a short Dynamic Link.", |
+ "id": "CreateShortDynamicLinkResponse", |
+ "properties": { |
+ "warning": { |
+ "description": "Information about potential warnings on link creation.", |
+ "items": { |
+ "$ref": "DynamicLinkWarning" |
+ }, |
+ "type": "array" |
+ }, |
+ "shortLink": { |
+ "description": "Short Dynamic Link value. e.g. https://abcd.app.goo.gl/wxyz", |
+ "type": "string" |
+ }, |
+ "previewLink": { |
+ "description": "Preivew link to show the link flow chart.", |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "Suffix": { |
+ "description": "Short Dynamic Link suffix.", |
+ "id": "Suffix", |
+ "properties": { |
+ "option": { |
+ "description": "Suffix option.", |
+ "enum": [ |
+ "OPTION_UNSPECIFIED", |
+ "UNGUESSABLE", |
+ "SHORT" |
+ ], |
+ "enumDescriptions": [ |
+ "The suffix option is not specified, performs as NOT_GUESSABLE .", |
+ "Short Dynamic Link suffix is a base62 [0-9A-Za-z] encoded string of\na random generated 96 bit random number, which has a length of 17 chars.\nFor example, \"nlAR8U4SlKRZw1cb2\".\nIt prevents other people from guessing and crawling short Dynamic Links\nthat contain personal identifiable information.", |
+ "Short Dynamic Link suffix is a base62 [0-9A-Za-z] string starting with a\nlength of 4 chars. the length will increase when all the space is\noccupied." |
+ ], |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "GooglePlayAnalytics": { |
+ "description": "Parameters for Google Play Campaign Measurements.\n[Learn more](https://developers.google.com/analytics/devguides/collection/android/v4/campaigns#campaign-params)", |
+ "id": "GooglePlayAnalytics", |
+ "properties": { |
+ "utmContent": { |
+ "description": "Campaign content; used for A/B testing and content-targeted ads to\ndifferentiate ads or links that point to the same URL.", |
+ "type": "string" |
+ }, |
+ "utmMedium": { |
+ "description": "Campaign medium; used to identify a medium such as email or cost-per-click.", |
+ "type": "string" |
+ }, |
+ "utmTerm": { |
+ "description": "Campaign term; used with paid search to supply the keywords for ads.", |
+ "type": "string" |
+ }, |
+ "utmSource": { |
+ "description": "Campaign source; used to identify a search engine, newsletter, or other\nsource.", |
+ "type": "string" |
+ }, |
+ "gclid": { |
+ "description": "[AdWords autotagging parameter](https://support.google.com/analytics/answer/1033981?hl=en);\nused to measure Google AdWords ads. This value is generated dynamically\nand should never be modified.", |
+ "type": "string" |
+ }, |
+ "utmCampaign": { |
+ "description": "Campaign name; used for keyword analysis to identify a specific product\npromotion or strategic campaign.", |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "DynamicLinkInfo": { |
+ "description": "Information about a Dynamic Link.", |
+ "id": "DynamicLinkInfo", |
+ "properties": { |
+ "link": { |
+ "description": "The link your app will open, You can specify any URL your app can handle.\nThis link must be a well-formatted URL, be properly URL-encoded, and use\nthe HTTP or HTTPS scheme. See 'link' parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually).\n\nRequired.", |
+ "type": "string" |
+ }, |
+ "iosInfo": { |
+ "$ref": "IosInfo", |
+ "description": "iOS related information. See iOS related parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
+ }, |
+ "socialMetaTagInfo": { |
+ "$ref": "SocialMetaTagInfo", |
+ "description": "Parameters for social meta tag params.\nUsed to set meta tag data for link previews on social sites." |
+ }, |
+ "androidInfo": { |
+ "$ref": "AndroidInfo", |
+ "description": "Android related information. See Android related parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
+ }, |
+ "navigationInfo": { |
+ "$ref": "NavigationInfo", |
+ "description": "Information of navigation behavior of a Firebase Dynamic Links." |
+ }, |
+ "analyticsInfo": { |
+ "$ref": "AnalyticsInfo", |
+ "description": "Parameters used for tracking. See all tracking parameters in the\n[documentation](https://firebase.google.com/docs/dynamic-links/create-manually)." |
+ }, |
+ "dynamicLinkDomain": { |
+ "description": "Dynamic Links domain that the project owns, e.g. abcd.app.goo.gl\n[Learn more](https://firebase.google.com/docs/dynamic-links/android/receive)\non how to set up Dynamic Link domain associated with your Firebase project.\n\nRequired.", |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
+ "ITunesConnectAnalytics": { |
+ "description": "Parameters for iTunes Connect App Analytics.", |
+ "id": "ITunesConnectAnalytics", |
+ "properties": { |
+ "at": { |
+ "description": "Affiliate token used to create affiliate-coded links.", |
+ "type": "string" |
+ }, |
+ "mt": { |
+ "description": "iTune media types, including music, podcasts, audiobooks and so on.", |
+ "type": "string" |
+ }, |
+ "ct": { |
+ "description": "Campaign text that developers can optionally add to any link in order to\ntrack sales from a specific marketing campaign.", |
+ "type": "string" |
+ }, |
+ "pt": { |
+ "description": "Provider token that enables analytics for Dynamic Links from within iTunes\nConnect.", |
"type": "string" |
} |
}, |