/** * 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. */ import type { DrawMetadata } from './DrawMetadata'; import type { BaseObject } from './BaseObject'; /** * * @export * @interface BaseDraw */ export interface BaseDraw extends BaseObject { /** * * @type {string} * @memberof BaseDraw */ title: string | null; /** * * @type {string} * @memberof BaseDraw */ description: string | null; /** * * @type {Array} * @memberof BaseDraw */ metadata?: Array; /** * * @type {Array} * @memberof BaseDraw */ payments: Array; /** * * @type {Date} * @memberof BaseDraw */ readonly updatedAt?: Date; /** * * @type {string} * @memberof BaseDraw */ readonly privateId?: string; } /** * @export */ export declare const BaseDrawPaymentsEnum: { readonly Certified: "CERTIFIED"; readonly Adfree: "ADFREE"; readonly Support: "SUPPORT"; }; export type BaseDrawPaymentsEnum = typeof BaseDrawPaymentsEnum[keyof typeof BaseDrawPaymentsEnum]; /** * Check if a given object implements the BaseDraw interface. */ export declare function instanceOfBaseDraw(value: object): value is BaseDraw; export declare function BaseDrawFromJSON(json: any): BaseDraw; export declare function BaseDrawFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseDraw; export declare function BaseDrawToJSON(value?: Omit | null): any;