// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeAuthorizedAppsRequest extends $dara.Model { /** * @remarks * The ID of the API. This ID is generated by the system and globally unique. * * This parameter is required. * * @example * baacc592e63a4cb6a41920d9d3f91f38 */ apiId?: string; /** * @remarks * The ID of the app. * * @example * 20112314518278 */ appId?: number; /** * @remarks * The name of the app. * * @example * CreateApptest */ appName?: string; /** * @remarks * The Alibaba Cloud account of the app owner. * * @example * 1546564 */ appOwnerId?: number; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: 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 to return on each page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; securityToken?: string; /** * @remarks * The environment. Valid values: * * * **RELEASE**: the production environment * * **PRE**: the staging environment * * **TEST**: the test environment * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string } { return { apiId: 'ApiId', appId: 'AppId', appName: 'AppName', appOwnerId: 'AppOwnerId', groupId: 'GroupId', pageNumber: 'PageNumber', pageSize: 'PageSize', securityToken: 'SecurityToken', stageName: 'StageName', }; } static types(): { [key: string]: any } { return { apiId: 'string', appId: 'number', appName: 'string', appOwnerId: 'number', groupId: 'string', pageNumber: 'number', pageSize: 'number', securityToken: 'string', stageName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }