UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

14 lines 480 B
/** Callback URL's to register a new payment method */ export interface CallbackUrl { /** URL when customer cancels the action */ cancel: string; /** URL when registration encounters an error */ error: string; /** URL when registration failed */ failure: string; /** URL when payment method is in validation */ pending: string; /** URL when payment method registration success */ success: string; } //# sourceMappingURL=CallbackUrl.d.ts.map