import { Method } from 'axios'; import { GeoLocation, WalletPass, WalletPassData, WalletPassInput, WalletPerson } from './interfaces'; import { Executable } from './executable'; export declare class IssueWallet extends Executable implements Partial { brandId?: number; programId?: number; passdata?: WalletPassData; /** * The person record. */ person?: WalletPerson; /** * The current message that is displayed on the wallet pass. */ currentMessage?: string; /** * The tier to put the card in during creation, if not provided will use the default tier. */ templateTierId?: number; /** * The location from which the card is being issued. */ geoLocation?: GeoLocation; /** * The ipaddress which is requesting the card to be issued. */ ipAddress?: string; /** * The templateId from which the card is being issued. If a program is provided, this is not required. */ templateId?: number; getMethod(): Method; getResponse(apiResponse: any): WalletPass; getURLPath(tenantId?: string): string; constructor(input?: Partial & { brandId: number; }); /** * getBody is used by the BambuClient to properly construct the request object body. * @returns Returns the expected body of the request utilizing the defined request attributes. */ getBody(): Partial; /** * getRootPath is used by the BambuClient to properly construct the request call. * @returns The root path of the request */ getRootPath(): string | undefined; }