[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 2025-07-25 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eMoney objects represent a monetary value amount with its currency using JSON.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003ekind\u003c/code\u003e field is deprecated and should not be used.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003emicros\u003c/code\u003e represents the monetary value in micros (e.g., 1 USD = 1000000 micros).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ecurrencyCode\u003c/code\u003e specifies the currency used, such as USD or EUR.\u003c/p\u003e\n"]]],["The JSON object represents monetary value. It has three fields: `kind` (deprecated, always `\"walletobjects#money\"`), `micros` (an integer string representing the amount in micro-units, e.g., 1,000,000 for $1), and `currencyCode` (a string indicating the currency, like \"USD\"). The key action is to use the `micros` and `currencyCode` to denote money values and to be aware that the field `kind` is deprecated.\n"],null,["# Money\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\n| JSON representation |\n|----------------------------------------------------------------------|\n| ``` { \"kind\": string, \"micros\": string, \"currencyCode\": string } ``` |\n\n| Fields ||\n|-------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `kind` **(deprecated)** | `string` | This item is deprecated! Identifies what kind of resource this is. Value: the fixed string `\"walletobjects#money\"`. |\n| `micros` | `string (`[int64](https://developers.google.com/discovery/v1/type-format)` format)` The unit of money amount in micros. For example, $1 USD would be represented as 1000000 micros. |\n| `currencyCode` | `string` The currency code, such as \"USD\" or \"EUR.\" |"]]