import * as $dara from '@darabonba/typescript'; export declare class GetPolicyVersionResponseBodyPolicyVersion extends $dara.Model { /** * @remarks * The creation time. * * @example * 2015-01-23T12:33:18Z */ createDate?: string; /** * @remarks * Indicates whether the policy version is the default version. * * @example * false */ isDefaultVersion?: boolean; /** * @remarks * The document of the policy. * * @example * { "Statement": [{ "Action": ["oss:*"], "Effect": "Allow", "Resource": ["acs:oss:*:*:*"]}], "Version": "1"} */ policyDocument?: string; /** * @remarks * The ID of the policy version. * * @example * v3 */ versionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class GetPolicyVersionResponseBody extends $dara.Model { /** * @remarks * The information about the policy version. */ policyVersion?: GetPolicyVersionResponseBodyPolicyVersion; /** * @remarks * The request ID. * * @example * 9B34724D-54B0-4A51-B34D-4512372FE1BE */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }