UnifiedOffersData
Definition
export class UnifiedOffersData {
prequalificationId?: string;
prequalCreditLimit?: number;
hasExistingAccount?: boolean;
financingBuyerId?: string;
}
Field Name | Type | Description | Details/Example |
---|---|---|---|
prequalificationId | string? | The id representing the card prequalification offer. If not present, user not prequalified for a card. | |
prequalCreditLimit | number? | The amount representing the card prequalification offer credit limit. If not present, user not prequalified for a card. | |
hasExistingAccount | boolean? | Indicates if an existing account was found for the user | |
financingBuyerId | string? | The id representing the BNPL prequalification offer. If not present, user not prequalified for a BNPL product. |
Examples
{
prequalificationId: “xxxxxx”,
prequalCreditLimit: “12000”,
hasExistingAccount: false,
financingBuyerId: “xxxxxx”,
}
Updated about 1 year ago