google-wallet
Version:
Google wallet library for Node.js
17 lines (16 loc) • 501 B
TypeScript
import { TranslatedString } from "./TranslatedString.js";
export type LocalizedString = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#localizedString".
* @deprecated
*/
kind?: string;
/**
* Contains the translations for the string.
*/
translatedValues?: TranslatedString[];
/**
* Contains the string to be displayed if no appropriate translation is available.
*/
defaultValue?: TranslatedString;
};