/* generated using openapi-typescript-codegen -- do not edit */ /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ import type { ItemPrice } from './ItemPrice'; import type { Status0e3Enum } from './Status0e3Enum'; export type ItemSubscriptionList = { readonly unique_id: string; readonly user_id: number; readonly username: string; readonly email: string; /** * Type of item being subscribed to */ item_type: string; /** * Identifier for the item */ item_id: string; readonly item_name: string; /** * Current subscription status * * * `active` - Active * * `free` - Free Tier * * `grandfathered` - Grandfathered * * `trialing` - Trialing * * `past_due` - Past Due * * `canceled` - Canceled * * `incomplete` - Incomplete */ status?: Status0e3Enum; readonly price: ItemPrice; readonly created_at: string; readonly updated_at: string; };