Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LoyaltyClass

import type { LoyaltyClass } from "https://googleapis.deno.dev/v1/walletobjects:v1.ts";
interface LoyaltyClass {
accountIdLabel?: string;
accountNameLabel?: string;
allowMultipleUsersPerObject?: boolean;
appLinkData?: AppLinkData;
callbackOptions?: CallbackOptions;
classTemplateInfo?: ClassTemplateInfo;
countryCode?: string;
discoverableProgram?: DiscoverableProgram;
enableSmartTap?: boolean;
heroImage?: Image;
hexBackgroundColor?: string;
homepageUri?: Uri;
id?: string;
imageModulesData?: ImageModuleData[];
infoModuleData?: InfoModuleData;
issuerName?: string;
kind?: string;
linksModuleData?: LinksModuleData;
localizedAccountIdLabel?: LocalizedString;
localizedAccountNameLabel?: LocalizedString;
localizedIssuerName?: LocalizedString;
localizedProgramName?: LocalizedString;
localizedRewardsTier?: LocalizedString;
localizedRewardsTierLabel?: LocalizedString;
localizedSecondaryRewardsTier?: LocalizedString;
localizedSecondaryRewardsTierLabel?: LocalizedString;
locations?: LatLongPoint[];
messages?: Message[];
multipleDevicesAndHoldersAllowedStatus?:
| "STATUS_UNSPECIFIED"
| "MULTIPLE_HOLDERS"
| "ONE_USER_ALL_DEVICES"
| "ONE_USER_ONE_DEVICE"
| "multipleHolders"
| "oneUserAllDevices"
| "oneUserOneDevice";
programLogo?: Image;
programName?: string;
redemptionIssuers?: bigint[];
review?: Review;
reviewStatus?:
| "REVIEW_STATUS_UNSPECIFIED"
| "UNDER_REVIEW"
| "underReview"
| "APPROVED"
| "approved"
| "REJECTED"
| "rejected"
| "DRAFT"
| "draft";
rewardsTier?: string;
rewardsTierLabel?: string;
secondaryRewardsTier?: string;
secondaryRewardsTierLabel?: string;
securityAnimation?: SecurityAnimation;
textModulesData?: TextModuleData[];
version?: bigint;
viewUnlockRequirement?: "VIEW_UNLOCK_REQUIREMENT_UNSPECIFIED" | "UNLOCK_NOT_REQUIRED" | "UNLOCK_REQUIRED_TO_VIEW";
wideProgramLogo?: Image;
wordMark?: Image;
}

§Properties

§
accountIdLabel?: string
[src]

The account ID label, such as "Member ID." Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.

§
accountNameLabel?: string
[src]

The account name label, such as "Member Name." Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.

§
allowMultipleUsersPerObject?: boolean
[src]

Deprecated. Use multipleDevicesAndHoldersAllowedStatus instead.

§
appLinkData?: AppLinkData
[src]

Optional app or website link that will be displayed as a button on the front of the pass. If AppLinkData is provided for the corresponding object that will be used instead.

§
callbackOptions?: CallbackOptions
[src]

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.

§
classTemplateInfo?: ClassTemplateInfo
[src]

Template information about how the class should be displayed. If unset, Google will fallback to a default set of fields to display.

§
countryCode?: string
[src]

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.

§
discoverableProgram?: DiscoverableProgram
[src]

Information about how the class may be discovered and instantiated from within the Google Pay app.

§
enableSmartTap?: boolean
[src]

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.

§
heroImage?: Image
[src]

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.

§
hexBackgroundColor?: string
[src]

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.

§
homepageUri?: Uri
[src]

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).

§
id?: string
[src]

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 '-'.

§
imageModulesData?: ImageModuleData[]
[src]

Image module data. The maximum number of these fields displayed is 1 from object level and 1 for class object level.

§
infoModuleData?: InfoModuleData
[src]

Deprecated. Use textModulesData instead.

§
issuerName?: string
[src]

Required. The issuer name. Recommended maximum length is 20 characters to ensure full string is displayed on smaller screens.

§
kind?: string
[src]

Identifies what kind of resource this is. Value: the fixed string "walletobjects#loyaltyClass".

§
linksModuleData?: LinksModuleData
[src]

