/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface AuthCurrentUser200ResponseUser */ export interface AuthCurrentUser200ResponseUser { /** * * @type {string} * @memberof AuthCurrentUser200ResponseUser */ email?: string; /** * User's current subscription tier * @type {string} * @memberof AuthCurrentUser200ResponseUser */ tier?: AuthCurrentUser200ResponseUserTierEnum; /** * Stripe customer portal URL for subscription management. Will be null if user has no Stripe customer account. * @type {string} * @memberof AuthCurrentUser200ResponseUser */ customerPortalUrl?: string | null; } /** * @export */ export declare const AuthCurrentUser200ResponseUserTierEnum: { readonly Free: "free"; readonly Starter: "starter"; readonly Creator: "creator"; readonly Agency: "agency"; }; export type AuthCurrentUser200ResponseUserTierEnum = typeof AuthCurrentUser200ResponseUserTierEnum[keyof typeof AuthCurrentUser200ResponseUserTierEnum]; /** * Check if a given object implements the AuthCurrentUser200ResponseUser interface. */ export declare function instanceOfAuthCurrentUser200ResponseUser(value: object): value is AuthCurrentUser200ResponseUser; export declare function AuthCurrentUser200ResponseUserFromJSON(json: any): AuthCurrentUser200ResponseUser; export declare function AuthCurrentUser200ResponseUserFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthCurrentUser200ResponseUser; export declare function AuthCurrentUser200ResponseUserToJSON(value?: AuthCurrentUser200ResponseUser | null): any;