UNPKG

@neynar/nodejs-sdk

Version:

SDK to interact with Neynar APIs (https://docs.neynar.com/reference/quickstart)

78 lines (77 loc) 2.04 kB
/** * Neynar API * The Neynar API allows you to interact with the Farcaster protocol among other things. See the [Neynar docs](https://docs.neynar.com/reference) for more details. * * The version of the OpenAPI document: 3.115.0 * Contact: team@neynar.com * * 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 GetDevStatus200ResponseOneOf1 */ export interface GetDevStatus200ResponseOneOf1 { [key: string]: any; /** * * @type {number} * @memberof GetDevStatus200ResponseOneOf1 */ 'schema_version': GetDevStatus200ResponseOneOf1SchemaVersionEnum; /** * * @type {boolean} * @memberof GetDevStatus200ResponseOneOf1 */ 'ready_to_publish': boolean; /** * * @type {number} * @memberof GetDevStatus200ResponseOneOf1 */ 'current_phase': number; /** * * @type {string} * @memberof GetDevStatus200ResponseOneOf1 */ 'started_at': string | null; /** * * @type {string} * @memberof GetDevStatus200ResponseOneOf1 */ 'last_updated_at': string | null; /** * * @type {string} * @memberof GetDevStatus200ResponseOneOf1 */ 'completed_at': string | null; /** * * @type {{ [key: string]: { [key: string]: any; }; }} * @memberof GetDevStatus200ResponseOneOf1 */ 'phases': { [key: string]: { [key: string]: any; }; }; /** * * @type {{ [key: string]: any | null; }} * @memberof GetDevStatus200ResponseOneOf1 */ 'metadata': { [key: string]: any | null; }; } export declare const GetDevStatus200ResponseOneOf1SchemaVersionEnum: { readonly NUMBER_1: 1; }; export type GetDevStatus200ResponseOneOf1SchemaVersionEnum = typeof GetDevStatus200ResponseOneOf1SchemaVersionEnum[keyof typeof GetDevStatus200ResponseOneOf1SchemaVersionEnum];