chargebee
Version:
A library for integrating with Chargebee.
14 lines (13 loc) • 770 B
JavaScript
;
// Generated Zod schemas: OmnichannelSubscriptionItem
// Actions: listOmniSubItemScheduleChanges
// Do not edit manually – regenerate via sdk-generator
Object.defineProperty(exports, "__esModule", { value: true });
exports.ListOmniSubItemScheduleChangesOmnichannelSubscriptionItemBodySchema = void 0;
const zod_1 = require("zod");
//OmnichannelSubscriptionItem.listOmniSubItemScheduleChanges
const ListOmniSubItemScheduleChangesOmnichannelSubscriptionItemBodySchema = zod_1.z.looseObject({
limit: zod_1.z.number().int().min(1).max(100).optional(),
offset: zod_1.z.string().max(1000).optional(),
});
exports.ListOmniSubItemScheduleChangesOmnichannelSubscriptionItemBodySchema = ListOmniSubItemScheduleChangesOmnichannelSubscriptionItemBodySchema;