google-wallet
Version:
Google wallet library for Node.js
194 lines (193 loc) • 9.19 kB
TypeScript
import { CallbackOptions } from "./CallbackOptions.js";
import { ClassTemplateInfo } from "./ClassTemplateInfo.js";
import { DiscoverableProgram } from "./DiscoverableProgram.js";
import { Image } from "./Image.js";
import { ImageModuleData } from "./ImageModuleData.js";
import { InfoModuleData } from "./InfoModuleData.js";
import { LatLongPoint } from "./LatLongPoint.js";
import { LinksModuleData } from "./LinksModuleData.js";
import { LocalizedString } from "./LocalizedString.js";
import { Message } from "./Message.js";
import { MultipleDevicesAndHoldersAllowedStatusEnum } from "./MultipleDevicesAndHoldersAllowedStatus.js";
import { Review } from "./Review.js";
import { ReviewStatusEnum } from "./ReviewStatus.js";
import { SecurityAnimation } from "./SecurityAnimation.js";
import { TextModuleData } from "./TextModuleData.js";
import { Uri } from "./Uri.js";
import { ViewUnlockRequirementEnum } from "./ViewUnlockRequirement.js";
export type LoyaltyClass = {
/**
* Identifies what kind of resource this is. Value: the fixed string "walletobjects#loyaltyClass".
* @deprecated
*/
kind?: string;
/**
* Required. The program name, such as "Adam's Apparel". The app may display an ellipsis after the first 20 characters to ensure full string is displayed on smaller screens.
*/
programName: string;
/**
* Required. The logo of the loyalty program or company. This logo is displayed in both the details and list views of the app.
*/
programLogo: Image;
/**
* The account name label, such as "Member Name." Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.
*/
accountNameLabel?: string;
/**
* The account ID label, such as "Member ID." Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.
*/
accountIdLabel?: string;
/**
* The rewards tier label, such as "Rewards Tier." Recommended maximum length is 9 characters to ensure full string is displayed on smaller screens.
*/
rewardsTierLabel?: string;
/**
* The rewards tier, such as "Gold" or "Platinum." Recommended maximum length is 7 characters to ensure full string is displayed on smaller screens.
*/
rewardsTier?: string;
/**
* Translated strings for the programName. The app may display an ellipsis after the first 20 characters to ensure full string is displayed on smaller screens.
*/
localizedProgramName?: LocalizedString;
/**
* Translated strings for the accountNameLabel. Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.
*/
localizedAccountNameLabel?: LocalizedString;
/**
* Translated strings for the accountIdLabel. Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.
*/
localizedAccountIdLabel?: LocalizedString;
/**
* Translated strings for the rewardsTierLabel. Recommended maximum length is 9 characters to ensure full string is displayed on smaller screens.
*/
localizedRewardsTierLabel?: LocalizedString;
/**
* Translated strings for the rewardsTier. Recommended maximum length is 7 characters to ensure full string is displayed on smaller screens.
*/
localizedRewardsTier?: LocalizedString;
/**
* The secondary rewards tier label, such as "Rewards Tier."
*/
secondaryRewardsTierLabel?: string;
/**
* Translated strings for the secondaryRewardsTierLabel.
*/
localizedSecondaryRewardsTierLabel?: LocalizedString;
/**
* The secondary rewards tier, such as "Gold" or "Platinum."
*/
secondaryRewardsTier?: string;
/**
* Translated strings for the secondaryRewardsTier.
*/
localizedSecondaryRewardsTier?: LocalizedString;
/**
* Information about how the class may be discovered and instantiated from within the Google Pay app.
*/
discoverableProgram?: DiscoverableProgram;
/**
* Template information about how the class should be displayed. If unset, Google will fallback to a default set of fields to display.
*/
classTemplateInfo?: ClassTemplateInfo;
/**
* Required. The unique identifier for a class. This ID must be unique across all classes from an issuer. This value should follow the format issuer ID.identifier where the former is issued by Google and latter is chosen by you. Your unique identifier should only include alphanumeric characters, '.', '_', or '-'.
*/
id: string;
/**
* Deprecated
* @deprecated
*/
version?: number;
/**
* Required. The issuer name. Recommended maximum length is 20 characters to ensure full string is displayed on smaller screens.
*/
issuerName: string;
/**
* An array of messages displayed in the app. All users of this object will receive its associated messages. The maximum number of these fields is 10.
*/
messages?: Message[];
/**
* Deprecated. Use multipleDevicesAndHoldersAllowedStatus instead.
* @deprecated
*/
allowMultipleUsersPerObject?: boolean;
/**
* The URI of your application's home page. Populating the URI in this field results in the exact same behavior as populating an URI in linksModuleData (when an object is rendered, a link to the homepage is shown in what would usually be thought of as the linksModuleData section of the object).
*/
homepageUri?: Uri;
/**
* The list of locations where the object can be used. The platform uses this information to trigger geolocated notifications to users. Note that locations in the object override locations in the class which override locations in the Google Places ID.
*/
locations?: LatLongPoint[];
/**
* When updating an already approved class you should keep setting this field to underReview.
*/
reviewStatus: ReviewStatusEnum;
/**
* The review comments set by the platform when a class is marked approved or rejected.
*/
review?: Review;
/**
* Deprecated. Use textModulesData instead.
* @deprecated
*/
infoModuleData?: InfoModuleData;
/**
* Image module data. The maximum number of these fields displayed is 1 from object level and 1 for class object level.
*/
imageModulesData?: ImageModuleData[];
/**
* Text module data. If text module data is also defined on the class, both will be displayed. The maximum number of these fields displayed is 10 from the object and 10 from the class.
*/
textModulesData?: TextModuleData[];
/**
* Links module data. If links module data is also defined on the object, both will be displayed.
*/
linksModuleData?: LinksModuleData;
/**
* The enableSmartTap and one of object level smartTapRedemptionValue, barcode.value, oraccountId` fields must also be set up correctly in order for a pass to support Smart Tap.
*/
redemptionIssuers?: number[];
/**
* Country code used to display the card's country (when the user is not in that country), as well as to display localized content when content is not available in the user's locale.
*/
countryCode?: string;
/**
* Optional banner image displayed on the front of the card. If none is present, nothing will be displayed. The image will display at 100% width.
*/
heroImage?: Image;
/**
* Deprecated.
* @deprecated
*/
wordMark?: Image;
/**
* Identifies whether this class supports Smart Tap. The redemptionIssuers and one of object level smartTapRedemptionLevel, barcode.value, or
accountId` fields must also be set up correctly in order for a pass to support Smart Tap.
*/
enableSmartTap?: boolean;
/**
* The background color for the card. If not set the dominant color of the hero image is used, and if no hero image is set, the dominant color of the logo is used. The format is #rrggbb where rrggbb is a hex RGB triplet, such as #ffcc00. You can also use the shorthand version of the RGB triplet which is #rgb, such as #fc0.
*/
hexBackgroundColor?: string;
/**
* Translated strings for the issuerName. Recommended maximum length is 20 characters to ensure full string is displayed on smaller screens.
*/
localizedIssuerName?: LocalizedString;
/**
* Identifies whether multiple users and devices will save the same object referencing this class.
*/
multipleDevicesAndHoldersAllowedStatus?: MultipleDevicesAndHoldersAllowedStatusEnum;
/**
* Callback options to be used to call the issuer back for every save/delete of an object for this class by the end-user. All objects of this class are eligible for the callback.
*/
callbackOptions?: CallbackOptions;
/**
* Optional information about the security animation. If this is set a security animation will be rendered on pass details.
*/
securityAnimation?: SecurityAnimation;
/**
* View Unlock Requirement options for the loyalty card.
*/
viewUnlockRequirement?: ViewUnlockRequirementEnum;
};