/**
* `qianapp://` 协议的 `action` 已知值常量。
*
* SDK 不对 action 做枚举翻译,原值透出。常量便于客户用 `===` 比较,
* 同时建议在 switch 的 default 分支兜底处理未知值以保持兼容。
*/
export class SignAction {
/** 填写流程完成 */
public static readonly FILL: string = 'fill';
/** 签署流程完成 */
public static readonly SIGN: string = 'sign';
/** 主动拒绝填写 */
public static readonly REJECT_FILL: string = 'reject_fill';
/** 主动拒绝签署 */
public static readonly REJECT_SIGN: string = 'reject_sign';
/** 仅查看(无填写/签署动作) */
public static readonly VIEW: string = 'view';
// ArkTS 类禁止实例化
private constructor() {}
}
|