// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class QueryExtCodeSignRequest extends $dara.Model { /** * @remarks * 扩展码A3 * * @example * 01 */ extCode?: string; ownerId?: number; /** * @example * 1 */ pageNo?: number; /** * @example * 20 */ pageSize?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; /** * @remarks * 签名 * * @example * 示例值示例值 */ signName?: string; static names(): { [key: string]: string } { return { extCode: 'ExtCode', ownerId: 'OwnerId', pageNo: 'PageNo', pageSize: 'PageSize', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', signName: 'SignName', }; } static types(): { [key: string]: any } { return { extCode: 'string', ownerId: 'number', pageNo: 'number', pageSize: 'number', resourceOwnerAccount: 'string', resourceOwnerId: 'number', signName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }