UNPKG

@useapi/midjourney-api

Version:

TypeScript client library for Midjourney API by useapi.net

42 lines (41 loc) 1.13 kB
import { JobResponseEmbedsInner } from '../models/JobResponseEmbedsInner'; export declare class DescribeResponse { 'jobid': string; 'verb': DescribeResponseVerbEnum; 'status': DescribeResponseStatusEnum; 'created': string; 'updated': string; 'describeUrl': string; 'channel': string; 'server': string; 'maxJobs': number; 'messageId': string; 'content': string; 'embeds'?: Array<JobResponseEmbedsInner>; 'timestamp': string; 'code': DescribeResponseCodeEnum; static readonly discriminator: string | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare enum DescribeResponseVerbEnum { Describe = "describe" } export declare enum DescribeResponseStatusEnum { Started = "started", Completed = "completed" } export declare enum DescribeResponseCodeEnum { NUMBER_200 = 200 }