// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class SubmitDNAJobResponseBody extends $dara.Model { /** * @remarks * The ID of the media fingerprint analysis job. We recommend that you save this ID for subsequent calls of other operations. * * @example * 88c6ca184c0e47098a5b665e2**** */ jobId?: string; /** * @remarks * The request ID. * * @example * 25818875-5F78-4A13-BEF6-D7393642CA58 */ requestId?: string; static names(): { [key: string]: string } { return { jobId: 'JobId', requestId: 'RequestId', }; } static types(): { [key: string]: any } { return { jobId: 'string', requestId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }