You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<pclass="firstline">Calculates the region prices, using today's exchange rate and country-specific # patterns, based on the price in the request for a set of regions.</p>
<pre>Calculates the region prices, using today's exchange rate and country-specific # patterns, based on the price in the request for a set of regions.
92
+
93
+
Args:
94
+
packageName: string, Required. The app package name. (required)
95
+
body: object, The request body.
96
+
The object takes the form of:
97
+
98
+
{ # Request message for ConvertRegionPrices.
99
+
"price": { # Represents an amount of money with its currency type. # The intital price to convert other regions from. Tax exclusive.
100
+
"currencyCode": "A String", # The three-letter currency code defined in ISO 4217.
101
+
"nanos": 42, # Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
102
+
"units": "A String", # The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
103
+
},
104
+
}
105
+
106
+
x__xgafv: string, V1 error format.
107
+
Allowed values
108
+
1 - v1 error format
109
+
2 - v2 error format
110
+
111
+
Returns:
112
+
An object of the form:
113
+
114
+
{ # Response message for ConvertRegionPrices.
115
+
"convertedOtherRegionsPrice": { # Converted other regions prices. # Converted other regions prices in USD and EUR, to use for countries where Play doesn't support a country's local currency.
116
+
"eurPrice": { # Represents an amount of money with its currency type. # Price in EUR to use for the "Other regions" location exclusive of taxes.
117
+
"currencyCode": "A String", # The three-letter currency code defined in ISO 4217.
118
+
"nanos": 42, # Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
119
+
"units": "A String", # The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
120
+
},
121
+
"usdPrice": { # Represents an amount of money with its currency type. # Price in USD to use for the "Other regions" location exclusive of taxes.
122
+
"currencyCode": "A String", # The three-letter currency code defined in ISO 4217.
123
+
"nanos": 42, # Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
124
+
"units": "A String", # The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
125
+
},
126
+
},
127
+
"convertedRegionPrices": { # Map from region code to converted region price.
128
+
"a_key": { # A converted region price.
129
+
"price": { # Represents an amount of money with its currency type. # The converted price tax inclusive.
130
+
"currencyCode": "A String", # The three-letter currency code defined in ISO 4217.
131
+
"nanos": 42, # Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
132
+
"units": "A String", # The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
133
+
},
134
+
"regionCode": "A String", # The region code of the region.
135
+
"taxAmount": { # Represents an amount of money with its currency type. # The tax amount of the converted price.
136
+
"currencyCode": "A String", # The three-letter currency code defined in ISO 4217.
137
+
"nanos": 42, # Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If `units` is positive, `nanos` must be positive or zero. If `units` is zero, `nanos` can be positive, zero, or negative. If `units` is negative, `nanos` must be negative or zero. For example $-1.75 is represented as `units`=-1 and `nanos`=-750,000,000.
138
+
"units": "A String", # The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar.
0 commit comments