/** * 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 SubscriptionTier */ export interface SubscriptionTier { /** * Maximum number of Instagram comments allowed for this tier * @type {number} * @memberof SubscriptionTier */ maxInstagramComments: number; /** * Display name of the subscription tier * @type {string} * @memberof SubscriptionTier */ name: string; } /** * Check if a given object implements the SubscriptionTier interface. */ export declare function instanceOfSubscriptionTier(value: object): value is SubscriptionTier; export declare function SubscriptionTierFromJSON(json: any): SubscriptionTier; export declare function SubscriptionTierFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionTier; export declare function SubscriptionTierToJSON(value?: SubscriptionTier | null): any;