import * as $dara from '@darabonba/typescript'; export declare class DescribeIpControlPolicyItemsRequest extends $dara.Model { /** * @remarks * The ID of the ACL. The ID is unique. * * @example * 7ea91319a34d48a09b5c9c871d9768b1 */ ipControlId?: string; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; /** * @remarks * The ID of the policy. * * @example * P151617000829241 */ policyItemId?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }