google-wallet
Version:
Google wallet library for Node.js
18 lines (17 loc) • 459 B
TypeScript
import { ImageUri } from "./ImageUri.js";
import { LocalizedString } from "./LocalizedString.js";
export type Image = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#image".
* @deprecated
*/
kind?: string;
/**
* The URI for the image.
*/
sourceUri?: ImageUri;
/**
* Description of the image used for accessibility.
*/
contentDescription?: LocalizedString;
};