google-wallet
Version:
Google wallet library for Node.js
19 lines (18 loc) • 355 B
TypeScript
export type IssuerContactInfo = {
/**
* The primary contact name.
*/
name?: string;
/**
* The primary contact phone number.
*/
phone?: string;
/**
* The primary contact email address.
*/
email?: string;
/**
* Email addresses which will receive alerts.
*/
alertsEmails?: string[];
};