Links module data. If links module data is also defined on the object, both will be displayed.

§
localizedAccountIdLabel?: LocalizedString
[src]

Translated strings for the account_id_label. Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.

§
localizedAccountNameLabel?: LocalizedString
[src]

Translated strings for the account_name_label. Recommended maximum length is 15 characters to ensure full string is displayed on smaller screens.

§
localizedIssuerName?: LocalizedString
[src]

Translated strings for the issuer_name. Recommended maximum length is 20 characters to ensure full string is displayed on smaller screens.

§
localizedProgramName?: LocalizedString
[src]

Translated strings for the program_name. The app may display an ellipsis after the first 20 characters to ensure full string is displayed on smaller screens.

§
localizedRewardsTier?: LocalizedString
[src]

Translated strings for the rewards_tier. Recommended maximum length is 7 characters to ensure full string is displayed on smaller screens.

§
localizedRewardsTierLabel?: LocalizedString
[src]

Translated strings for the rewards_tier_label. Recommended maximum length is 9 characters to ensure full string is displayed on smaller screens.

§
localizedSecondaryRewardsTier?: LocalizedString
[src]

Translated strings for the secondary_rewards_tier.

§
localizedSecondaryRewardsTierLabel?: LocalizedString
[src]

Translated strings for the secondary_rewards_tier_label.

§
locations?: LatLongPoint[]
[src]

Note: This field is currently not supported to trigger geo notifications.

§
messages?: Message[]
[src]

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.

§
multipleDevicesAndHoldersAllowedStatus?: "STATUS_UNSPECIFIED" | "MULTIPLE_HOLDERS" | "ONE_USER_ALL_DEVICES" | "ONE_USER_ONE_DEVICE" | "multipleHolders" | "oneUserAllDevices" | "oneUserOneDevice"
[src]

Identifies whether multiple users and devices will save the same object referencing this class.

§
programName?: string
[src]

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.

§
redemptionIssuers?: bigint[]
[src]

Identifies which redemption issuers can redeem the pass over Smart Tap. Redemption issuers are identified by their issuer ID. Redemption issuers must have at least one Smart Tap key configured. The enableSmartTap and one of object level smartTapRedemptionValue, barcode.value, or accountId` fields must also be set up correctly in order for a pass to support Smart Tap.

§
review?: Review
[src]

The review comments set by the platform when a class is marked approved or rejected.

§
reviewStatus?: "REVIEW_STATUS_UNSPECIFIED" | "UNDER_REVIEW" | "underReview" | "APPROVED" | "approved" | "REJECTED" | "rejected" | "DRAFT" | "draft"
[src]

Required. The status of the class. This field can be set to draft or underReview using the insert, patch, or update API calls. Once the review state is changed from draft it may not be changed back to draft. You should keep this field to draft when the class is under development. A draft class cannot be used to create any object. You should set this field to underReview when you believe the class is ready for use. The platform will automatically set this field to approved and it can be immediately used to create or migrate objects. When updating an already approved class you should keep setting this field to underReview.

§
rewardsTier?: string
[src]

The rewards tier, such as "Gold" or "Platinum." Recommended maximum length is 7 characters to ensure full string is displayed on smaller screens.

§
rewardsTierLabel?: string
[src]

The rewards tier label, such as "Rewards Tier." Recommended maximum length is 9 characters to ensure full string is displayed on smaller screens.

§
secondaryRewardsTier?: string
[src]

The secondary rewards tier, such as "Gold" or "Platinum."

§
secondaryRewardsTierLabel?: string
[src]

The secondary rewards tier label, such as "Rewards Tier."

§
securityAnimation?: SecurityAnimation
[src]

Optional information about the security animation. If this is set a security animation will be rendered on pass details.

§
textModulesData?: TextModuleData[]
[src]

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.

§
version?: bigint
[src]

Deprecated

§
viewUnlockRequirement?: "VIEW_UNLOCK_REQUIREMENT_UNSPECIFIED" | "UNLOCK_NOT_REQUIRED" | "UNLOCK_REQUIRED_TO_VIEW"
[src]

View Unlock Requirement options for the loyalty card.

§
wordMark?: Image
[src]

Deprecated.