google-wallet
Version:
Google wallet library for Node.js
25 lines (24 loc) • 706 B
TypeScript
import { IssuerContactInfo } from "./IssuerContactInfo.js";
import { SmartTapMerchantData } from "./SmartTapMerchantData.js";
export type Issuer = {
/**
* The unique identifier for an issuer account. This is automatically generated when the issuer is inserted.
*/
issuerId?: number;
/**
* The account name of the issuer.
*/
name?: string;
/**
* Issuer contact information.
*/
contactInfo?: IssuerContactInfo;
/**
* URL for the issuer's home page.
*/
homepageUrl?: string;
/**
* Available only to Smart Tap enabled partners. Contact support for additional guidance.
*/
smartTapMerchantData?: SmartTapMerchantData;
};