- 添加输入验证码接口及请求和响应模型 - 添加重新发送验证码接口及请求和响应模型 - 调整Token相关接口及模型中的字段名tokenName为name - 更新Token列表接口查询参数tokenName为name,status类型调整为枚举 - 维护API文档,补充新增接口的详细说明和示例 - 更新相关类型定义,完善请求参数接口和响应接口 - 修正部分模型字段名以统一接口字段规范
25 lines
506 B
TypeScript
25 lines
506 B
TypeScript
/* tslint:disable */
|
|
|
|
/**
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document:
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
export interface KamiApiCamelOilV1InputVerificationCodeReq {
|
|
/**
|
|
* Token ID
|
|
*/
|
|
tokenId: number;
|
|
/**
|
|
* 验证码
|
|
*/
|
|
code: string;
|
|
}
|