功能新增: - OSS 存储使用情况显示(文件页面) - OSS 当日流量统计(阿里云云监控API) - 分享页面路由修复(/s/xxx 格式支持) Bug修复: - 修复分享页面资源路径(相对路径改绝对路径) - 修复分享码获取逻辑(支持路径格式) - 修复OSS配额undefined显示问题 - 修复登录流程OSS配置检查 - 修复文件数为null时的显示问题 依赖更新: - 添加 @alicloud/cms20190101 云监控SDK - 添加 @alicloud/openapi-client Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
123 lines
3.4 KiB
TypeScript
123 lines
3.4 KiB
TypeScript
import * as $dara from '@darabonba/typescript';
|
|
export declare class DescribeCustomEventAttributeResponseBodyCustomEventsCustomEvent extends $dara.Model {
|
|
/**
|
|
* @remarks
|
|
* The content of the event.
|
|
*
|
|
* @example
|
|
* requestId:4975A6F3-19AC-4C01-BAD2-034DA07FEBB5, info:{"autoPay":false,"autoUseCoupon":false,"bid":"26842","buyerId":118935342242****,"commodities":[{"aliyunProduceCode":"cms","chargeType":"PREPAY","commodityCode":"cms_call_num","components":[{"componentCode":"phone_count","instanceProperty":[{"code":"phone_count","value":"500"}],"moduleAttrStatus":1}],"duration":6,"free":false,"orderParams":{"aliyunProduceCode":"cms"},"orderType":"BUY","prePayPostCharge":false,"pricingCycle":"Month","quantity":1,"refundSpecCode":"","renewChange":false,"specCode":"cms_call_num","specUpdate":false,"syncToSubscription":false,"upgradeInquireFinancialValue":true}],"fromApp":"commonbuy","orderParams":{"priceCheck":"true"},"payerId":118935342242****,"requestId":"ade3ad32-f58b-45d7-add4-ac542be3d8ec","skipChannel":false,"userId":118935342242****}
|
|
*/
|
|
content?: string;
|
|
/**
|
|
* @remarks
|
|
* The ID of the application group.
|
|
*
|
|
* @example
|
|
* 12345
|
|
*/
|
|
groupId?: string;
|
|
/**
|
|
* @remarks
|
|
* The event ID.
|
|
*
|
|
* @example
|
|
* 123
|
|
*/
|
|
id?: string;
|
|
/**
|
|
* @remarks
|
|
* The event name.
|
|
*
|
|
* @example
|
|
* BABEL_CHECK
|
|
*/
|
|
name?: string;
|
|
/**
|
|
* @remarks
|
|
* The time when the event occurred.
|
|
*
|
|
* This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.
|
|
*
|
|
* @example
|
|
* 1552199984000
|
|
*/
|
|
time?: string;
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|
|
export declare class DescribeCustomEventAttributeResponseBodyCustomEvents extends $dara.Model {
|
|
customEvent?: DescribeCustomEventAttributeResponseBodyCustomEventsCustomEvent[];
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|
|
export declare class DescribeCustomEventAttributeResponseBody extends $dara.Model {
|
|
/**
|
|
* @remarks
|
|
* The status code.
|
|
*
|
|
* > The status code 200 indicates that the request was successful.
|
|
*
|
|
* @example
|
|
* 200
|
|
*/
|
|
code?: string;
|
|
/**
|
|
* @remarks
|
|
* The event details.
|
|
*/
|
|
customEvents?: DescribeCustomEventAttributeResponseBodyCustomEvents;
|
|
/**
|
|
* @remarks
|
|
* The returned message.
|
|
*
|
|
* @example
|
|
* userId:173651113438**** and name:"BABEL_CHECK"
|
|
*/
|
|
message?: string;
|
|
/**
|
|
* @remarks
|
|
* The request ID.
|
|
*
|
|
* @example
|
|
* 60912C8D-B340-4253-ADE7-61ACDFD25CFC
|
|
*/
|
|
requestId?: string;
|
|
/**
|
|
* @remarks
|
|
* Indicates whether the request was successful. Valid values: Valid values:
|
|
*
|
|
* * true
|
|
* * false
|
|
*
|
|
* @example
|
|
* true
|
|
*/
|
|
success?: string;
|
|
static names(): {
|
|
[key: string]: string;
|
|
};
|
|
static types(): {
|
|
[key: string]: any;
|
|
};
|
|
validate(): void;
|
|
constructor(map?: {
|
|
[key: string]: any;
|
|
});
|
|
}
|