export interface ListSubscriptionItemsRequest { /** * The ID of the subscription item created after the last subscription item you want to retrieve. */ ending_before?: string; /** * The maximum number of subscription items to return. Range: 1-100. Default is 10. */ limit?: string; /** * The ID of the subscription item created before the first subscription item you want to retrieve. */ starting_after?: string; /** * ID of the subscription. */ subscription: string; } //# sourceMappingURL=ListSubscriptionItemsRequest.d.ts.map