import * as $dara from '@darabonba/typescript'; export declare class CreateAuditRequest extends $dara.Model { /** * @remarks * The review results. You can specify the results for a maximum of 20 videos at a time. The value must be converted to a string. For more information about the parameters in AuditContent, see the "AuditContent" section of this topic. * * This parameter is required. * * @example * [ * { * "MediaId": "93ab850b4f*****b54b6e91d24d81d4", * "Status": "Normal" * }, * { * "MediaId": "f867fbfb58*****8bbab65c4480ae1d", * "Status": "Blocked", * "Reason": "xxxx", * "Comment": "xxxx" * } * ] */ auditContent?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }