google-wallet
Version:
Google wallet library for Node.js
16 lines (15 loc) • 414 B
TypeScript
export type TranslatedString = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#translatedString".
* @deprecated
*/
kind?: string;
/**
* Represents the BCP 47 language tag. Example values are "en-US", "en-GB", "de", or "de-AT".
*/
language?: string;
/**
* The UTF-8 encoded translated string.
*/
value?: string;
};