// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DeletePolicyVersionRequest extends $dara.Model { /** * @remarks * The name of the policy. * * @example * OSS-Administrator */ policyName?: string; /** * @remarks * The ID of the policy version that you want to delete. * * @example * v3 */ versionId?: string; static names(): { [key: string]: string } { return { policyName: 'PolicyName', versionId: 'VersionId', }; } static types(): { [key: string]: any } { return { policyName: 'string', versionId: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }