@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.
23 lines (19 loc) • 663 B
text/typescript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { expandoObject, lazy, Schema } from '../schema';
import {
UpdateSubscriptionNote,
updateSubscriptionNoteSchema,
} from './updateSubscriptionNote';
/** Updatable fields for Subscription Note */
export interface UpdateSubscriptionNoteRequest {
/** Updatable fields for Subscription Note */
note: UpdateSubscriptionNote;
[key: string]: unknown;
}
export const updateSubscriptionNoteRequestSchema: Schema<UpdateSubscriptionNoteRequest> = expandoObject(
{ note: ['note', lazy(() => updateSubscriptionNoteSchema)] }
);