// This file is auto-generated, don't edit it /** */ import Util, * as $Util from '@alicloud/tea-util'; import GatewayClient from '@alicloud/gateway-dingtalk'; import OpenApi, * as $OpenApi from '@alicloud/openapi-client'; import OpenApiUtil from '@alicloud/openapi-util'; import * as $tea from '@alicloud/tea-typescript'; export class AddAppRolesToMemberHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppRolesToMemberRequest extends $tea.Model { /** * @remarks * This parameter is required. */ memberId?: string; /** * @remarks * This parameter is required. */ memberType?: string; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ roleList?: AddAppRolesToMemberRequestRoleList[]; static names(): { [key: string]: string } { return { memberId: 'memberId', memberType: 'memberType', opUserId: 'opUserId', roleList: 'roleList', }; } static types(): { [key: string]: any } { return { memberId: 'string', memberType: 'string', opUserId: 'string', roleList: { 'type': 'array', 'itemType': AddAppRolesToMemberRequestRoleList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppRolesToMemberResponseBody extends $tea.Model { result?: AddAppRolesToMemberResponseBodyResult[]; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: { 'type': 'array', 'itemType': AddAppRolesToMemberResponseBodyResult }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppRolesToMemberResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AddAppRolesToMemberResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AddAppRolesToMemberResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppToWorkBenchGroupHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppToWorkBenchGroupRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * namexx */ componentId?: string; /** * @example * corpxxxx */ ecologicalCorpId?: string; /** * @example * xxxx */ opUnionId?: string; static names(): { [key: string]: string } { return { componentId: 'componentId', ecologicalCorpId: 'ecologicalCorpId', opUnionId: 'opUnionId', }; } static types(): { [key: string]: any } { return { componentId: 'string', ecologicalCorpId: 'string', opUnionId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppToWorkBenchGroupResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppToWorkBenchGroupResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AddAppToWorkBenchGroupResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AddAppToWorkBenchGroupResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddMemberToAppRoleHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddMemberToAppRoleRequest extends $tea.Model { deptIdList?: number[]; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ scopeVersion?: number; userIdList?: string[]; static names(): { [key: string]: string } { return { deptIdList: 'deptIdList', opUserId: 'opUserId', scopeVersion: 'scopeVersion', userIdList: 'userIdList', }; } static types(): { [key: string]: any } { return { deptIdList: { 'type': 'array', 'itemType': 'number' }, opUserId: 'string', scopeVersion: 'number', userIdList: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddMemberToAppRoleResponseBody extends $tea.Model { /** * @example * 123 */ latestScopeVersion?: number; static names(): { [key: string]: string } { return { latestScopeVersion: 'latestScopeVersion', }; } static types(): { [key: string]: any } { return { latestScopeVersion: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddMemberToAppRoleResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AddMemberToAppRoleResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AddMemberToAppRoleResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiPResponseBody extends $tea.Model { result?: string; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiPResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AnheiPResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AnheiPResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTest888ResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTest888Response extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AnheiTest888ResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AnheiTest888ResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTestBResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTestBResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AnheiTestBResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AnheiTestBResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTestNineResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AnheiTestNineResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AnheiTestNineResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AnheiTestNineResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AppStatusManagerTestRequest extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AppStatusManagerTestResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AppStatusManagerTestResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AppStatusManagerTestResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AppStatusManagerTestResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AyunTestResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AyunTestResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AyunTestResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AyunTestResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AyunTestOnlineResponseBody extends $tea.Model { requestId?: string; static names(): { [key: string]: string } { return { requestId: 'requestId', }; } static types(): { [key: string]: any } { return { requestId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AyunTestOnlineResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: AyunTestOnlineResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: AyunTestOnlineResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateApaasAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateApaasAppRequest extends $tea.Model { /** * @remarks * This parameter is required. */ appDesc?: string; /** * @remarks * This parameter is required. */ appIcon?: string; /** * @remarks * This parameter is required. */ appName?: string; /** * @remarks * This parameter is required. */ bizAppId?: string; homepageEditLink?: string; /** * @remarks * This parameter is required. */ homepageLink?: string; isShortCut?: number; ompLink?: string; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ pcHomepageEditLink?: string; /** * @remarks * This parameter is required. */ pcHomepageLink?: string; templateKey?: string; static names(): { [key: string]: string } { return { appDesc: 'appDesc', appIcon: 'appIcon', appName: 'appName', bizAppId: 'bizAppId', homepageEditLink: 'homepageEditLink', homepageLink: 'homepageLink', isShortCut: 'isShortCut', ompLink: 'ompLink', opUserId: 'opUserId', pcHomepageEditLink: 'pcHomepageEditLink', pcHomepageLink: 'pcHomepageLink', templateKey: 'templateKey', }; } static types(): { [key: string]: any } { return { appDesc: 'string', appIcon: 'string', appName: 'string', bizAppId: 'string', homepageEditLink: 'string', homepageLink: 'string', isShortCut: 'number', ompLink: 'string', opUserId: 'string', pcHomepageEditLink: 'string', pcHomepageLink: 'string', templateKey: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateApaasAppResponseBody extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. */ bizAppId?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', bizAppId: 'bizAppId', }; } static types(): { [key: string]: any } { return { agentId: 'number', bizAppId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateApaasAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: CreateApaasAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: CreateApaasAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateInnerAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateInnerAppRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * descxxx */ desc?: string; developType?: number; /** * @example * https://www.dingtalk.com */ homepageLink?: string; /** * @example * mediaxxx */ icon?: string; ipWhiteList?: string[]; /** * @remarks * This parameter is required. * * @example * namexx */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @remarks * This parameter is required. * * @example * xxxx */ opUnionId?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; /** * @example * BASE */ scopeType?: string; static names(): { [key: string]: string } { return { desc: 'desc', developType: 'developType', homepageLink: 'homepageLink', icon: 'icon', ipWhiteList: 'ipWhiteList', name: 'name', ompLink: 'ompLink', opUnionId: 'opUnionId', pcHomepageLink: 'pcHomepageLink', scopeType: 'scopeType', }; } static types(): { [key: string]: any } { return { desc: 'string', developType: 'number', homepageLink: 'string', icon: 'string', ipWhiteList: { 'type': 'array', 'itemType': 'string' }, name: 'string', ompLink: 'string', opUnionId: 'string', pcHomepageLink: 'string', scopeType: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateInnerAppResponseBody extends $tea.Model { /** * @example * 111 */ agentId?: number; appKey?: string; appSecret?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appKey: 'appKey', appSecret: 'appSecret', }; } static types(): { [key: string]: any } { return { agentId: 'number', appKey: 'string', appSecret: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class CreateInnerAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: CreateInnerAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: CreateInnerAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteAppRoleHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteAppRoleRequest extends $tea.Model { /** * @remarks * This parameter is required. */ opUserId?: string; static names(): { [key: string]: string } { return { opUserId: 'opUserId', }; } static types(): { [key: string]: any } { return { opUserId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteAppRoleResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteAppRoleResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: DeleteAppRoleResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: DeleteAppRoleResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteInnerAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteInnerAppRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * xxxx */ opUnionId?: string; static names(): { [key: string]: string } { return { opUnionId: 'opUnionId', }; } static types(): { [key: string]: any } { return { opUnionId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteInnerAppResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class DeleteInnerAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: DeleteInnerAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: DeleteInnerAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetApaasAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetApaasAppResponseBody extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. */ bizAppId?: string; /** * @remarks * This parameter is required. */ publishStatus?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', bizAppId: 'bizAppId', publishStatus: 'publishStatus', }; } static types(): { [key: string]: any } { return { agentId: 'number', bizAppId: 'string', publishStatus: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetApaasAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetApaasAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetApaasAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppResourceUseInfoHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppResourceUseInfoRequest extends $tea.Model { /** * @example * api_count */ benefitCode?: string; /** * @example * 202302 */ endTime?: string; /** * @example * month */ periodType?: string; /** * @example * 202301 */ startTime?: string; static names(): { [key: string]: string } { return { benefitCode: 'benefitCode', endTime: 'endTime', periodType: 'periodType', startTime: 'startTime', }; } static types(): { [key: string]: any } { return { benefitCode: 'string', endTime: 'string', periodType: 'string', startTime: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppResourceUseInfoResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetAppResourceUseInfoResponseBody[]; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: { 'type': 'array', 'itemType': GetAppResourceUseInfoResponseBody }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppRoleScopeByRoleIdHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppRoleScopeByRoleIdResponseBody extends $tea.Model { /** * @example * false */ canManageRole?: boolean; deptIdList?: number[]; /** * @example * 123 */ roleId?: number; /** * @example * 财务 */ roleName?: string; /** * @example * PART_VISIBLE */ scopeType?: string; /** * @example * 123 */ scopeVersion?: string; userIdList?: string[]; static names(): { [key: string]: string } { return { canManageRole: 'canManageRole', deptIdList: 'deptIdList', roleId: 'roleId', roleName: 'roleName', scopeType: 'scopeType', scopeVersion: 'scopeVersion', userIdList: 'userIdList', }; } static types(): { [key: string]: any } { return { canManageRole: 'boolean', deptIdList: { 'type': 'array', 'itemType': 'number' }, roleId: 'number', roleName: 'string', scopeType: 'string', scopeVersion: 'string', userIdList: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppRoleScopeByRoleIdResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetAppRoleScopeByRoleIdResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetAppRoleScopeByRoleIdResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppResponseBody extends $tea.Model { agentId?: number; appName?: string; customerAppId?: string; mobileLoginAddressKey?: string; mobileLoginLoginUrl?: string; mobileOriginalHomepageUrl?: string; mobileTransferUrl?: string; pcEffectiveHomepageUrl?: string; pcLoginAddressKey?: string; pcLoginLoginUrl?: string; pcOriginalHomepageUrl?: string; pcTransferUrl?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appName: 'appName', customerAppId: 'customerAppId', mobileLoginAddressKey: 'mobileLoginAddressKey', mobileLoginLoginUrl: 'mobileLoginLoginUrl', mobileOriginalHomepageUrl: 'mobileOriginalHomepageUrl', mobileTransferUrl: 'mobileTransferUrl', pcEffectiveHomepageUrl: 'pcEffectiveHomepageUrl', pcLoginAddressKey: 'pcLoginAddressKey', pcLoginLoginUrl: 'pcLoginLoginUrl', pcOriginalHomepageUrl: 'pcOriginalHomepageUrl', pcTransferUrl: 'pcTransferUrl', }; } static types(): { [key: string]: any } { return { agentId: 'number', appName: 'string', customerAppId: 'string', mobileLoginAddressKey: 'string', mobileLoginLoginUrl: 'string', mobileOriginalHomepageUrl: 'string', mobileTransferUrl: 'string', pcEffectiveHomepageUrl: 'string', pcLoginAddressKey: 'string', pcLoginLoginUrl: 'string', pcOriginalHomepageUrl: 'string', pcTransferUrl: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetInnerAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetInnerAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppInfoHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppInfoResponseBody extends $tea.Model { agentId?: number; appName?: string; customerAppId?: string; mobileLoginAddressKey?: string; mobileLoginLoginUrl?: string; mobileLoginRequestMethod?: string; mobileOriginalHomepageUrl?: string; mobileTransferUrl?: string; padEffectiveHomepageUrl?: string; padLoginAddressKey?: string; padLoginLoginUrl?: string; padLoginRequestMethod?: string; padOriginalHomepageUrl?: string; padTransferUrl?: string; pcEffectiveHomepageUrl?: string; pcLoginAddressKey?: string; pcLoginLoginUrl?: string; pcLoginRequestMethod?: string; pcOriginalHomepageUrl?: string; pcTransferUrl?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appName: 'appName', customerAppId: 'customerAppId', mobileLoginAddressKey: 'mobileLoginAddressKey', mobileLoginLoginUrl: 'mobileLoginLoginUrl', mobileLoginRequestMethod: 'mobileLoginRequestMethod', mobileOriginalHomepageUrl: 'mobileOriginalHomepageUrl', mobileTransferUrl: 'mobileTransferUrl', padEffectiveHomepageUrl: 'padEffectiveHomepageUrl', padLoginAddressKey: 'padLoginAddressKey', padLoginLoginUrl: 'padLoginLoginUrl', padLoginRequestMethod: 'padLoginRequestMethod', padOriginalHomepageUrl: 'padOriginalHomepageUrl', padTransferUrl: 'padTransferUrl', pcEffectiveHomepageUrl: 'pcEffectiveHomepageUrl', pcLoginAddressKey: 'pcLoginAddressKey', pcLoginLoginUrl: 'pcLoginLoginUrl', pcLoginRequestMethod: 'pcLoginRequestMethod', pcOriginalHomepageUrl: 'pcOriginalHomepageUrl', pcTransferUrl: 'pcTransferUrl', }; } static types(): { [key: string]: any } { return { agentId: 'number', appName: 'string', customerAppId: 'string', mobileLoginAddressKey: 'string', mobileLoginLoginUrl: 'string', mobileLoginRequestMethod: 'string', mobileOriginalHomepageUrl: 'string', mobileTransferUrl: 'string', padEffectiveHomepageUrl: 'string', padLoginAddressKey: 'string', padLoginLoginUrl: 'string', padLoginRequestMethod: 'string', padOriginalHomepageUrl: 'string', padTransferUrl: 'string', pcEffectiveHomepageUrl: 'string', pcLoginAddressKey: 'string', pcLoginLoginUrl: 'string', pcLoginRequestMethod: 'string', pcOriginalHomepageUrl: 'string', pcTransferUrl: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetInnerAppInfoResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetInnerAppInfoResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetInnerAppInfoResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppScopeHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppScopeResponseBody extends $tea.Model { /** * @example * true */ result?: GetMicroAppScopeResponseBodyResult; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: GetMicroAppScopeResponseBodyResult, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppScopeResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetMicroAppScopeResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetMicroAppScopeResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppUserAccessHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppUserAccessResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppUserAccessResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetMicroAppUserAccessResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetMicroAppUserAccessResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetUserAppDevAccessHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetUserAppDevAccessResponseBody extends $tea.Model { result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetUserAppDevAccessResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetUserAppDevAccessResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetUserAppDevAccessResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetVersionInfoRequest extends $tea.Model { unifiedAppId?: string; versionId?: string; static names(): { [key: string]: string } { return { unifiedAppId: 'unifiedAppId', versionId: 'versionId', }; } static types(): { [key: string]: any } { return { unifiedAppId: 'string', versionId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetVersionInfoResponseBody extends $tea.Model { arguments?: string[]; errorCode?: string; errorMsg?: string; result?: string; success?: boolean; static names(): { [key: string]: string } { return { arguments: 'arguments', errorCode: 'errorCode', errorMsg: 'errorMsg', result: 'result', success: 'success', }; } static types(): { [key: string]: any } { return { arguments: { 'type': 'array', 'itemType': 'string' }, errorCode: 'string', errorMsg: 'string', result: 'string', success: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetVersionInfoResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: GetVersionInfoResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: GetVersionInfoResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class IsOrgMicroAppVisibleByUserIdHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class IsOrgMicroAppVisibleByUserIdRequest extends $tea.Model { /** * @remarks * This parameter is required. */ appId?: number; /** * @remarks * This parameter is required. */ id?: string; /** * @remarks * This parameter is required. */ type?: string; static names(): { [key: string]: string } { return { appId: 'appId', id: 'id', type: 'type', }; } static types(): { [key: string]: any } { return { appId: 'number', id: 'string', type: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class IsOrgMicroAppVisibleByUserIdResponseBody extends $tea.Model { result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class IsOrgMicroAppVisibleByUserIdResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: IsOrgMicroAppVisibleByUserIdResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: IsOrgMicroAppVisibleByUserIdResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllAppResponseBody extends $tea.Model { appList?: ListAllAppResponseBodyAppList[]; static names(): { [key: string]: string } { return { appList: 'appList', }; } static types(): { [key: string]: any } { return { appList: { 'type': 'array', 'itemType': ListAllAppResponseBodyAppList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListAllAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListAllAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsResponseBody extends $tea.Model { appList?: ListAllInnerAppsResponseBodyAppList[]; static names(): { [key: string]: string } { return { appList: 'appList', }; } static types(): { [key: string]: any } { return { appList: { 'type': 'array', 'itemType': ListAllInnerAppsResponseBodyAppList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListAllInnerAppsResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListAllInnerAppsResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppByClientIdHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppByClientIdResponseBody extends $tea.Model { agentId?: number; appId?: number; appStatus?: number; desc?: string; developType?: number; homepageLink?: string; icon?: string; name?: string; ompLink?: string; pcHomepageLink?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appId: 'appId', appStatus: 'appStatus', desc: 'desc', developType: 'developType', homepageLink: 'homepageLink', icon: 'icon', name: 'name', ompLink: 'ompLink', pcHomepageLink: 'pcHomepageLink', }; } static types(): { [key: string]: any } { return { agentId: 'number', appId: 'number', appStatus: 'number', desc: 'string', developType: 'number', homepageLink: 'string', icon: 'string', name: 'string', ompLink: 'string', pcHomepageLink: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppByClientIdResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListAppByClientIdResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListAppByClientIdResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppRoleScopesHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppRoleScopesRequest extends $tea.Model { nextToken?: number; size?: number; static names(): { [key: string]: string } { return { nextToken: 'nextToken', size: 'size', }; } static types(): { [key: string]: any } { return { nextToken: 'number', size: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppRoleScopesResponseBody extends $tea.Model { dataList?: ListAppRoleScopesResponseBodyDataList[]; /** * @example * true */ hasMore?: boolean; /** * @example * 0 */ nextToken?: number; static names(): { [key: string]: string } { return { dataList: 'dataList', hasMore: 'hasMore', nextToken: 'nextToken', }; } static types(): { [key: string]: any } { return { dataList: { 'type': 'array', 'itemType': ListAppRoleScopesResponseBodyDataList }, hasMore: 'boolean', nextToken: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppRoleScopesResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListAppRoleScopesResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListAppRoleScopesResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppRequest extends $tea.Model { /** * @example * xxxx */ ecologicalCorpId?: string; static names(): { [key: string]: string } { return { ecologicalCorpId: 'ecologicalCorpId', }; } static types(): { [key: string]: any } { return { ecologicalCorpId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppResponseBody extends $tea.Model { appList?: ListInnerAppResponseBodyAppList[]; static names(): { [key: string]: string } { return { appList: 'appList', }; } static types(): { [key: string]: any } { return { appList: { 'type': 'array', 'itemType': ListInnerAppResponseBodyAppList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListInnerAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListInnerAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppVersionHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppVersionResponseBody extends $tea.Model { appVersionList?: ListInnerAppVersionResponseBodyAppVersionList[]; static names(): { [key: string]: string } { return { appVersionList: 'appVersionList', }; } static types(): { [key: string]: any } { return { appVersionList: { 'type': 'array', 'itemType': ListInnerAppVersionResponseBodyAppVersionList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppVersionResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListInnerAppVersionResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListInnerAppVersionResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRoleInfoByUserHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRoleInfoByUserResponseBody extends $tea.Model { result?: ListRoleInfoByUserResponseBodyResult[]; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: { 'type': 'array', 'itemType': ListRoleInfoByUserResponseBodyResult }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRoleInfoByUserResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListRoleInfoByUserResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListRoleInfoByUserResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUserVilebleAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUserVilebleAppResponseBody extends $tea.Model { appList?: ListUserVilebleAppResponseBodyAppList[]; static names(): { [key: string]: string } { return { appList: 'appList', }; } static types(): { [key: string]: any } { return { appList: { 'type': 'array', 'itemType': ListUserVilebleAppResponseBodyAppList }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUserVilebleAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: ListUserVilebleAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: ListUserVilebleAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PageInnerAppHistoryVersionHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PageInnerAppHistoryVersionRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ pageNumber?: number; /** * @remarks * This parameter is required. * * @example * 1 */ pageSize?: number; static names(): { [key: string]: string } { return { pageNumber: 'pageNumber', pageSize: 'pageSize', }; } static types(): { [key: string]: any } { return { pageNumber: 'number', pageSize: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PageInnerAppHistoryVersionResponseBody extends $tea.Model { miniAppVersionList?: PageInnerAppHistoryVersionResponseBodyMiniAppVersionList[]; /** * @example * 1 */ totalCount?: number; static names(): { [key: string]: string } { return { miniAppVersionList: 'miniAppVersionList', totalCount: 'totalCount', }; } static types(): { [key: string]: any } { return { miniAppVersionList: { 'type': 'array', 'itemType': PageInnerAppHistoryVersionResponseBodyMiniAppVersionList }, totalCount: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PageInnerAppHistoryVersionResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: PageInnerAppHistoryVersionResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: PageInnerAppHistoryVersionResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PublishInnerAppVersionHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PublishInnerAppVersionRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ appVersionId?: number; miniAppOnPc?: boolean; /** * @remarks * This parameter is required. * * @example * xxx */ opUnionId?: string; /** * @example * online */ publishType?: string; static names(): { [key: string]: string } { return { appVersionId: 'appVersionId', miniAppOnPc: 'miniAppOnPc', opUnionId: 'opUnionId', publishType: 'publishType', }; } static types(): { [key: string]: any } { return { appVersionId: 'number', miniAppOnPc: 'boolean', opUnionId: 'string', publishType: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PublishInnerAppVersionResponseBody extends $tea.Model { result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PublishInnerAppVersionResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: PublishInnerAppVersionResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: PublishInnerAppVersionResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RebuildRoleScopeForAppRoleHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RebuildRoleScopeForAppRoleRequest extends $tea.Model { deptIdList?: number[]; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ scopeType?: string; /** * @remarks * This parameter is required. */ scopeVersion?: number; userIdList?: string[]; static names(): { [key: string]: string } { return { deptIdList: 'deptIdList', opUserId: 'opUserId', scopeType: 'scopeType', scopeVersion: 'scopeVersion', userIdList: 'userIdList', }; } static types(): { [key: string]: any } { return { deptIdList: { 'type': 'array', 'itemType': 'number' }, opUserId: 'string', scopeType: 'string', scopeVersion: 'number', userIdList: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RebuildRoleScopeForAppRoleResponseBody extends $tea.Model { /** * @example * 123 */ latestScopeVersion?: number; static names(): { [key: string]: string } { return { latestScopeVersion: 'latestScopeVersion', }; } static types(): { [key: string]: any } { return { latestScopeVersion: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RebuildRoleScopeForAppRoleResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: RebuildRoleScopeForAppRoleResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: RebuildRoleScopeForAppRoleResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RegisterCustomAppRoleHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RegisterCustomAppRoleRequest extends $tea.Model { /** * @example * false */ canManageRole?: boolean; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ roleName?: string; static names(): { [key: string]: string } { return { canManageRole: 'canManageRole', opUserId: 'opUserId', roleName: 'roleName', }; } static types(): { [key: string]: any } { return { canManageRole: 'boolean', opUserId: 'string', roleName: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RegisterCustomAppRoleResponseBody extends $tea.Model { /** * @example * 123 */ roleId?: number; /** * @example * 123123123 */ scopeVersion?: number; static names(): { [key: string]: string } { return { roleId: 'roleId', scopeVersion: 'scopeVersion', }; } static types(): { [key: string]: any } { return { roleId: 'number', scopeVersion: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RegisterCustomAppRoleResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: RegisterCustomAppRoleResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: RegisterCustomAppRoleResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveApaasAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveApaasAppRequest extends $tea.Model { /** * @remarks * This parameter is required. */ bizAppId?: string; /** * @remarks * This parameter is required. */ opUserId?: string; static names(): { [key: string]: string } { return { bizAppId: 'bizAppId', opUserId: 'opUserId', }; } static types(): { [key: string]: any } { return { bizAppId: 'string', opUserId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveApaasAppResponseBody extends $tea.Model { /** * @remarks * This parameter is required. */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveApaasAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: RemoveApaasAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: RemoveApaasAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveMemberForAppRoleHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveMemberForAppRoleRequest extends $tea.Model { deptIdList?: number[]; /** * @remarks * This parameter is required. */ opUserId?: string; /** * @remarks * This parameter is required. */ scopeVersion?: number; userIdList?: string[]; static names(): { [key: string]: string } { return { deptIdList: 'deptIdList', opUserId: 'opUserId', scopeVersion: 'scopeVersion', userIdList: 'userIdList', }; } static types(): { [key: string]: any } { return { deptIdList: { 'type': 'array', 'itemType': 'number' }, opUserId: 'string', scopeVersion: 'number', userIdList: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveMemberForAppRoleResponseBody extends $tea.Model { /** * @example * 123 */ latestScopeVersion?: number; static names(): { [key: string]: string } { return { latestScopeVersion: 'latestScopeVersion', }; } static types(): { [key: string]: any } { return { latestScopeVersion: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RemoveMemberForAppRoleResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: RemoveMemberForAppRoleResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: RemoveMemberForAppRoleResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RollbackInnerAppVersionHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RollbackInnerAppVersionRequest extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ appVersionId?: number; /** * @remarks * This parameter is required. * * @example * xxx */ opUnionId?: string; static names(): { [key: string]: string } { return { appVersionId: 'appVersionId', opUnionId: 'opUnionId', }; } static types(): { [key: string]: any } { return { appVersionId: 'number', opUnionId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RollbackInnerAppVersionResponseBody extends $tea.Model { result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class RollbackInnerAppVersionResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: RollbackInnerAppVersionResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: RollbackInnerAppVersionResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class SetMicroAppScopeHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class SetMicroAppScopeRequest extends $tea.Model { addDeptIds?: number[]; addRoleIds?: number[]; addUserIds?: string[]; delDeptIds?: number[]; delRoleIds?: number[]; delUserIds?: string[]; onlyAdminVisible?: boolean; static names(): { [key: string]: string } { return { addDeptIds: 'addDeptIds', addRoleIds: 'addRoleIds', addUserIds: 'addUserIds', delDeptIds: 'delDeptIds', delRoleIds: 'delRoleIds', delUserIds: 'delUserIds', onlyAdminVisible: 'onlyAdminVisible', }; } static types(): { [key: string]: any } { return { addDeptIds: { 'type': 'array', 'itemType': 'number' }, addRoleIds: { 'type': 'array', 'itemType': 'number' }, addUserIds: { 'type': 'array', 'itemType': 'string' }, delDeptIds: { 'type': 'array', 'itemType': 'number' }, delRoleIds: { 'type': 'array', 'itemType': 'number' }, delUserIds: { 'type': 'array', 'itemType': 'string' }, onlyAdminVisible: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class SetMicroAppScopeResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class SetMicroAppScopeResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: SetMicroAppScopeResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: SetMicroAppScopeResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateApaasAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateApaasAppRequest extends $tea.Model { /** * @remarks * This parameter is required. */ appIcon?: string; /** * @remarks * This parameter is required. */ appName?: string; appStatus?: number; /** * @remarks * This parameter is required. */ bizAppId?: string; /** * @remarks * This parameter is required. */ opUserId?: string; static names(): { [key: string]: string } { return { appIcon: 'appIcon', appName: 'appName', appStatus: 'appStatus', bizAppId: 'bizAppId', opUserId: 'opUserId', }; } static types(): { [key: string]: any } { return { appIcon: 'string', appName: 'string', appStatus: 'number', bizAppId: 'string', opUserId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateApaasAppResponseBody extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. */ bizAppId?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', bizAppId: 'bizAppId', }; } static types(): { [key: string]: any } { return { agentId: 'number', bizAppId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateApaasAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: UpdateApaasAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: UpdateApaasAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateAppRoleInfoHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateAppRoleInfoRequest extends $tea.Model { canManageRole?: boolean; newRoleName?: string; /** * @remarks * This parameter is required. */ opUserId?: string; static names(): { [key: string]: string } { return { canManageRole: 'canManageRole', newRoleName: 'newRoleName', opUserId: 'opUserId', }; } static types(): { [key: string]: any } { return { canManageRole: 'boolean', newRoleName: 'string', opUserId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateAppRoleInfoResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateAppRoleInfoResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: UpdateAppRoleInfoResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: UpdateAppRoleInfoResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateInnerAppHeaders extends $tea.Model { commonHeaders?: { [key: string]: string }; xAcsDingtalkAccessToken?: string; static names(): { [key: string]: string } { return { commonHeaders: 'commonHeaders', xAcsDingtalkAccessToken: 'x-acs-dingtalk-access-token', }; } static types(): { [key: string]: any } { return { commonHeaders: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, xAcsDingtalkAccessToken: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateInnerAppRequest extends $tea.Model { /** * @example * descxxx */ desc?: string; /** * @example * https://www.dingtalk.com */ homepageLink?: string; /** * @example * mediaxxx */ icon?: string; ipWhiteList?: string[]; /** * @example * namexx */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @remarks * This parameter is required. * * @example * xxxx */ opUnionId?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; static names(): { [key: string]: string } { return { desc: 'desc', homepageLink: 'homepageLink', icon: 'icon', ipWhiteList: 'ipWhiteList', name: 'name', ompLink: 'ompLink', opUnionId: 'opUnionId', pcHomepageLink: 'pcHomepageLink', }; } static types(): { [key: string]: any } { return { desc: 'string', homepageLink: 'string', icon: 'string', ipWhiteList: { 'type': 'array', 'itemType': 'string' }, name: 'string', ompLink: 'string', opUnionId: 'string', pcHomepageLink: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateInnerAppResponseBody extends $tea.Model { /** * @example * true */ result?: boolean; static names(): { [key: string]: string } { return { result: 'result', }; } static types(): { [key: string]: any } { return { result: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class UpdateInnerAppResponse extends $tea.Model { headers?: { [key: string]: string }; statusCode?: number; body?: UpdateInnerAppResponseBody; static names(): { [key: string]: string } { return { headers: 'headers', statusCode: 'statusCode', body: 'body', }; } static types(): { [key: string]: any } { return { headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' }, statusCode: 'number', body: UpdateInnerAppResponseBody, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppRolesToMemberRequestRoleList extends $tea.Model { /** * @remarks * This parameter is required. */ roleId?: number; /** * @remarks * This parameter is required. */ scopeVersion?: number; static names(): { [key: string]: string } { return { roleId: 'roleId', scopeVersion: 'scopeVersion', }; } static types(): { [key: string]: any } { return { roleId: 'number', scopeVersion: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class AddAppRolesToMemberResponseBodyResult extends $tea.Model { /** * @example * 123 */ latestScopeVersion?: number; /** * @example * 123 */ roleId?: number; /** * @example * userNoPrivilegeToManageApp */ subErrorCode?: string; /** * @example * 传入的角色范围数据版本号不合法 */ subErrorMsg?: string; /** * @example * true */ success?: boolean; static names(): { [key: string]: string } { return { latestScopeVersion: 'latestScopeVersion', roleId: 'roleId', subErrorCode: 'subErrorCode', subErrorMsg: 'subErrorMsg', success: 'success', }; } static types(): { [key: string]: any } { return { latestScopeVersion: 'number', roleId: 'number', subErrorCode: 'string', subErrorMsg: 'string', success: 'boolean', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetAppResourceUseInfoResponseBody extends $tea.Model { /** * @example * 202301 */ period?: string; /** * @example * 8511 */ usedNum?: number; /** * @example * 10000 */ quotaNum?: number; static names(): { [key: string]: string } { return { period: 'period', usedNum: 'usedNum', quotaNum: 'quotaNum', }; } static types(): { [key: string]: any } { return { period: 'string', usedNum: 'number', quotaNum: 'number', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class GetMicroAppScopeResponseBodyResult extends $tea.Model { /** * @remarks * This parameter is required. */ deptIds?: number[]; /** * @remarks * This parameter is required. */ onlyAdminVisible?: boolean; /** * @remarks * This parameter is required. */ roleIds?: number[]; /** * @remarks * This parameter is required. */ userIds?: string[]; static names(): { [key: string]: string } { return { deptIds: 'deptIds', onlyAdminVisible: 'onlyAdminVisible', roleIds: 'roleIds', userIds: 'userIds', }; } static types(): { [key: string]: any } { return { deptIds: { 'type': 'array', 'itemType': 'number' }, onlyAdminVisible: 'boolean', roleIds: { 'type': 'array', 'itemType': 'number' }, userIds: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllAppResponseBodyAppList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. * * @example * 111 */ appId?: number; /** * @remarks * This parameter is required. */ appStatus?: number; /** * @example * desc */ desc?: string; /** * @remarks * This parameter is required. * * @example * 0 */ developType?: number; h5PageType?: string; /** * @example * https://www.dingtalk.com */ homepageLink?: string; /** * @example * icon */ icon?: string; /** * @example * name */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appId: 'appId', appStatus: 'appStatus', desc: 'desc', developType: 'developType', h5PageType: 'h5PageType', homepageLink: 'homepageLink', icon: 'icon', name: 'name', ompLink: 'ompLink', pcHomepageLink: 'pcHomepageLink', }; } static types(): { [key: string]: any } { return { agentId: 'number', appId: 'number', appStatus: 'number', desc: 'string', developType: 'number', h5PageType: 'string', homepageLink: 'string', icon: 'string', name: 'string', ompLink: 'string', pcHomepageLink: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsResponseBodyAppListCoolAppInfo extends $tea.Model { coolAppCode?: string; name?: string; static names(): { [key: string]: string } { return { coolAppCode: 'coolAppCode', name: 'name', }; } static types(): { [key: string]: any } { return { coolAppCode: 'string', name: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsResponseBodyAppListRobotInfo extends $tea.Model { name?: string; robotCode?: string; static names(): { [key: string]: string } { return { name: 'name', robotCode: 'robotCode', }; } static types(): { [key: string]: any } { return { name: 'string', robotCode: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAllInnerAppsResponseBodyAppList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. * * @example * 111 */ appId?: number; /** * @remarks * This parameter is required. * * @example * 1 */ appStatus?: number; coolAppInfo?: ListAllInnerAppsResponseBodyAppListCoolAppInfo[]; /** * @example * desc */ desc?: string; /** * @remarks * This parameter is required. * * @example * 0 */ developType?: number; /** * @example * https://www.dingtalk.com */ homepageLink?: string; /** * @example * icon */ icon?: string; /** * @example * name */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; robotInfo?: ListAllInnerAppsResponseBodyAppListRobotInfo; static names(): { [key: string]: string } { return { agentId: 'agentId', appId: 'appId', appStatus: 'appStatus', coolAppInfo: 'coolAppInfo', desc: 'desc', developType: 'developType', homepageLink: 'homepageLink', icon: 'icon', name: 'name', ompLink: 'ompLink', pcHomepageLink: 'pcHomepageLink', robotInfo: 'robotInfo', }; } static types(): { [key: string]: any } { return { agentId: 'number', appId: 'number', appStatus: 'number', coolAppInfo: { 'type': 'array', 'itemType': ListAllInnerAppsResponseBodyAppListCoolAppInfo }, desc: 'string', developType: 'number', homepageLink: 'string', icon: 'string', name: 'string', ompLink: 'string', pcHomepageLink: 'string', robotInfo: ListAllInnerAppsResponseBodyAppListRobotInfo, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListAppRoleScopesResponseBodyDataList extends $tea.Model { /** * @example * false */ canManageRole?: boolean; deptIdList?: number[]; /** * @example * 123 */ roleId?: number; /** * @example * 财务 */ roleName?: string; /** * @example * PART_VISIBLE */ scopeType?: string; /** * @example * 123 */ scopeVersion?: number; userIdList?: string[]; static names(): { [key: string]: string } { return { canManageRole: 'canManageRole', deptIdList: 'deptIdList', roleId: 'roleId', roleName: 'roleName', scopeType: 'scopeType', scopeVersion: 'scopeVersion', userIdList: 'userIdList', }; } static types(): { [key: string]: any } { return { canManageRole: 'boolean', deptIdList: { 'type': 'array', 'itemType': 'number' }, roleId: 'number', roleName: 'string', scopeType: 'string', scopeVersion: 'number', userIdList: { 'type': 'array', 'itemType': 'string' }, }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppResponseBodyAppList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @example * desc */ desc?: string; /** * @example * https://www.dingtalk.com */ homepageLink?: string; /** * @example * icon */ icon?: string; /** * @example * name */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', desc: 'desc', homepageLink: 'homepageLink', icon: 'icon', name: 'name', ompLink: 'ompLink', pcHomepageLink: 'pcHomepageLink', }; } static types(): { [key: string]: any } { return { agentId: 'number', desc: 'string', homepageLink: 'string', icon: 'string', name: 'string', ompLink: 'string', pcHomepageLink: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListInnerAppVersionResponseBodyAppVersionList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 0.0.1 */ appVersion?: string; /** * @remarks * This parameter is required. * * @example * 1 */ appVersionId?: number; /** * @remarks * This parameter is required. * * @example * 0 */ appVersionType?: number; /** * @remarks * This parameter is required. * * @example * 2023-01-01 00:00:00 */ createTime?: string; entranceLink?: string; /** * @remarks * This parameter is required. */ miniAppId?: string; miniAppOnPc?: boolean; /** * @remarks * This parameter is required. * * @example * 2023-01-01 00:00:00 */ modifyTime?: string; static names(): { [key: string]: string } { return { appVersion: 'appVersion', appVersionId: 'appVersionId', appVersionType: 'appVersionType', createTime: 'createTime', entranceLink: 'entranceLink', miniAppId: 'miniAppId', miniAppOnPc: 'miniAppOnPc', modifyTime: 'modifyTime', }; } static types(): { [key: string]: any } { return { appVersion: 'string', appVersionId: 'number', appVersionType: 'number', createTime: 'string', entranceLink: 'string', miniAppId: 'string', miniAppOnPc: 'boolean', modifyTime: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListRoleInfoByUserResponseBodyResult extends $tea.Model { /** * @example * false */ canManageRole?: boolean; /** * @example * 123 */ roleId?: number; /** * @example * 财务 */ roleName?: string; static names(): { [key: string]: string } { return { canManageRole: 'canManageRole', roleId: 'roleId', roleName: 'roleName', }; } static types(): { [key: string]: any } { return { canManageRole: 'boolean', roleId: 'number', roleName: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUserVilebleAppResponseBodyAppListI18n extends $tea.Model { desc?: string; i18nKey?: string; name?: string; static names(): { [key: string]: string } { return { desc: 'desc', i18nKey: 'i18n_key', name: 'name', }; } static types(): { [key: string]: any } { return { desc: 'string', i18nKey: 'string', name: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class ListUserVilebleAppResponseBodyAppList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 1 */ agentId?: number; /** * @remarks * This parameter is required. * * @example * 111 */ appId?: number; /** * @remarks * This parameter is required. * * @example * 1 */ appStatus?: number; /** * @example * desc */ desc?: string; /** * @remarks * This parameter is required. * * @example * 0 */ developType?: number; /** * @example * https://www.dingtalk.com */ homepageLink?: string; i18n?: ListUserVilebleAppResponseBodyAppListI18n[]; /** * @example * icon */ icon?: string; /** * @example * name */ name?: string; /** * @example * https://www.dingtalk.com */ ompLink?: string; /** * @example * https://www.dingtalk.com */ pcHomepageLink?: string; /** * @example * unifiedAppId */ unifiedAppId?: string; static names(): { [key: string]: string } { return { agentId: 'agentId', appId: 'appId', appStatus: 'appStatus', desc: 'desc', developType: 'developType', homepageLink: 'homepageLink', i18n: 'i18n', icon: 'icon', name: 'name', ompLink: 'ompLink', pcHomepageLink: 'pcHomepageLink', unifiedAppId: 'unifiedAppId', }; } static types(): { [key: string]: any } { return { agentId: 'number', appId: 'number', appStatus: 'number', desc: 'string', developType: 'number', homepageLink: 'string', i18n: { 'type': 'array', 'itemType': ListUserVilebleAppResponseBodyAppListI18n }, icon: 'string', name: 'string', ompLink: 'string', pcHomepageLink: 'string', unifiedAppId: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export class PageInnerAppHistoryVersionResponseBodyMiniAppVersionList extends $tea.Model { /** * @remarks * This parameter is required. * * @example * 0.0.1 */ appVersion?: string; /** * @remarks * This parameter is required. * * @example * 1 */ appVersionId?: number; /** * @remarks * This parameter is required. * * @example * 0 */ appVersionType?: number; /** * @remarks * This parameter is required. * * @example * 2023-01-01 00:00:00 */ createTime?: string; /** * @example * 1 */ miniAppId?: string; /** * @remarks * This parameter is required. */ miniAppOnPc?: boolean; /** * @remarks * This parameter is required. * * @example * 2023-01-01 00:00:00 */ modifyTime?: string; static names(): { [key: string]: string } { return { appVersion: 'appVersion', appVersionId: 'appVersionId', appVersionType: 'appVersionType', createTime: 'createTime', miniAppId: 'miniAppId', miniAppOnPc: 'miniAppOnPc', modifyTime: 'modifyTime', }; } static types(): { [key: string]: any } { return { appVersion: 'string', appVersionId: 'number', appVersionType: 'number', createTime: 'string', miniAppId: 'string', miniAppOnPc: 'boolean', modifyTime: 'string', }; } constructor(map?: { [key: string]: any }) { super(map); } } export default class Client extends OpenApi { constructor(config: $OpenApi.Config) { super(config); let gatewayClient = new GatewayClient(); this._spi = gatewayClient; this._endpointRule = ""; if (Util.empty(this._endpoint)) { this._endpoint = "api.dingtalk.com"; } } /** * 给指定成员添加角色 * * @param request - AddAppRolesToMemberRequest * @param headers - AddAppRolesToMemberHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns AddAppRolesToMemberResponse */ async addAppRolesToMemberWithOptions(agentId: string, request: AddAppRolesToMemberRequest, headers: AddAppRolesToMemberHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.memberId)) { body["memberId"] = request.memberId; } if (!Util.isUnset(request.memberType)) { body["memberType"] = request.memberType; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.roleList)) { body["roleList"] = request.roleList; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "AddAppRolesToMember", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/members/roles`, method: "PUT", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AddAppRolesToMemberResponse({})); } /** * 给指定成员添加角色 * * @param request - AddAppRolesToMemberRequest * @returns AddAppRolesToMemberResponse */ async addAppRolesToMember(agentId: string, request: AddAppRolesToMemberRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new AddAppRolesToMemberHeaders({ }); return await this.addAppRolesToMemberWithOptions(agentId, request, headers, runtime); } /** * 添加应用到工作台分组 * * @param request - AddAppToWorkBenchGroupRequest * @param headers - AddAppToWorkBenchGroupHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns AddAppToWorkBenchGroupResponse */ async addAppToWorkBenchGroupWithOptions(agentId: string, request: AddAppToWorkBenchGroupRequest, headers: AddAppToWorkBenchGroupHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.componentId)) { body["componentId"] = request.componentId; } if (!Util.isUnset(request.ecologicalCorpId)) { body["ecologicalCorpId"] = request.ecologicalCorpId; } if (!Util.isUnset(request.opUnionId)) { body["opUnionId"] = request.opUnionId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "AddAppToWorkBenchGroup", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/addToWorkBenchGroup`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AddAppToWorkBenchGroupResponse({})); } /** * 添加应用到工作台分组 * * @param request - AddAppToWorkBenchGroupRequest * @returns AddAppToWorkBenchGroupResponse */ async addAppToWorkBenchGroup(agentId: string, request: AddAppToWorkBenchGroupRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new AddAppToWorkBenchGroupHeaders({ }); return await this.addAppToWorkBenchGroupWithOptions(agentId, request, headers, runtime); } /** * 给指定角色添加人员 * * @param request - AddMemberToAppRoleRequest * @param headers - AddMemberToAppRoleHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns AddMemberToAppRoleResponse */ async addMemberToAppRoleWithOptions(agentId: string, roleId: string, request: AddMemberToAppRoleRequest, headers: AddMemberToAppRoleHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.deptIdList)) { body["deptIdList"] = request.deptIdList; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.scopeVersion)) { body["scopeVersion"] = request.scopeVersion; } if (!Util.isUnset(request.userIdList)) { body["userIdList"] = request.userIdList; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "AddMemberToAppRole", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}/members`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AddMemberToAppRoleResponse({})); } /** * 给指定角色添加人员 * * @param request - AddMemberToAppRoleRequest * @returns AddMemberToAppRoleResponse */ async addMemberToAppRole(agentId: string, roleId: string, request: AddMemberToAppRoleRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new AddMemberToAppRoleHeaders({ }); return await this.addMemberToAppRoleWithOptions(agentId, roleId, request, headers, runtime); } /** * AnheiP * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AnheiPResponse */ async anheiPWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AnheiP", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/anheiP`, method: "GET", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AnheiPResponse({})); } /** * AnheiP * @returns AnheiPResponse */ async anheiP(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.anheiPWithOptions(headers, runtime); } /** * AnheiTest888 * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AnheiTest888Response */ async anheiTest888WithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AnheiTest888", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/anheiTest888`, method: "POST", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AnheiTest888Response({})); } /** * AnheiTest888 * @returns AnheiTest888Response */ async anheiTest888(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.anheiTest888WithOptions(headers, runtime); } /** * AnheiTestB * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AnheiTestBResponse */ async anheiTestBWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AnheiTestB", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/anheiTestB`, method: "PUT", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AnheiTestBResponse({})); } /** * AnheiTestB * @returns AnheiTestBResponse */ async anheiTestB(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.anheiTestBWithOptions(headers, runtime); } /** * 暗黑测试 * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AnheiTestNineResponse */ async anheiTestNineWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AnheiTestNine", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/anheiTestNine`, method: "POST", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AnheiTestNineResponse({})); } /** * 暗黑测试 * @returns AnheiTestNineResponse */ async anheiTestNine(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.anheiTestNineWithOptions(headers, runtime); } /** * 应用状态管理测试 * * @param request - AppStatusManagerTestRequest * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AppStatusManagerTestResponse */ async appStatusManagerTestWithOptions(request: AppStatusManagerTestRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.requestId)) { query["requestId"] = request.requestId; } let req = new $OpenApi.OpenApiRequest({ headers: headers, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "AppStatusManagerTest", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/manager/test`, method: "GET", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AppStatusManagerTestResponse({})); } /** * 应用状态管理测试 * * @param request - AppStatusManagerTestRequest * @returns AppStatusManagerTestResponse */ async appStatusManagerTest(request: AppStatusManagerTestRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.appStatusManagerTestWithOptions(request, headers, runtime); } /** * 能力开放中心录入测试数据 * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AyunTestResponse */ async ayunTestWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AyunTest", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/ayun/test`, method: "GET", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AyunTestResponse({})); } /** * 能力开放中心录入测试数据 * @returns AyunTestResponse */ async ayunTest(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.ayunTestWithOptions(headers, runtime); } /** * openAPI录入上线后的测试 * * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns AyunTestOnlineResponse */ async ayunTestOnlineWithOptions(headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { let req = new $OpenApi.OpenApiRequest({ headers: headers, }); let params = new $OpenApi.Params({ action: "AyunTestOnline", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/ayunTest`, method: "GET", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new AyunTestOnlineResponse({})); } /** * openAPI录入上线后的测试 * @returns AyunTestOnlineResponse */ async ayunTestOnline(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.ayunTestOnlineWithOptions(headers, runtime); } /** * 创建Apaas应用 * * @param request - CreateApaasAppRequest * @param headers - CreateApaasAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns CreateApaasAppResponse */ async createApaasAppWithOptions(request: CreateApaasAppRequest, headers: CreateApaasAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.appDesc)) { body["appDesc"] = request.appDesc; } if (!Util.isUnset(request.appIcon)) { body["appIcon"] = request.appIcon; } if (!Util.isUnset(request.appName)) { body["appName"] = request.appName; } if (!Util.isUnset(request.bizAppId)) { body["bizAppId"] = request.bizAppId; } if (!Util.isUnset(request.homepageEditLink)) { body["homepageEditLink"] = request.homepageEditLink; } if (!Util.isUnset(request.homepageLink)) { body["homepageLink"] = request.homepageLink; } if (!Util.isUnset(request.isShortCut)) { body["isShortCut"] = request.isShortCut; } if (!Util.isUnset(request.ompLink)) { body["ompLink"] = request.ompLink; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.pcHomepageEditLink)) { body["pcHomepageEditLink"] = request.pcHomepageEditLink; } if (!Util.isUnset(request.pcHomepageLink)) { body["pcHomepageLink"] = request.pcHomepageLink; } if (!Util.isUnset(request.templateKey)) { body["templateKey"] = request.templateKey; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "CreateApaasApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apaasApps`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new CreateApaasAppResponse({})); } /** * 创建Apaas应用 * * @param request - CreateApaasAppRequest * @returns CreateApaasAppResponse */ async createApaasApp(request: CreateApaasAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new CreateApaasAppHeaders({ }); return await this.createApaasAppWithOptions(request, headers, runtime); } /** * 创建企业内部应用 * * @param request - CreateInnerAppRequest * @param headers - CreateInnerAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns CreateInnerAppResponse */ async createInnerAppWithOptions(request: CreateInnerAppRequest, headers: CreateInnerAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.desc)) { body["desc"] = request.desc; } if (!Util.isUnset(request.developType)) { body["developType"] = request.developType; } if (!Util.isUnset(request.homepageLink)) { body["homepageLink"] = request.homepageLink; } if (!Util.isUnset(request.icon)) { body["icon"] = request.icon; } if (!Util.isUnset(request.ipWhiteList)) { body["ipWhiteList"] = request.ipWhiteList; } if (!Util.isUnset(request.name)) { body["name"] = request.name; } if (!Util.isUnset(request.ompLink)) { body["ompLink"] = request.ompLink; } if (!Util.isUnset(request.opUnionId)) { body["opUnionId"] = request.opUnionId; } if (!Util.isUnset(request.pcHomepageLink)) { body["pcHomepageLink"] = request.pcHomepageLink; } if (!Util.isUnset(request.scopeType)) { body["scopeType"] = request.scopeType; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "CreateInnerApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new CreateInnerAppResponse({})); } /** * 创建企业内部应用 * * @param request - CreateInnerAppRequest * @returns CreateInnerAppResponse */ async createInnerApp(request: CreateInnerAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new CreateInnerAppHeaders({ }); return await this.createInnerAppWithOptions(request, headers, runtime); } /** * 删除应用角色 * * @param request - DeleteAppRoleRequest * @param headers - DeleteAppRoleHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns DeleteAppRoleResponse */ async deleteAppRoleWithOptions(agentId: string, roleId: string, request: DeleteAppRoleRequest, headers: DeleteAppRoleHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.opUserId)) { query["opUserId"] = request.opUserId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "DeleteAppRole", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}`, method: "DELETE", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new DeleteAppRoleResponse({})); } /** * 删除应用角色 * * @param request - DeleteAppRoleRequest * @returns DeleteAppRoleResponse */ async deleteAppRole(agentId: string, roleId: string, request: DeleteAppRoleRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new DeleteAppRoleHeaders({ }); return await this.deleteAppRoleWithOptions(agentId, roleId, request, headers, runtime); } /** * 删除企业内部应用 * * @param request - DeleteInnerAppRequest * @param headers - DeleteInnerAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns DeleteInnerAppResponse */ async deleteInnerAppWithOptions(agentId: string, request: DeleteInnerAppRequest, headers: DeleteInnerAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.opUnionId)) { query["opUnionId"] = request.opUnionId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "DeleteInnerApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}`, method: "DELETE", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new DeleteInnerAppResponse({})); } /** * 删除企业内部应用 * * @param request - DeleteInnerAppRequest * @returns DeleteInnerAppResponse */ async deleteInnerApp(agentId: string, request: DeleteInnerAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new DeleteInnerAppHeaders({ }); return await this.deleteInnerAppWithOptions(agentId, request, headers, runtime); } /** * 查询Apaas应用 * * @param headers - GetApaasAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetApaasAppResponse */ async getApaasAppWithOptions(bizAppId: string, headers: GetApaasAppHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetApaasApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apaasApps/${bizAppId}`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetApaasAppResponse({})); } /** * 查询Apaas应用 * @returns GetApaasAppResponse */ async getApaasApp(bizAppId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetApaasAppHeaders({ }); return await this.getApaasAppWithOptions(bizAppId, headers, runtime); } /** * 获取应用资源用量信息 * * @param request - GetAppResourceUseInfoRequest * @param headers - GetAppResourceUseInfoHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetAppResourceUseInfoResponse */ async getAppResourceUseInfoWithOptions(request: GetAppResourceUseInfoRequest, headers: GetAppResourceUseInfoHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.benefitCode)) { query["benefitCode"] = request.benefitCode; } if (!Util.isUnset(request.endTime)) { query["endTime"] = request.endTime; } if (!Util.isUnset(request.periodType)) { query["periodType"] = request.periodType; } if (!Util.isUnset(request.startTime)) { query["startTime"] = request.startTime; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "GetAppResourceUseInfo", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/resources/useInfos`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "array", }); return $tea.cast(await this.execute(params, req, runtime), new GetAppResourceUseInfoResponse({})); } /** * 获取应用资源用量信息 * * @param request - GetAppResourceUseInfoRequest * @returns GetAppResourceUseInfoResponse */ async getAppResourceUseInfo(request: GetAppResourceUseInfoRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetAppResourceUseInfoHeaders({ }); return await this.getAppResourceUseInfoWithOptions(request, headers, runtime); } /** * 查询指定角色的角色范围 * * @param headers - GetAppRoleScopeByRoleIdHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetAppRoleScopeByRoleIdResponse */ async getAppRoleScopeByRoleIdWithOptions(agentId: string, roleId: string, headers: GetAppRoleScopeByRoleIdHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetAppRoleScopeByRoleId", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}/scopes`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetAppRoleScopeByRoleIdResponse({})); } /** * 查询指定角色的角色范围 * @returns GetAppRoleScopeByRoleIdResponse */ async getAppRoleScopeByRoleId(agentId: string, roleId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetAppRoleScopeByRoleIdHeaders({ }); return await this.getAppRoleScopeByRoleIdWithOptions(agentId, roleId, headers, runtime); } /** * 获取企业内部应用 * * @param headers - GetInnerAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetInnerAppResponse */ async getInnerAppWithOptions(agentId: string, headers: GetInnerAppHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetInnerApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/inner/${agentId}`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetInnerAppResponse({})); } /** * 获取企业内部应用 * @returns GetInnerAppResponse */ async getInnerApp(agentId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetInnerAppHeaders({ }); return await this.getInnerAppWithOptions(agentId, headers, runtime); } /** * 获取企业内部应用信息 * * @param headers - GetInnerAppInfoHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetInnerAppInfoResponse */ async getInnerAppInfoWithOptions(agentId: string, headers: GetInnerAppInfoHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetInnerAppInfo", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/innerapps/${agentId}`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetInnerAppInfoResponse({})); } /** * 获取企业内部应用信息 * @returns GetInnerAppInfoResponse */ async getInnerAppInfo(agentId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetInnerAppInfoHeaders({ }); return await this.getInnerAppInfoWithOptions(agentId, headers, runtime); } /** * 获取应用可见范围 * * @param headers - GetMicroAppScopeHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetMicroAppScopeResponse */ async getMicroAppScopeWithOptions(agentId: string, headers: GetMicroAppScopeHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetMicroAppScope", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/scopes`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetMicroAppScopeResponse({})); } /** * 获取应用可见范围 * @returns GetMicroAppScopeResponse */ async getMicroAppScope(agentId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetMicroAppScopeHeaders({ }); return await this.getMicroAppScopeWithOptions(agentId, headers, runtime); } /** * 获取用户对应用的管理权限 * * @param headers - GetMicroAppUserAccessHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetMicroAppUserAccessResponse */ async getMicroAppUserAccessWithOptions(agentId: string, userId: string, headers: GetMicroAppUserAccessHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetMicroAppUserAccess", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/users/${userId}/adminAccess`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetMicroAppUserAccessResponse({})); } /** * 获取用户对应用的管理权限 * @returns GetMicroAppUserAccessResponse */ async getMicroAppUserAccess(agentId: string, userId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetMicroAppUserAccessHeaders({ }); return await this.getMicroAppUserAccessWithOptions(agentId, userId, headers, runtime); } /** * 用户是否拥有开发者权限 * * @param headers - GetUserAppDevAccessHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns GetUserAppDevAccessResponse */ async getUserAppDevAccessWithOptions(userId: string, headers: GetUserAppDevAccessHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "GetUserAppDevAccess", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/users/${userId}/devAccesses`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetUserAppDevAccessResponse({})); } /** * 用户是否拥有开发者权限 * @returns GetUserAppDevAccessResponse */ async getUserAppDevAccess(userId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new GetUserAppDevAccessHeaders({ }); return await this.getUserAppDevAccessWithOptions(userId, headers, runtime); } /** * 获取版本-仅用于测试 * * @param request - GetVersionInfoRequest * @param headers - map * @param runtime - runtime options for this request RuntimeOptions * @returns GetVersionInfoResponse */ async getVersionInfoWithOptions(request: GetVersionInfoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.unifiedAppId)) { query["unifiedAppId"] = request.unifiedAppId; } if (!Util.isUnset(request.versionId)) { query["versionId"] = request.versionId; } let req = new $OpenApi.OpenApiRequest({ headers: headers, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "GetVersionInfo", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/getVersionInfo`, method: "GET", authType: "Anonymous", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new GetVersionInfoResponse({})); } /** * 获取版本-仅用于测试 * * @param request - GetVersionInfoRequest * @returns GetVersionInfoResponse */ async getVersionInfo(request: GetVersionInfoRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers : {[key: string ]: string} = { }; return await this.getVersionInfoWithOptions(request, headers, runtime); } /** * 判断人员是否在应用的可见范围内 * * @param request - IsOrgMicroAppVisibleByUserIdRequest * @param headers - IsOrgMicroAppVisibleByUserIdHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns IsOrgMicroAppVisibleByUserIdResponse */ async isOrgMicroAppVisibleByUserIdWithOptions(request: IsOrgMicroAppVisibleByUserIdRequest, headers: IsOrgMicroAppVisibleByUserIdHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.appId)) { body["appId"] = request.appId; } if (!Util.isUnset(request.id)) { body["id"] = request.id; } if (!Util.isUnset(request.type)) { body["type"] = request.type; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "IsOrgMicroAppVisibleByUserId", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/visibleScopes/query`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new IsOrgMicroAppVisibleByUserIdResponse({})); } /** * 判断人员是否在应用的可见范围内 * * @param request - IsOrgMicroAppVisibleByUserIdRequest * @returns IsOrgMicroAppVisibleByUserIdResponse */ async isOrgMicroAppVisibleByUserId(request: IsOrgMicroAppVisibleByUserIdRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new IsOrgMicroAppVisibleByUserIdHeaders({ }); return await this.isOrgMicroAppVisibleByUserIdWithOptions(request, headers, runtime); } /** * 获取企业所有应用列表 * * @param headers - ListAllAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListAllAppResponse */ async listAllAppWithOptions(headers: ListAllAppHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListAllApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/allApps`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListAllAppResponse({})); } /** * 获取企业所有应用列表 * @returns ListAllAppResponse */ async listAllApp(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListAllAppHeaders({ }); return await this.listAllAppWithOptions(headers, runtime); } /** * 获取企业所有内部应用列表 * * @param headers - ListAllInnerAppsHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListAllInnerAppsResponse */ async listAllInnerAppsWithOptions(headers: ListAllInnerAppsHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListAllInnerApps", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/allInnerApps`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListAllInnerAppsResponse({})); } /** * 获取企业所有内部应用列表 * @returns ListAllInnerAppsResponse */ async listAllInnerApps(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListAllInnerAppsHeaders({ }); return await this.listAllInnerAppsWithOptions(headers, runtime); } /** * 获取单个企业应用信息 * * @param headers - ListAppByClientIdHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListAppByClientIdResponse */ async listAppByClientIdWithOptions(headers: ListAppByClientIdHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListAppByClientId", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/app/detail`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListAppByClientIdResponse({})); } /** * 获取单个企业应用信息 * @returns ListAppByClientIdResponse */ async listAppByClientId(): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListAppByClientIdHeaders({ }); return await this.listAppByClientIdWithOptions(headers, runtime); } /** * 获取企业应用的角色完整信息 * * @param request - ListAppRoleScopesRequest * @param headers - ListAppRoleScopesHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListAppRoleScopesResponse */ async listAppRoleScopesWithOptions(agentId: string, request: ListAppRoleScopesRequest, headers: ListAppRoleScopesHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.nextToken)) { query["nextToken"] = request.nextToken; } if (!Util.isUnset(request.size)) { query["size"] = request.size; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "ListAppRoleScopes", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListAppRoleScopesResponse({})); } /** * 获取企业应用的角色完整信息 * * @param request - ListAppRoleScopesRequest * @returns ListAppRoleScopesResponse */ async listAppRoleScopes(agentId: string, request: ListAppRoleScopesRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListAppRoleScopesHeaders({ }); return await this.listAppRoleScopesWithOptions(agentId, request, headers, runtime); } /** * 列出企业内部H5应用 * * @param request - ListInnerAppRequest * @param headers - ListInnerAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListInnerAppResponse */ async listInnerAppWithOptions(request: ListInnerAppRequest, headers: ListInnerAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.ecologicalCorpId)) { query["ecologicalCorpId"] = request.ecologicalCorpId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "ListInnerApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListInnerAppResponse({})); } /** * 列出企业内部H5应用 * * @param request - ListInnerAppRequest * @returns ListInnerAppResponse */ async listInnerApp(request: ListInnerAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListInnerAppHeaders({ }); return await this.listInnerAppWithOptions(request, headers, runtime); } /** * 获取企业内部小程序的版本列表 * * @param headers - ListInnerAppVersionHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListInnerAppVersionResponse */ async listInnerAppVersionWithOptions(agentId: string, headers: ListInnerAppVersionHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListInnerAppVersion", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/innerMiniApps/${agentId}/versions`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListInnerAppVersionResponse({})); } /** * 获取企业内部小程序的版本列表 * @returns ListInnerAppVersionResponse */ async listInnerAppVersion(agentId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListInnerAppVersionHeaders({ }); return await this.listInnerAppVersionWithOptions(agentId, headers, runtime); } /** * 获取用户在应用中的角色信息列表 * * @param headers - ListRoleInfoByUserHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListRoleInfoByUserResponse */ async listRoleInfoByUserWithOptions(agentId: string, userId: string, headers: ListRoleInfoByUserHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListRoleInfoByUser", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/users/${userId}/roles`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListRoleInfoByUserResponse({})); } /** * 获取用户在应用中的角色信息列表 * @returns ListRoleInfoByUserResponse */ async listRoleInfoByUser(agentId: string, userId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListRoleInfoByUserHeaders({ }); return await this.listRoleInfoByUserWithOptions(agentId, userId, headers, runtime); } /** * 列出用户可见的企业应用 * * @param headers - ListUserVilebleAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns ListUserVilebleAppResponse */ async listUserVilebleAppWithOptions(userId: string, headers: ListUserVilebleAppHeaders, runtime: $Util.RuntimeOptions): Promise { let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, }); let params = new $OpenApi.Params({ action: "ListUserVilebleApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/users/${userId}/apps`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new ListUserVilebleAppResponse({})); } /** * 列出用户可见的企业应用 * @returns ListUserVilebleAppResponse */ async listUserVilebleApp(userId: string): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new ListUserVilebleAppHeaders({ }); return await this.listUserVilebleAppWithOptions(userId, headers, runtime); } /** * 获取企业内部小程序历史版本列表 * * @param request - PageInnerAppHistoryVersionRequest * @param headers - PageInnerAppHistoryVersionHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns PageInnerAppHistoryVersionResponse */ async pageInnerAppHistoryVersionWithOptions(agentId: string, request: PageInnerAppHistoryVersionRequest, headers: PageInnerAppHistoryVersionHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let query : {[key: string ]: any} = { }; if (!Util.isUnset(request.pageNumber)) { query["pageNumber"] = request.pageNumber; } if (!Util.isUnset(request.pageSize)) { query["pageSize"] = request.pageSize; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, query: OpenApiUtil.query(query), }); let params = new $OpenApi.Params({ action: "PageInnerAppHistoryVersion", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/innerMiniApps/${agentId}/historyVersions`, method: "GET", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new PageInnerAppHistoryVersionResponse({})); } /** * 获取企业内部小程序历史版本列表 * * @param request - PageInnerAppHistoryVersionRequest * @returns PageInnerAppHistoryVersionResponse */ async pageInnerAppHistoryVersion(agentId: string, request: PageInnerAppHistoryVersionRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new PageInnerAppHistoryVersionHeaders({ }); return await this.pageInnerAppHistoryVersionWithOptions(agentId, request, headers, runtime); } /** * 发布企业内部小程序版本 * * @param request - PublishInnerAppVersionRequest * @param headers - PublishInnerAppVersionHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns PublishInnerAppVersionResponse */ async publishInnerAppVersionWithOptions(agentId: string, request: PublishInnerAppVersionRequest, headers: PublishInnerAppVersionHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.appVersionId)) { body["appVersionId"] = request.appVersionId; } if (!Util.isUnset(request.miniAppOnPc)) { body["miniAppOnPc"] = request.miniAppOnPc; } if (!Util.isUnset(request.opUnionId)) { body["opUnionId"] = request.opUnionId; } if (!Util.isUnset(request.publishType)) { body["publishType"] = request.publishType; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "PublishInnerAppVersion", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/innerMiniApps/${agentId}/versions/publish`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new PublishInnerAppVersionResponse({})); } /** * 发布企业内部小程序版本 * * @param request - PublishInnerAppVersionRequest * @returns PublishInnerAppVersionResponse */ async publishInnerAppVersion(agentId: string, request: PublishInnerAppVersionRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new PublishInnerAppVersionHeaders({ }); return await this.publishInnerAppVersionWithOptions(agentId, request, headers, runtime); } /** * 重设角色范围 * * @param request - RebuildRoleScopeForAppRoleRequest * @param headers - RebuildRoleScopeForAppRoleHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns RebuildRoleScopeForAppRoleResponse */ async rebuildRoleScopeForAppRoleWithOptions(agentId: string, roleId: string, request: RebuildRoleScopeForAppRoleRequest, headers: RebuildRoleScopeForAppRoleHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.deptIdList)) { body["deptIdList"] = request.deptIdList; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.scopeType)) { body["scopeType"] = request.scopeType; } if (!Util.isUnset(request.scopeVersion)) { body["scopeVersion"] = request.scopeVersion; } if (!Util.isUnset(request.userIdList)) { body["userIdList"] = request.userIdList; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "RebuildRoleScopeForAppRole", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}/scopes/rebuild`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new RebuildRoleScopeForAppRoleResponse({})); } /** * 重设角色范围 * * @param request - RebuildRoleScopeForAppRoleRequest * @returns RebuildRoleScopeForAppRoleResponse */ async rebuildRoleScopeForAppRole(agentId: string, roleId: string, request: RebuildRoleScopeForAppRoleRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new RebuildRoleScopeForAppRoleHeaders({ }); return await this.rebuildRoleScopeForAppRoleWithOptions(agentId, roleId, request, headers, runtime); } /** * 注册自定义应用角色 * * @param request - RegisterCustomAppRoleRequest * @param headers - RegisterCustomAppRoleHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns RegisterCustomAppRoleResponse */ async registerCustomAppRoleWithOptions(agentId: string, request: RegisterCustomAppRoleRequest, headers: RegisterCustomAppRoleHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.canManageRole)) { body["canManageRole"] = request.canManageRole; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.roleName)) { body["roleName"] = request.roleName; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "RegisterCustomAppRole", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new RegisterCustomAppRoleResponse({})); } /** * 注册自定义应用角色 * * @param request - RegisterCustomAppRoleRequest * @returns RegisterCustomAppRoleResponse */ async registerCustomAppRole(agentId: string, request: RegisterCustomAppRoleRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new RegisterCustomAppRoleHeaders({ }); return await this.registerCustomAppRoleWithOptions(agentId, request, headers, runtime); } /** * 删除apaas应用 * * @param request - RemoveApaasAppRequest * @param headers - RemoveApaasAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns RemoveApaasAppResponse */ async removeApaasAppWithOptions(request: RemoveApaasAppRequest, headers: RemoveApaasAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.bizAppId)) { body["bizAppId"] = request.bizAppId; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "RemoveApaasApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apaasApps/remove`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new RemoveApaasAppResponse({})); } /** * 删除apaas应用 * * @param request - RemoveApaasAppRequest * @returns RemoveApaasAppResponse */ async removeApaasApp(request: RemoveApaasAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new RemoveApaasAppHeaders({ }); return await this.removeApaasAppWithOptions(request, headers, runtime); } /** * 删除指定角色下的成员 * * @param request - RemoveMemberForAppRoleRequest * @param headers - RemoveMemberForAppRoleHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns RemoveMemberForAppRoleResponse */ async removeMemberForAppRoleWithOptions(agentId: string, roleId: string, request: RemoveMemberForAppRoleRequest, headers: RemoveMemberForAppRoleHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.deptIdList)) { body["deptIdList"] = request.deptIdList; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } if (!Util.isUnset(request.scopeVersion)) { body["scopeVersion"] = request.scopeVersion; } if (!Util.isUnset(request.userIdList)) { body["userIdList"] = request.userIdList; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "RemoveMemberForAppRole", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}/members/batchRemove`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new RemoveMemberForAppRoleResponse({})); } /** * 删除指定角色下的成员 * * @param request - RemoveMemberForAppRoleRequest * @returns RemoveMemberForAppRoleResponse */ async removeMemberForAppRole(agentId: string, roleId: string, request: RemoveMemberForAppRoleRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new RemoveMemberForAppRoleHeaders({ }); return await this.removeMemberForAppRoleWithOptions(agentId, roleId, request, headers, runtime); } /** * 回滚企业内部小程序版本 * * @param request - RollbackInnerAppVersionRequest * @param headers - RollbackInnerAppVersionHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns RollbackInnerAppVersionResponse */ async rollbackInnerAppVersionWithOptions(agentId: string, request: RollbackInnerAppVersionRequest, headers: RollbackInnerAppVersionHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.appVersionId)) { body["appVersionId"] = request.appVersionId; } if (!Util.isUnset(request.opUnionId)) { body["opUnionId"] = request.opUnionId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "RollbackInnerAppVersion", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/innerMiniApps/${agentId}/versions/rollback`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new RollbackInnerAppVersionResponse({})); } /** * 回滚企业内部小程序版本 * * @param request - RollbackInnerAppVersionRequest * @returns RollbackInnerAppVersionResponse */ async rollbackInnerAppVersion(agentId: string, request: RollbackInnerAppVersionRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new RollbackInnerAppVersionHeaders({ }); return await this.rollbackInnerAppVersionWithOptions(agentId, request, headers, runtime); } /** * 设置应用可见范围 * * @param request - SetMicroAppScopeRequest * @param headers - SetMicroAppScopeHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns SetMicroAppScopeResponse */ async setMicroAppScopeWithOptions(agentId: string, request: SetMicroAppScopeRequest, headers: SetMicroAppScopeHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.addDeptIds)) { body["addDeptIds"] = request.addDeptIds; } if (!Util.isUnset(request.addRoleIds)) { body["addRoleIds"] = request.addRoleIds; } if (!Util.isUnset(request.addUserIds)) { body["addUserIds"] = request.addUserIds; } if (!Util.isUnset(request.delDeptIds)) { body["delDeptIds"] = request.delDeptIds; } if (!Util.isUnset(request.delRoleIds)) { body["delRoleIds"] = request.delRoleIds; } if (!Util.isUnset(request.delUserIds)) { body["delUserIds"] = request.delUserIds; } if (!Util.isUnset(request.onlyAdminVisible)) { body["onlyAdminVisible"] = request.onlyAdminVisible; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "SetMicroAppScope", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/scopes`, method: "POST", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new SetMicroAppScopeResponse({})); } /** * 设置应用可见范围 * * @param request - SetMicroAppScopeRequest * @returns SetMicroAppScopeResponse */ async setMicroAppScope(agentId: string, request: SetMicroAppScopeRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new SetMicroAppScopeHeaders({ }); return await this.setMicroAppScopeWithOptions(agentId, request, headers, runtime); } /** * 更新apaas应用 * * @param request - UpdateApaasAppRequest * @param headers - UpdateApaasAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns UpdateApaasAppResponse */ async updateApaasAppWithOptions(request: UpdateApaasAppRequest, headers: UpdateApaasAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.appIcon)) { body["appIcon"] = request.appIcon; } if (!Util.isUnset(request.appName)) { body["appName"] = request.appName; } if (!Util.isUnset(request.appStatus)) { body["appStatus"] = request.appStatus; } if (!Util.isUnset(request.bizAppId)) { body["bizAppId"] = request.bizAppId; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "UpdateApaasApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apaasApps`, method: "PUT", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new UpdateApaasAppResponse({})); } /** * 更新apaas应用 * * @param request - UpdateApaasAppRequest * @returns UpdateApaasAppResponse */ async updateApaasApp(request: UpdateApaasAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new UpdateApaasAppHeaders({ }); return await this.updateApaasAppWithOptions(request, headers, runtime); } /** * 更新应用角色信息 * * @param request - UpdateAppRoleInfoRequest * @param headers - UpdateAppRoleInfoHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns UpdateAppRoleInfoResponse */ async updateAppRoleInfoWithOptions(agentId: string, roleId: string, request: UpdateAppRoleInfoRequest, headers: UpdateAppRoleInfoHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.canManageRole)) { body["canManageRole"] = request.canManageRole; } if (!Util.isUnset(request.newRoleName)) { body["newRoleName"] = request.newRoleName; } if (!Util.isUnset(request.opUserId)) { body["opUserId"] = request.opUserId; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "UpdateAppRoleInfo", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}/roles/${roleId}`, method: "PUT", authType: "AK", style: "ROA", reqBodyType: "json", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new UpdateAppRoleInfoResponse({})); } /** * 更新应用角色信息 * * @param request - UpdateAppRoleInfoRequest * @returns UpdateAppRoleInfoResponse */ async updateAppRoleInfo(agentId: string, roleId: string, request: UpdateAppRoleInfoRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new UpdateAppRoleInfoHeaders({ }); return await this.updateAppRoleInfoWithOptions(agentId, roleId, request, headers, runtime); } /** * 更新企业内部应用 * * @param request - UpdateInnerAppRequest * @param headers - UpdateInnerAppHeaders * @param runtime - runtime options for this request RuntimeOptions * @returns UpdateInnerAppResponse */ async updateInnerAppWithOptions(agentId: string, request: UpdateInnerAppRequest, headers: UpdateInnerAppHeaders, runtime: $Util.RuntimeOptions): Promise { Util.validateModel(request); let body : {[key: string ]: any} = { }; if (!Util.isUnset(request.desc)) { body["desc"] = request.desc; } if (!Util.isUnset(request.homepageLink)) { body["homepageLink"] = request.homepageLink; } if (!Util.isUnset(request.icon)) { body["icon"] = request.icon; } if (!Util.isUnset(request.ipWhiteList)) { body["ipWhiteList"] = request.ipWhiteList; } if (!Util.isUnset(request.name)) { body["name"] = request.name; } if (!Util.isUnset(request.ompLink)) { body["ompLink"] = request.ompLink; } if (!Util.isUnset(request.opUnionId)) { body["opUnionId"] = request.opUnionId; } if (!Util.isUnset(request.pcHomepageLink)) { body["pcHomepageLink"] = request.pcHomepageLink; } let realHeaders : {[key: string ]: string} = { }; if (!Util.isUnset(headers.commonHeaders)) { realHeaders = headers.commonHeaders; } if (!Util.isUnset(headers.xAcsDingtalkAccessToken)) { realHeaders["x-acs-dingtalk-access-token"] = Util.toJSONString(headers.xAcsDingtalkAccessToken); } let req = new $OpenApi.OpenApiRequest({ headers: realHeaders, body: OpenApiUtil.parseToMap(body), }); let params = new $OpenApi.Params({ action: "UpdateInnerApp", version: "microApp_1.0", protocol: "HTTP", pathname: `/v1.0/microApp/apps/${agentId}`, method: "PUT", authType: "AK", style: "ROA", reqBodyType: "none", bodyType: "json", }); return $tea.cast(await this.execute(params, req, runtime), new UpdateInnerAppResponse({})); } /** * 更新企业内部应用 * * @param request - UpdateInnerAppRequest * @returns UpdateInnerAppResponse */ async updateInnerApp(agentId: string, request: UpdateInnerAppRequest): Promise { let runtime = new $Util.RuntimeOptions({ }); let headers = new UpdateInnerAppHeaders({ }); return await this.updateInnerAppWithOptions(agentId, request, headers, runtime); } }