REST Resource: edits.countryavailability
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
সম্পদ: TrackCountryAvailability
প্রতি-ট্র্যাক দেশের প্রাপ্যতা তথ্যের জন্য সম্পদ।
JSON প্রতিনিধিত্ব |
---|
{
"syncWithProduction": boolean,
"countries": [
{
object (TrackTargetedCountry )
}
],
"restOfWorld": boolean
} |
ক্ষেত্র |
---|
syncWithProduction | boolean এই ট্র্যাকের উপলব্ধতা ডিফল্ট উত্পাদন ট্র্যাকের সাথে সিঙ্ক করা হয়েছে কিনা৷ উৎপাদনের সাথে দেশের উপলভ্যতা সিঙ্ক করার বিষয়ে আরও তথ্যের জন্য https://support.google.com/googleplay/android-developer/answer/7550024 দেখুন। মনে রাখবেন যে এটি সত্য হলে, প্রত্যাবর্তিত "দেশ" এবং "restOfWorld" ক্ষেত্রগুলি ডিফল্ট উত্পাদন ট্র্যাকের মানগুলিকে প্রতিফলিত করবে৷ |
countries[] | object ( TrackTargetedCountry ) এক বা একাধিক দেশের তালিকা যেখানে এই ট্র্যাকের নিদর্শন পাওয়া যায়। এই তালিকায় ট্র্যাক দ্বারা টার্গেট করা সমস্ত দেশ অন্তর্ভুক্ত করা হয়েছে, এমনকি যদি শুধুমাত্র নির্দিষ্ট বাহক সেই দেশে টার্গেট করা হয়। |
restOfWorld | boolean এই ট্র্যাকের আর্টিফ্যাক্টগুলি "বিশ্বের বাকি" দেশগুলিতে উপলব্ধ কিনা৷ |
ট্র্যাক টার্গেটেড কান্ট্রি
একটি একক দেশের প্রতিনিধিত্ব যেখানে একটি ট্র্যাকের বিষয়বস্তু উপলব্ধ।
JSON প্রতিনিধিত্ব |
---|
{
"countryCode": string
} |
ক্ষেত্র |
---|
countryCode | string দুই অক্ষরের সিএলডিআর কোড হিসেবে দেশকে টার্গেট করতে হবে। |
পদ্ধতি |
---|
| দেশের প্রাপ্যতা পায়। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eTrackCountryAvailability resource provides per-track country availability information, including sync status with production, targeted countries, and "rest of world" availability.\u003c/p\u003e\n"],["\u003cp\u003eTrackTargetedCountry represents a single country targeted by a track using a two-letter CLDR country code.\u003c/p\u003e\n"],["\u003cp\u003eDevelopers can use the \u003ccode\u003eget\u003c/code\u003e method to retrieve country availability information for their app tracks.\u003c/p\u003e\n"]]],["The resource `TrackCountryAvailability` details per-track country availability, with information on whether availability is synced with the production track (`syncWithProduction`). It lists targeted countries (`countries`), each represented by a two-letter CLDR code via `TrackTargetedCountry`, and indicates if the track is available to the \"rest of the world\" (`restOfWorld`). The `get` method retrieves country availability information. Each of these items is represented by its `JSON` structure.\n"],null,["# REST Resource: edits.countryavailability\n\n- [Resource: TrackCountryAvailability](#TrackCountryAvailability)\n - [JSON representation](#TrackCountryAvailability.SCHEMA_REPRESENTATION)\n- [TrackTargetedCountry](#TrackTargetedCountry)\n - [JSON representation](#TrackTargetedCountry.SCHEMA_REPRESENTATION)\n- [Methods](#METHODS_SUMMARY)\n\nResource: TrackCountryAvailability\n----------------------------------\n\nResource for per-track country availability information.\n\n| JSON representation |\n|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"syncWithProduction\": boolean, \"countries\": [ { object (/android-publisher/api-ref/rest/v3/edits.countryavailability#TrackTargetedCountry) } ], \"restOfWorld\": boolean } ``` |\n\n| Fields ||\n|----------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `syncWithProduction` | `boolean` Whether this track's availability is synced with the default production track. See \u003chttps://support.google.com/googleplay/android-developer/answer/7550024\u003e for more information on syncing country availability with production. Note that if this is true, the returned \"countries\" and \"restOfWorld\" fields will reflect the values for the default production track. |\n| `countries[]` | `object (`[TrackTargetedCountry](/android-publisher/api-ref/rest/v3/edits.countryavailability#TrackTargetedCountry)`)` A list of one or more countries where artifacts in this track are available. This list includes all countries that are targeted by the track, even if only specific carriers are targeted in that country. |\n| `restOfWorld` | `boolean` Whether artifacts in this track are available to \"rest of the world\" countries. |\n\nTrackTargetedCountry\n--------------------\n\nRepresentation of a single country where the contents of a track are available.\n\n| JSON representation |\n|-----------------------------------|\n| ``` { \"countryCode\": string } ``` |\n\n| Fields ||\n|---------------|------------------------------------------------------------|\n| `countryCode` | `string` The country to target, as a two-letter CLDR code. |\n\n| Methods ------- ||\n|-----------------------------------------------------------------------------|----------------------------|\n| ### [get](/android-publisher/api-ref/rest/v3/edits.countryavailability/get) | Gets country availability. |"]]