// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class DescribeAppRequest extends $dara.Model { /** * @remarks * The ID of the app. The ID is generated by the system and globally unique. * * @example * 110843374 */ appId?: number; securityToken?: string; static names(): { [key: string]: string } { return { appId: 'AppId', securityToken: 'SecurityToken', }; } static types(): { [key: string]: any } { return { appId: 'number', securityToken: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }