UnifiedOffersData

Definition

export class UnifiedOffersData {
  prequalificationId?: string;
  prequalCreditLimit?: number;
  hasExistingAccount?: boolean;
  financingBuyerId?: string;
}
Field NameTypeDescriptionDetails/Example
prequalificationIdstring?The id representing the card prequalification offer. If not present, user not prequalified for a card.
prequalCreditLimitnumber?The amount representing the card prequalification offer credit limit. If not present, user not prequalified for a card.
hasExistingAccountboolean?Indicates if an existing account was found for the user
financingBuyerIdstring?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”,
}