feat: 添加Walmart相关API文档,包括账户、订单、支付等接口的详细描述和示例
This commit is contained in:
9514
src/api/generated/docs/DefaultApi.md
Normal file
9514
src/api/generated/docs/DefaultApi.md
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,21 @@
|
||||
# KamiApiCardInfoWalmartV1AccountCookieBatchCheckRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------- | -------------------------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **msg** | **string** | 导入结果 | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiApiCardInfoWalmartV1AccountCookieBatchInfo>**](KamiApiCardInfoWalmartV1AccountCookieBatchInfo.md) | 导入结果 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountCookieBatchCheckRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountCookieBatchCheckRes = {
|
||||
msg,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,35 @@
|
||||
# KamiApiCardInfoWalmartV1AccountCookieBatchInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------ | ----------- | -------------- | --------------------------------- |
|
||||
| **username** | **string** | 用户名 | [optional] [default to undefined] |
|
||||
| **nickname** | **string** | 昵称 | [optional] [default to undefined] |
|
||||
| **balance** | **number** | 余额 | [optional] [default to undefined] |
|
||||
| **isExist** | **boolean** | 是否存在系统中 | [optional] [default to undefined] |
|
||||
| **isAvailable** | **boolean** | 是否可用 | [optional] [default to undefined] |
|
||||
| **name** | **string** | 别名 | [optional] [default to undefined] |
|
||||
| **cookie** | **string** | cookie | [optional] [default to undefined] |
|
||||
| **maxAmountLimit** | **number** | 最大充值限制 | [optional] [default to undefined] |
|
||||
| **maxCountLimit** | **number** | 最大充值次数 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountCookieBatchInfo } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountCookieBatchInfo = {
|
||||
username,
|
||||
nickname,
|
||||
balance,
|
||||
isExist,
|
||||
isAvailable,
|
||||
name,
|
||||
cookie,
|
||||
maxAmountLimit,
|
||||
maxCountLimit
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,27 @@
|
||||
# KamiApiCardInfoWalmartV1AccountCookieCheckRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ----------- | -------------- | --------------------------------- |
|
||||
| **username** | **string** | 用户名 | [optional] [default to undefined] |
|
||||
| **nickname** | **string** | 昵称 | [optional] [default to undefined] |
|
||||
| **balance** | **number** | 余额 | [optional] [default to undefined] |
|
||||
| **isExist** | **boolean** | 是否存在系统中 | [optional] [default to undefined] |
|
||||
| **isAvailable** | **boolean** | 是否可用 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountCookieCheckRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountCookieCheckRes = {
|
||||
username,
|
||||
nickname,
|
||||
balance,
|
||||
isExist,
|
||||
isAvailable
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,31 @@
|
||||
# KamiApiCardInfoWalmartV1AccountCreateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------------ | ---------- | -------------- | --------------------------------- |
|
||||
| **cookie** | **string** | cookie不能为空 | [default to undefined] |
|
||||
| **name** | **string** | 别名 | [optional] [default to undefined] |
|
||||
| **groupId** | **number** | 分组ID | [optional] [default to undefined] |
|
||||
| **maxAmountLimit** | **number** | 最大充值限制 | [default to undefined] |
|
||||
| **maxCountLimit** | **number** | 最大充值次数 | [default to undefined] |
|
||||
| **status** | **number** | 状态 | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountCreateReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountCreateReq = {
|
||||
cookie,
|
||||
name,
|
||||
groupId,
|
||||
maxAmountLimit,
|
||||
maxCountLimit,
|
||||
status,
|
||||
remark
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiCardInfoWalmartV1AccountDeleteReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **string** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountDeleteReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountDeleteReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,45 @@
|
||||
# KamiApiCardInfoWalmartV1AccountInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------------- | --------------------------------------------------------------------- | ------------------ | --------------------------------- |
|
||||
| **uploadUser** | [**KamiApiSysUserV1SysUserRecord**](KamiApiSysUserV1SysUserRecord.md) | | [optional] [default to undefined] |
|
||||
| **createUserId** | **string** | 创建人 | [optional] [default to undefined] |
|
||||
| **balance** | **number** | 余额 | [optional] [default to undefined] |
|
||||
| **status** | **number** | 状态 1.正常 0.禁用 | [optional] [default to undefined] |
|
||||
| **maxCountLimit** | **number** | 账号最大充值次数 | [optional] [default to undefined] |
|
||||
| **maxAmountLimit** | **number** | 最大充值限制 | [optional] [default to undefined] |
|
||||
| **amountTodayCount** | **number** | | [optional] [default to undefined] |
|
||||
| **id** | **string** | | [optional] [default to undefined] |
|
||||
| **name** | **string** | | [optional] [default to undefined] |
|
||||
| **category** | **string** | 账户类型 | [optional] [default to undefined] |
|
||||
| **amountTotalSum** | **number** | 账单所有统计金额 | [optional] [default to undefined] |
|
||||
| **amountTodaySum** | **number** | 账单今日统计金额 | [optional] [default to undefined] |
|
||||
| **effectiveBalance** | **number** | 有效充值余额 | [optional] [default to undefined] |
|
||||
| **amountTotalCount** | **number** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountInfo } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountInfo = {
|
||||
uploadUser,
|
||||
createUserId,
|
||||
balance,
|
||||
status,
|
||||
maxCountLimit,
|
||||
maxAmountLimit,
|
||||
amountTodayCount,
|
||||
id,
|
||||
name,
|
||||
category,
|
||||
amountTotalSum,
|
||||
amountTodaySum,
|
||||
effectiveBalance,
|
||||
amountTotalCount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiCardInfoWalmartV1AccountListRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **total** | **number** | | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiApiCardInfoWalmartV1AccountListRecord>**](KamiApiCardInfoWalmartV1AccountListRecord.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountListRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountListRes = {
|
||||
total,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiCardInfoWalmartV1AccountRefreshStatusReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **string** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountRefreshStatusReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountRefreshStatusReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiCardInfoWalmartV1AccountStatusDetectRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------- | ----------- | ----------- | --------------------------------- |
|
||||
| **status** | **boolean** | 状态 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1AccountStatusDetectRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1AccountStatusDetectRes = {
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiCardInfoWalmartV1GroupAddReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------- | ----------- | --------------------------------- |
|
||||
| **name** | **string** | 分组名称 | [default to undefined] |
|
||||
| **notes** | **string** | 备注 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1GroupAddReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1GroupAddReq = {
|
||||
name,
|
||||
notes
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiCardInfoWalmartV1GroupAllListRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------------------------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **total** | **number** | | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiInternalModelEntityV1CardRedeemAccountGroup>**](KamiInternalModelEntityV1CardRedeemAccountGroup.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1GroupAllListRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1GroupAllListRes = {
|
||||
total,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,23 @@
|
||||
# KamiApiCardInfoWalmartV1GroupUpdateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------- | ----------- | --------------------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
| **name** | **string** | 分组名称 | [default to undefined] |
|
||||
| **notes** | **string** | 备注 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1GroupUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1GroupUpdateReq = {
|
||||
id,
|
||||
name,
|
||||
notes
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiCardInfoWalmartV1OrderHistoryRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------- | ---------------------------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **list** | [**Array<KamiInternalModelEntityV1CardRedeemOrderHistory>**](KamiInternalModelEntityV1CardRedeemOrderHistory.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1OrderHistoryRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1OrderHistoryRes = {
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,29 @@
|
||||
# KamiApiCardInfoWalmartV1StatsOverviewRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **totalActiveAccountCount** | **number** | | [optional] [default to undefined] |
|
||||
| **totalAccountCount** | **number** | | [optional] [default to undefined] |
|
||||
| **totalOrderAmount** | **number** | | [optional] [default to undefined] |
|
||||
| **totalOrderAmountSuccess** | **number** | | [optional] [default to undefined] |
|
||||
| **totalOrderCount** | **number** | | [optional] [default to undefined] |
|
||||
| **totalOrderCountSuccess** | **number** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1StatsOverviewRes } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1StatsOverviewRes = {
|
||||
totalActiveAccountCount,
|
||||
totalAccountCount,
|
||||
totalOrderAmount,
|
||||
totalOrderAmountSuccess,
|
||||
totalOrderCount,
|
||||
totalOrderCountSuccess
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
29
src/api/generated/docs/KamiApiCardInfoWalmartV1SubmitReq.md
Normal file
29
src/api/generated/docs/KamiApiCardInfoWalmartV1SubmitReq.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# KamiApiCardInfoWalmartV1SubmitReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **cardNo** | **string** | 卡号 | [optional] [default to undefined] |
|
||||
| **giftCardPwd** | **string** | 礼品卡密码 | [default to undefined] |
|
||||
| **notifyUrl** | **string** | 回调地址 | [default to undefined] |
|
||||
| **merchantId** | **string** | 商户ID | [default to undefined] |
|
||||
| **attach** | **string** | 附加信息 | [optional] [default to undefined] |
|
||||
| **amount** | **number** | 充值金额 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiCardInfoWalmartV1SubmitReq } from './api';
|
||||
|
||||
const instance: KamiApiCardInfoWalmartV1SubmitReq = {
|
||||
cardNo,
|
||||
giftCardPwd,
|
||||
notifyUrl,
|
||||
merchantId,
|
||||
attach,
|
||||
amount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
37
src/api/generated/docs/KamiApiChannelV2EntranceCreateReq.md
Normal file
37
src/api/generated/docs/KamiApiChannelV2EntranceCreateReq.md
Normal file
@@ -0,0 +1,37 @@
|
||||
# KamiApiChannelV2EntranceCreateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ----------------------------------------------------------------------- | ------------ | --------------------------------- |
|
||||
| **name** | **string** | 通道名称 | [optional] [default to undefined] |
|
||||
| **payType** | **string** | 支付类型 | [optional] [default to undefined] |
|
||||
| **serviceFee** | **number** | 代付手续费 | [optional] [default to undefined] |
|
||||
| **totalLimit** | **number** | 通道总额度 | [optional] [default to undefined] |
|
||||
| **allowedMm** | **string** | 允许面额 | [optional] [default to undefined] |
|
||||
| **startHour** | **number** | 通道开始时间 | [optional] [default to undefined] |
|
||||
| **endHour** | **number** | 通道结束时间 | [optional] [default to undefined] |
|
||||
| **params** | [**KamiApiChannelV2EntranceParams**](KamiApiChannelV2EntranceParams.md) | | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注 | [optional] [default to undefined] |
|
||||
| **status** | **number** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiChannelV2EntranceCreateReq } from './api';
|
||||
|
||||
const instance: KamiApiChannelV2EntranceCreateReq = {
|
||||
name,
|
||||
payType,
|
||||
serviceFee,
|
||||
totalLimit,
|
||||
allowedMm,
|
||||
startHour,
|
||||
endHour,
|
||||
params,
|
||||
remark,
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
39
src/api/generated/docs/KamiApiChannelV2EntranceUpdateReq.md
Normal file
39
src/api/generated/docs/KamiApiChannelV2EntranceUpdateReq.md
Normal file
@@ -0,0 +1,39 @@
|
||||
# KamiApiChannelV2EntranceUpdateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ----------------------------------------------------------------------- | ------------ | --------------------------------- |
|
||||
| **id** | **string** | | [default to undefined] |
|
||||
| **name** | **string** | 通道名称 | [optional] [default to undefined] |
|
||||
| **payType** | **string** | 支付类型 | [optional] [default to undefined] |
|
||||
| **serviceFee** | **number** | 代付手续费 | [optional] [default to undefined] |
|
||||
| **totalLimit** | **number** | 通道总额度 | [optional] [default to undefined] |
|
||||
| **allowedMm** | **string** | 允许面额 | [optional] [default to undefined] |
|
||||
| **startHour** | **number** | 通道开始时间 | [optional] [default to undefined] |
|
||||
| **endHour** | **number** | 通道结束时间 | [optional] [default to undefined] |
|
||||
| **params** | [**KamiApiChannelV2EntranceParams**](KamiApiChannelV2EntranceParams.md) | | [optional] [default to undefined] |
|
||||
| **remark** | **string** | 备注 | [optional] [default to undefined] |
|
||||
| **status** | **number** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiChannelV2EntranceUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiChannelV2EntranceUpdateReq = {
|
||||
id,
|
||||
name,
|
||||
payType,
|
||||
serviceFee,
|
||||
totalLimit,
|
||||
allowedMm,
|
||||
startHour,
|
||||
endHour,
|
||||
params,
|
||||
remark,
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,25 @@
|
||||
# KamiApiMerchantV1MerchantConfigListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **current** | **number** | 页数 | [default to undefined] |
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
| **merchantName** | **string** | 商户名称 | [optional] [default to undefined] |
|
||||
| **merchantUid** | **string** | 商户uid | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantConfigListReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantConfigListReq = {
|
||||
current,
|
||||
pageSize,
|
||||
merchantName,
|
||||
merchantUid
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiMerchantV1MerchantDeployGetDetailReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantDeployGetDetailReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantDeployGetDetailReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiMerchantV1MerchantDeployListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **merchantUid** | **string** | 商户uid | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantDeployListReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantDeployListReq = {
|
||||
merchantUid
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,19 @@
|
||||
# KamiApiMerchantV1MerchantDeployListRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------- | -------------------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **list** | [**Array<KamiApiMerchantV1MerchantDeployRecord>**](KamiApiMerchantV1MerchantDeployRecord.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantDeployListRes } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantDeployListRes = {
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,49 @@
|
||||
# KamiApiMerchantV1MerchantDeployUpdateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------- | --------------------------------- |
|
||||
| **singleRoadUid** | **string** | 单通道uid | [default to undefined] |
|
||||
| **singleRoadPlatformRate** | [**Array<KamiApiMerchantV1PlatformRateRecord>**](KamiApiMerchantV1PlatformRateRecord.md) | 单通到平台净利率(关系映射) | [default to undefined] |
|
||||
| **singleRoadAgentRate** | **number** | 单通到代理净利率 | [default to undefined] |
|
||||
| **rollRoadCode** | **string** | 轮询通道编码 | [default to undefined] |
|
||||
| **rollRoadAgentRate** | **number** | 轮询通道代理净利率 | [default to undefined] |
|
||||
| **rollRoadPlatformRate** | **number** | 轮询通道平台净利率 | [default to undefined] |
|
||||
| **merchantUid** | **string** | 商户uid | [default to undefined] |
|
||||
| **autoSettle** | **string** | 自动结算 | [default to undefined] |
|
||||
| **autoPayfor** | **string** | 自动代付 | [default to undefined] |
|
||||
| **restrictArea** | **Array<string>** | 限制地区 | [optional] [default to undefined] |
|
||||
| **isRestrictAgent** | **boolean** | 是否检测代理 | [optional] [default to undefined] |
|
||||
| **isRestrictCardPass** | **boolean** | 是否限制卡密 | [optional] [default to undefined] |
|
||||
| **isRestrictDevice** | **boolean** | 是否限制设备 | [optional] [default to undefined] |
|
||||
| **isRestrictIp** | **boolean** | 是否限制IP | [optional] [default to undefined] |
|
||||
| **isRestrictInternalIp** | **boolean** | 是否限制局域网IP | [optional] [default to undefined] |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantDeployUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantDeployUpdateReq = {
|
||||
singleRoadUid,
|
||||
singleRoadPlatformRate,
|
||||
singleRoadAgentRate,
|
||||
rollRoadCode,
|
||||
rollRoadAgentRate,
|
||||
rollRoadPlatformRate,
|
||||
merchantUid,
|
||||
autoSettle,
|
||||
autoPayfor,
|
||||
restrictArea,
|
||||
isRestrictAgent,
|
||||
isRestrictCardPass,
|
||||
isRestrictDevice,
|
||||
isRestrictIp,
|
||||
isRestrictInternalIp,
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,47 @@
|
||||
# KamiApiMerchantV1MerchantHiddenConfigEntity
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------------- | ----------------------- | ------------------------ | --------------------------------- |
|
||||
| **id** | **number** | | [optional] [default to undefined] |
|
||||
| **name** | **string** | | [optional] [default to undefined] |
|
||||
| **merchantUid** | **string** | 商户Id | [optional] [default to undefined] |
|
||||
| **roadUid** | **string** | 商户通道 | [optional] [default to undefined] |
|
||||
| **amount** | **number** | 金额 | [optional] [default to undefined] |
|
||||
| **faceAmount** | **number** | 面额 | [optional] [default to undefined] |
|
||||
| **delayDurationMin** | **number** | 延迟时间(最小) | [optional] [default to undefined] |
|
||||
| **delayDurationMax** | **number** | 延迟时间(最大) | [optional] [default to undefined] |
|
||||
| **enable** | **number** | 是否启用 | [optional] [default to undefined] |
|
||||
| **strategy** | **number** | 策略 1空白 2.错误 3.随机 | [optional] [default to undefined] |
|
||||
| **amountRule** | **Array<number>** | | [optional] [default to undefined] |
|
||||
| **extraReturnInfo** | **string** | 绑卡返回额外信息 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | 创建时间 | [optional] [default to undefined] |
|
||||
| **updatedAt** | **string** | 更新时间 | [optional] [default to undefined] |
|
||||
| **deletedAt** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1MerchantHiddenConfigEntity } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1MerchantHiddenConfigEntity = {
|
||||
id,
|
||||
name,
|
||||
merchantUid,
|
||||
roadUid,
|
||||
amount,
|
||||
faceAmount,
|
||||
delayDurationMin,
|
||||
delayDurationMax,
|
||||
enable,
|
||||
strategy,
|
||||
amountRule,
|
||||
extraReturnInfo,
|
||||
createdAt,
|
||||
updatedAt,
|
||||
deletedAt
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,31 @@
|
||||
# KamiApiMerchantV1PlatformRateRecord
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ----------------- | ----------- | ---------------- | --------------------------------- |
|
||||
| **factLabel** | **number** | 实际面值 | [optional] [default to undefined] |
|
||||
| **showLabel** | **number** | 展示面额 | [optional] [default to undefined] |
|
||||
| **platformLabel** | **string** | 平台 | [optional] [default to undefined] |
|
||||
| **isLinkSingle** | **boolean** | 链接是否单独放置 | [optional] [default to undefined] |
|
||||
| **value** | **number** | 费率 | [optional] [default to undefined] |
|
||||
| **linkID** | **string** | 链接 | [optional] [default to undefined] |
|
||||
| **sort** | **number** | 排序 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1PlatformRateRecord } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1PlatformRateRecord = {
|
||||
factLabel,
|
||||
showLabel,
|
||||
platformLabel,
|
||||
isLinkSingle,
|
||||
value,
|
||||
linkID,
|
||||
sort
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiMerchantV1StealRecordListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | ---------------------- |
|
||||
| **current** | **number** | 页数 | [default to undefined] |
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1StealRecordListReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1StealRecordListReq = {
|
||||
current,
|
||||
pageSize
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiMerchantV1StealStatusGetRes.md
Normal file
19
src/api/generated/docs/KamiApiMerchantV1StealStatusGetRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiMerchantV1StealStatusGetRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------- | ----------- | ----------- | --------------------------------- |
|
||||
| **stealStatus** | **boolean** | 状态 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1StealStatusGetRes } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1StealStatusGetRes = {
|
||||
stealStatus
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiMerchantV1StealStatusSetReq.md
Normal file
19
src/api/generated/docs/KamiApiMerchantV1StealStatusSetReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiMerchantV1StealStatusSetReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------- | ----------- | ----------- | --------------------------------- |
|
||||
| **status** | **boolean** | 状态ID | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiMerchantV1StealStatusSetReq } from './api';
|
||||
|
||||
const instance: KamiApiMerchantV1StealStatusSetReq = {
|
||||
status
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiOrderV1OrderFormUpdateReq.md
Normal file
19
src/api/generated/docs/KamiApiOrderV1OrderFormUpdateReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiOrderV1OrderFormUpdateReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiOrderV1OrderFormUpdateReq } from './api';
|
||||
|
||||
const instance: KamiApiOrderV1OrderFormUpdateReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiOrderV1OrderLogDeleteReq.md
Normal file
19
src/api/generated/docs/KamiApiOrderV1OrderLogDeleteReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiOrderV1OrderLogDeleteReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------ | ---------- | ----------- | ---------------------- |
|
||||
| **id** | **number** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiOrderV1OrderLogDeleteReq } from './api';
|
||||
|
||||
const instance: KamiApiOrderV1OrderLogDeleteReq = {
|
||||
id
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
21
src/api/generated/docs/KamiApiOrderV1OrderLogListReq.md
Normal file
21
src/api/generated/docs/KamiApiOrderV1OrderLogListReq.md
Normal file
@@ -0,0 +1,21 @@
|
||||
# KamiApiOrderV1OrderLogListReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------ | ---------- | ----------- | ---------------------- |
|
||||
| **current** | **number** | 页数 | [default to undefined] |
|
||||
| **pageSize** | **number** | 页码 | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiOrderV1OrderLogListReq } from './api';
|
||||
|
||||
const instance: KamiApiOrderV1OrderLogListReq = {
|
||||
current,
|
||||
pageSize
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiRoadPoolV1RoadPoolSimpleInfo
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ---------------- | ---------- | ----------- | --------------------------------- |
|
||||
| **roadPoolName** | **string** | 通道池名称 | [optional] [default to undefined] |
|
||||
| **roadPoolCode** | **string** | 通道池编号 | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiRoadPoolV1RoadPoolSimpleInfo } from './api';
|
||||
|
||||
const instance: KamiApiRoadPoolV1RoadPoolSimpleInfo = {
|
||||
roadPoolName,
|
||||
roadPoolCode
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiSysPaymentV1SysPaymentGetRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ------------------------------------------------------------------------------------------------------ | ----------- | --------------------------------- |
|
||||
| **total** | **number** | | [optional] [default to undefined] |
|
||||
| **list** | [**Array<KamiInternalModelEntityV1SysUserPayment>**](KamiInternalModelEntityV1SysUserPayment.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysPaymentV1SysPaymentGetRes } from './api';
|
||||
|
||||
const instance: KamiApiSysPaymentV1SysPaymentGetRes = {
|
||||
total,
|
||||
list
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
@@ -0,0 +1,21 @@
|
||||
# KamiApiSysPaymentV1SysPaymentRecordsGetStatisticsRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------------------- | ----------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **payment** | [**KamiInternalModelEntityV1SysUserPayment**](KamiInternalModelEntityV1SysUserPayment.md) | | [optional] [default to undefined] |
|
||||
| **appleAccountCount** | **number** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysPaymentV1SysPaymentRecordsGetStatisticsRes } from './api';
|
||||
|
||||
const instance: KamiApiSysPaymentV1SysPaymentRecordsGetStatisticsRes = {
|
||||
payment,
|
||||
appleAccountCount
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiSysUserLoginV1UserLoginRes.md
Normal file
19
src/api/generated/docs/KamiApiSysUserLoginV1UserLoginRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiSysUserLoginV1UserLoginRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------- | ----------- | --------------------------------- |
|
||||
| **token** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysUserLoginV1UserLoginRes } from './api';
|
||||
|
||||
const instance: KamiApiSysUserLoginV1UserLoginRes = {
|
||||
token
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
29
src/api/generated/docs/KamiApiSysUserV1SysUserRoleDeptRes.md
Normal file
29
src/api/generated/docs/KamiApiSysUserV1SysUserRoleDeptRes.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# KamiApiSysUserV1SysUserRoleDeptRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------------- | ----------------------------------------------------------------------------------------- | ----------- | --------------------------------- |
|
||||
| **id** | **string** | ID | [optional] [default to undefined] |
|
||||
| **username** | **string** | 账号 | [optional] [default to undefined] |
|
||||
| **nickName** | **string** | 昵称 | [optional] [default to undefined] |
|
||||
| **userStatus** | **number** | 用户状态 | [optional] [default to undefined] |
|
||||
| **createdAt** | **string** | | [optional] [default to undefined] |
|
||||
| **payment** | [**KamiInternalModelEntityV1SysUserPayment**](KamiInternalModelEntityV1SysUserPayment.md) | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysUserV1SysUserRoleDeptRes } from './api';
|
||||
|
||||
const instance: KamiApiSysUserV1SysUserRoleDeptRes = {
|
||||
id,
|
||||
username,
|
||||
nickName,
|
||||
userStatus,
|
||||
createdAt,
|
||||
payment
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiSysUserV1TotpImageGetRes.md
Normal file
19
src/api/generated/docs/KamiApiSysUserV1TotpImageGetRes.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiSysUserV1TotpImageGetRes
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| --------- | ---------- | ----------- | --------------------------------- |
|
||||
| **image** | **string** | | [optional] [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysUserV1TotpImageGetRes } from './api';
|
||||
|
||||
const instance: KamiApiSysUserV1TotpImageGetRes = {
|
||||
image
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
19
src/api/generated/docs/KamiApiSysUserV1TotpResetReq.md
Normal file
19
src/api/generated/docs/KamiApiSysUserV1TotpResetReq.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# KamiApiSysUserV1TotpResetReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| -------- | ---------- | ----------- | ---------------------- |
|
||||
| **code** | **string** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysUserV1TotpResetReq } from './api';
|
||||
|
||||
const instance: KamiApiSysUserV1TotpResetReq = {
|
||||
code
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
25
src/api/generated/docs/KamiApiSysUserV1TotpSetReq.md
Normal file
25
src/api/generated/docs/KamiApiSysUserV1TotpSetReq.md
Normal file
@@ -0,0 +1,25 @@
|
||||
# KamiApiSysUserV1TotpSetReq
|
||||
|
||||
## Properties
|
||||
|
||||
| Name | Type | Description | Notes |
|
||||
| ------------- | ---------- | ----------- | ---------------------- |
|
||||
| **code** | **string** | | [default to undefined] |
|
||||
| **otpKey** | **string** | | [default to undefined] |
|
||||
| **otpSecret** | **string** | | [default to undefined] |
|
||||
| **password** | **string** | | [default to undefined] |
|
||||
|
||||
## Example
|
||||
|
||||
```typescript
|
||||
import { KamiApiSysUserV1TotpSetReq } from './api';
|
||||
|
||||
const instance: KamiApiSysUserV1TotpSetReq = {
|
||||
code,
|
||||
otpKey,
|
||||
otpSecret,
|
||||
password
|
||||
};
|
||||
```
|
||||
|
||||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
||||
Reference in New Issue
Block a user