@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
19 lines • 786 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface PublicSignupPage {
/** The id of the signup page (public_signup_pages only) */
id?: number;
/** The url to which a customer will be returned after a successful signup (public_signup_pages only) */
returnUrl?: string | null;
/** The params to be appended to the return_url (public_signup_pages only) */
returnParams?: string | null;
/** The url where the signup page can be viewed (public_signup_pages only) */
url?: string;
[key: string]: unknown;
}
export declare const publicSignupPageSchema: Schema<PublicSignupPage>;
//# sourceMappingURL=publicSignupPage.d.ts.map