// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class CreateMediaLiveInputSecurityGroupResponseBody extends $dara.Model { /** * @remarks * The ID of the request. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; /** * @remarks * The ID of the security group. * * @example * SEGK5KA6KYKAWQQH */ securityGroupId?: string; static names(): { [key: string]: string } { return { requestId: 'RequestId', securityGroupId: 'SecurityGroupId', }; } static types(): { [key: string]: any } { return { requestId: 'string', securityGroupId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }