google-wallet
Version:
Google wallet library for Node.js
17 lines (16 loc) • 382 B
TypeScript
import { LocalizedString } from "./LocalizedString.js";
export type EventVenue = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#eventVenue".
* @deprecated
*/
kind?: string;
/**
* This is required.
*/
name?: LocalizedString;
/**
* This is required.
*/
address?: LocalizedString;
};