@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
22 lines • 640 B
TypeScript
import { IconData } from './IconData';
import { PaypalStateEnum } from './PaypalStateEnum';
/** Paypal information */
export interface Paypal {
/** Paypal agreement */
agreementId: string;
/** Paypal creation date */
creationDate: string;
/** This paypal is the default payment mean? */
defaultPaymentMean: boolean;
/** Custom description of this paypal */
description?: string;
/** Paypal associated email */
email: string;
/** Payment method type icon */
icon?: IconData;
/** */
id: number;
/** Paypal state */
state: PaypalStateEnum;
}
//# sourceMappingURL=Paypal.d.ts.map