google-wallet
Version:
Google wallet library for Node.js
13 lines (12 loc) • 380 B
TypeScript
import { NfcConstraintEnum } from "./NfcConstraint.js";
import { ScreenshotEligibilityEnum } from "./ScreenshotEligibility.js";
export type PassConstraints = {
/**
* The screenshot eligibility for the pass.
*/
screenshotEligibility?: ScreenshotEligibilityEnum;
/**
* The NFC constraints for the pass.
*/
nfcConstraint?: NfcConstraintEnum[];
};