build(api): update API client to use eslint

- Replace tslint with eslint for code linting
- Update file header comments to disable eslint instead of tslint
- Add blank lines for better readability
This commit is contained in:
danial
2025-03-30 22:38:02 +08:00
parent d3b99f74b8
commit 091bc39fe3
319 changed files with 26619 additions and 35411 deletions

View File

@@ -1,16 +1,19 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 * from './apis/default-api';
export * from './apis/totpapi';

File diff suppressed because it is too large Load Diff

View File

@@ -1,43 +1,26 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
import type { Configuration } from '../configuration';
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
// Some imports not used depending on template conditions
// @ts-ignore
import {
DUMMY_BASE_URL,
assertParamExists,
setApiKeyToObject,
setBasicAuthToObject,
setBearerAuthToObject,
setOAuthToObject,
setSearchParams,
serializeDataIfNeeded,
toPathString,
createRequestFunction
} from '../common';
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction } from '../common';
// @ts-ignore
import {
BASE_PATH,
COLLECTION_FORMATS,
type RequestArgs,
BaseAPI,
RequiredError,
operationServerMap
} from '../base';
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
// @ts-ignore
import type { KamiApiSysUserV1TotpImageGetRes } from '../models';
// @ts-ignore
@@ -52,400 +35,254 @@ import type { KamiApiSysUserV1TotpStatusGetRes } from '../models';
* TOTPApi - axios parameter creator
* @export
*/
export const TOTPApiAxiosParamCreator = function (
configuration?: Configuration
) {
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpImageGet: async (
code: string,
options: RawAxiosRequestConfig = {}
): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined
assertParamExists('apiUserTotpImageGet', 'code', code);
const localVarPath = `/api/user/totp/image`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
export const TOTPApiAxiosParamCreator = function (configuration?: Configuration) {
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpImageGet: async (code: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined
assertParamExists('apiUserTotpImageGet', 'code', code)
const localVarPath = `/api/user/totp/image`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = {
method: 'GET',
...baseOptions,
...options
};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
if (code !== undefined) {
localVarQueryParameter['code'] = code;
}
if (code !== undefined) {
localVarQueryParameter['code'] = code;
}
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions
};
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpResetPost: async (
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options: RawAxiosRequestConfig = {}
): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/reset`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
const localVarRequestOptions = {
method: 'POST',
...baseOptions,
...options
};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpResetPost: async (kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/reset`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
localVarHeaderParameter['Content-Type'] = 'application/json';
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
localVarRequestOptions.data = serializeDataIfNeeded(
kamiApiSysUserV1TotpResetReq,
localVarRequestOptions,
configuration
);
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions
};
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpSetPost: async (
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options: RawAxiosRequestConfig = {}
): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/set`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
localVarHeaderParameter['Content-Type'] = 'application/json';
const localVarRequestOptions = {
method: 'POST',
...baseOptions,
...options
};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
localVarRequestOptions.data = serializeDataIfNeeded(kamiApiSysUserV1TotpResetReq, localVarRequestOptions, configuration)
localVarHeaderParameter['Content-Type'] = 'application/json';
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpSetPost: async (kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/set`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
localVarRequestOptions.data = serializeDataIfNeeded(
kamiApiSysUserV1TotpSetReq,
localVarRequestOptions,
configuration
);
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions
};
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet: async (
options: RawAxiosRequestConfig = {}
): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/status`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = {
method: 'GET',
...baseOptions,
...options
};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
localVarHeaderParameter['Content-Type'] = 'application/json';
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
localVarRequestOptions.data = serializeDataIfNeeded(kamiApiSysUserV1TotpSetReq, localVarRequestOptions, configuration)
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions
};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/api/user/totp/status`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
}
};
};
/**
* TOTPApi - functional programming interface
* @export
*/
export const TOTPApiFp = function (configuration?: Configuration) {
const localVarAxiosParamCreator = TOTPApiAxiosParamCreator(configuration);
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpImageGet(
code: string,
options?: RawAxiosRequestConfig
): Promise<
(
axios?: AxiosInstance,
basePath?: string
) => AxiosPromise<KamiApiSysUserV1TotpImageGetRes>
> {
const localVarAxiosArgs =
await localVarAxiosParamCreator.apiUserTotpImageGet(code, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpImageGet']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options?: RawAxiosRequestConfig
): Promise<
(
axios?: AxiosInstance,
basePath?: string
) => AxiosPromise<KamiApiSysUserV1TotpResetRes>
> {
const localVarAxiosArgs =
await localVarAxiosParamCreator.apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq,
options
);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpResetPost']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options?: RawAxiosRequestConfig
): Promise<
(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>
> {
const localVarAxiosArgs =
await localVarAxiosParamCreator.apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq,
options
);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpSetPost']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpStatusGet(
options?: RawAxiosRequestConfig
): Promise<
(
axios?: AxiosInstance,
basePath?: string
) => AxiosPromise<KamiApiSysUserV1TotpStatusGetRes>
> {
const localVarAxiosArgs =
await localVarAxiosParamCreator.apiUserTotpStatusGet(options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpStatusGet']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
export const TOTPApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = TOTPApiAxiosParamCreator(configuration)
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpImageGet(code: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KamiApiSysUserV1TotpImageGetRes>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.apiUserTotpImageGet(code, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TOTPApi.apiUserTotpImageGet']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KamiApiSysUserV1TotpResetRes>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TOTPApi.apiUserTotpResetPost']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TOTPApi.apiUserTotpSetPost']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async apiUserTotpStatusGet(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KamiApiSysUserV1TotpStatusGetRes>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.apiUserTotpStatusGet(options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['TOTPApi.apiUserTotpStatusGet']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
}
};
};
/**
* TOTPApi - factory interface
* @export
*/
export const TOTPApiFactory = function (
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance
) {
const localVarFp = TOTPApiFp(configuration);
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpImageGet(
code: string,
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpImageGetRes> {
return localVarFp
.apiUserTotpImageGet(code, options)
.then(request => request(axios, basePath));
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpResetRes> {
return localVarFp
.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options)
.then(request => request(axios, basePath));
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options?: RawAxiosRequestConfig
): AxiosPromise<object> {
return localVarFp
.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options)
.then(request => request(axios, basePath));
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet(
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpStatusGetRes> {
return localVarFp
.apiUserTotpStatusGet(options)
.then(request => request(axios, basePath));
}
};
export const TOTPApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
const localVarFp = TOTPApiFp(configuration)
return {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpImageGet(code: string, options?: RawAxiosRequestConfig): AxiosPromise<KamiApiSysUserV1TotpImageGetRes> {
return localVarFp.apiUserTotpImageGet(code, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options?: RawAxiosRequestConfig): AxiosPromise<KamiApiSysUserV1TotpResetRes> {
return localVarFp.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options?: RawAxiosRequestConfig): AxiosPromise<object> {
return localVarFp.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options).then((request) => request(axios, basePath));
},
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<KamiApiSysUserV1TotpStatusGetRes> {
return localVarFp.apiUserTotpStatusGet(options).then((request) => request(axios, basePath));
},
};
};
/**
@@ -455,64 +292,51 @@ export const TOTPApiFactory = function (
* @extends {BaseAPI}
*/
export class TOTPApi extends BaseAPI {
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpImageGet(code: string, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration)
.apiUserTotpImageGet(code, options)
.then(request => request(this.axios, this.basePath));
}
/**
*
* @summary 查看两步验证图像
* @param {string} code
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpImageGet(code: string, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpImageGet(code, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options?: RawAxiosRequestConfig
) {
return TOTPApiFp(this.configuration)
.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options)
.then(request => request(this.axios, this.basePath));
}
/**
*
* @summary 重置两步验证
* @param {KamiApiSysUserV1TotpResetReq} [kamiApiSysUserV1TotpResetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options?: RawAxiosRequestConfig
) {
return TOTPApiFp(this.configuration)
.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options)
.then(request => request(this.axios, this.basePath));
}
/**
*
* @summary 设置二步验证
* @param {KamiApiSysUserV1TotpSetReq} [kamiApiSysUserV1TotpSetReq]
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options).then((request) => request(this.axios, this.basePath));
}
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpStatusGet(options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration)
.apiUserTotpStatusGet(options)
.then(request => request(this.axios, this.basePath));
}
/**
*
* @summary 确认当前用户是否开启totp
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpStatusGet(options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpStatusGet(options).then((request) => request(this.axios, this.basePath));
}
}

View File

@@ -1,34 +1,35 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
import type { Configuration } from './configuration';
// Some imports not used depending on template conditions
// @ts-ignore
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
import globalAxios from 'axios';
export const BASE_PATH = 'http://localhost'.replace(/\/+$/, '');
export const BASE_PATH = "http://localhost".replace(/\/+$/, "");
/**
*
* @export
*/
export const COLLECTION_FORMATS = {
csv: ',',
ssv: ' ',
tsv: '\t',
pipes: '|'
csv: ",",
ssv: " ",
tsv: "\t",
pipes: "|",
};
/**
@@ -37,8 +38,8 @@ export const COLLECTION_FORMATS = {
* @interface RequestArgs
*/
export interface RequestArgs {
url: string;
options: RawAxiosRequestConfig;
url: string;
options: RawAxiosRequestConfig;
}
/**
@@ -47,19 +48,15 @@ export interface RequestArgs {
* @class BaseAPI
*/
export class BaseAPI {
protected configuration: Configuration | undefined;
protected configuration: Configuration | undefined;
constructor(
configuration?: Configuration,
protected basePath: string = BASE_PATH,
protected axios: AxiosInstance = globalAxios
) {
if (configuration) {
this.configuration = configuration;
this.basePath = configuration.basePath ?? basePath;
constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {
if (configuration) {
this.configuration = configuration;
this.basePath = configuration.basePath ?? basePath;
}
}
}
}
};
/**
*
@@ -68,24 +65,22 @@ export class BaseAPI {
* @extends {Error}
*/
export class RequiredError extends Error {
constructor(
public field: string,
msg?: string
) {
super(msg);
this.name = 'RequiredError';
}
constructor(public field: string, msg?: string) {
super(msg);
this.name = "RequiredError"
}
}
interface ServerMap {
[key: string]: {
url: string;
description: string;
}[];
[key: string]: {
url: string,
description: string,
}[];
}
/**
*
* @export
*/
export const operationServerMap: ServerMap = {};
export const operationServerMap: ServerMap = {
}

View File

@@ -1,143 +1,109 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
import type { Configuration } from './configuration';
import type { RequestArgs } from './base';
import type { Configuration } from "./configuration";
import type { RequestArgs } from "./base";
import type { AxiosInstance, AxiosResponse } from 'axios';
import { RequiredError } from './base';
import { RequiredError } from "./base";
/**
*
* @export
*/
export const DUMMY_BASE_URL = 'https://example.com';
export const DUMMY_BASE_URL = 'https://example.com'
/**
*
* @throws {RequiredError}
* @export
*/
export const assertParamExists = function (
functionName: string,
paramName: string,
paramValue: unknown
) {
if (paramValue === null || paramValue === undefined) {
throw new RequiredError(
paramName,
`Required parameter ${paramName} was null or undefined when calling ${functionName}.`
);
}
};
/**
*
* @export
*/
export const setApiKeyToObject = async function (
object: any,
keyParamName: string,
configuration?: Configuration
) {
if (configuration && configuration.apiKey) {
const localVarApiKeyValue =
typeof configuration.apiKey === 'function'
? await configuration.apiKey(keyParamName)
: await configuration.apiKey;
object[keyParamName] = localVarApiKeyValue;
}
};
/**
*
* @export
*/
export const setBasicAuthToObject = function (
object: any,
configuration?: Configuration
) {
if (configuration && (configuration.username || configuration.password)) {
object['auth'] = {
username: configuration.username,
password: configuration.password
};
}
};
/**
*
* @export
*/
export const setBearerAuthToObject = async function (
object: any,
configuration?: Configuration
) {
if (configuration && configuration.accessToken) {
const accessToken =
typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
object['Authorization'] = 'Bearer ' + accessToken;
}
};
/**
*
* @export
*/
export const setOAuthToObject = async function (
object: any,
name: string,
scopes: string[],
configuration?: Configuration
) {
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue =
typeof configuration.accessToken === 'function'
? await configuration.accessToken(name, scopes)
: await configuration.accessToken;
object['Authorization'] = 'Bearer ' + localVarAccessTokenValue;
}
};
function setFlattenedQueryParams(
urlSearchParams: URLSearchParams,
parameter: any,
key: string = ''
): void {
if (parameter == null) return;
if (typeof parameter === 'object') {
if (Array.isArray(parameter)) {
(parameter as any[]).forEach(item =>
setFlattenedQueryParams(urlSearchParams, item, key)
);
} else {
Object.keys(parameter).forEach(currentKey =>
setFlattenedQueryParams(
urlSearchParams,
parameter[currentKey],
`${key}${key !== '' ? '.' : ''}${currentKey}`
)
);
export const assertParamExists = function (functionName: string, paramName: string, paramValue: unknown) {
if (paramValue === null || paramValue === undefined) {
throw new RequiredError(paramName, `Required parameter ${paramName} was null or undefined when calling ${functionName}.`);
}
} else {
if (urlSearchParams.has(key)) {
urlSearchParams.append(key, parameter);
} else {
urlSearchParams.set(key, parameter);
}
/**
*
* @export
*/
export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {
if (configuration && configuration.apiKey) {
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
? await configuration.apiKey(keyParamName)
: await configuration.apiKey;
object[keyParamName] = localVarApiKeyValue;
}
}
/**
*
* @export
*/
export const setBasicAuthToObject = function (object: any, configuration?: Configuration) {
if (configuration && (configuration.username || configuration.password)) {
object["auth"] = { username: configuration.username, password: configuration.password };
}
}
/**
*
* @export
*/
export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
object["Authorization"] = "Bearer " + accessToken;
}
}
/**
*
* @export
*/
export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
? await configuration.accessToken(name, scopes)
: await configuration.accessToken;
object["Authorization"] = "Bearer " + localVarAccessTokenValue;
}
}
function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void {
if (parameter == null) return;
if (typeof parameter === "object") {
if (Array.isArray(parameter)) {
(parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
}
else {
Object.keys(parameter).forEach(currentKey =>
setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
);
}
}
else {
if (urlSearchParams.has(key)) {
urlSearchParams.append(key, parameter);
}
else {
urlSearchParams.set(key, parameter);
}
}
}
}
/**
@@ -145,58 +111,40 @@ function setFlattenedQueryParams(
* @export
*/
export const setSearchParams = function (url: URL, ...objects: any[]) {
const searchParams = new URLSearchParams(url.search);
setFlattenedQueryParams(searchParams, objects);
url.search = searchParams.toString();
};
const searchParams = new URLSearchParams(url.search);
setFlattenedQueryParams(searchParams, objects);
url.search = searchParams.toString();
}
/**
*
* @export
*/
export const serializeDataIfNeeded = function (
value: any,
requestOptions: any,
configuration?: Configuration
) {
const nonString = typeof value !== 'string';
const needsSerialization =
nonString && configuration && configuration.isJsonMime
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
: nonString;
return needsSerialization
? JSON.stringify(value !== undefined ? value : {})
: value || '';
};
export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {
const nonString = typeof value !== 'string';
const needsSerialization = nonString && configuration && configuration.isJsonMime
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
: nonString;
return needsSerialization
? JSON.stringify(value !== undefined ? value : {})
: (value || "");
}
/**
*
* @export
*/
export const toPathString = function (url: URL) {
return url.pathname + url.search + url.hash;
};
return url.pathname + url.search + url.hash
}
/**
*
* @export
*/
export const createRequestFunction = function (
axiosArgs: RequestArgs,
globalAxios: AxiosInstance,
BASE_PATH: string,
configuration?: Configuration
) {
return <T = unknown, R = AxiosResponse<T>>(
axios: AxiosInstance = globalAxios,
basePath: string = BASE_PATH
) => {
const axiosRequestArgs = {
...axiosArgs.options,
url:
(axios.defaults.baseURL ? '' : (configuration?.basePath ?? basePath)) +
axiosArgs.url
export const createRequestFunction = function (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) {
return <T = unknown, R = AxiosResponse<T>>(axios: AxiosInstance = globalAxios, basePath: string = BASE_PATH) => {
const axiosRequestArgs = {...axiosArgs.options, url: (axios.defaults.baseURL ? '' : configuration?.basePath ?? basePath) + axiosArgs.url};
return axios.request<T, R>(axiosRequestArgs);
};
return axios.request<T, R>(axiosRequestArgs);
};
};
}

View File

@@ -1,132 +1,110 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 ConfigurationParameters {
apiKey?:
| string
| Promise<string>
| ((name: string) => string)
| ((name: string) => Promise<string>);
username?: string;
password?: string;
accessToken?:
| string
| Promise<string>
| ((name?: string, scopes?: string[]) => string)
| ((name?: string, scopes?: string[]) => Promise<string>);
basePath?: string;
serverIndex?: number;
baseOptions?: any;
formDataCtor?: new () => any;
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
username?: string;
password?: string;
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
basePath?: string;
serverIndex?: number;
baseOptions?: any;
formDataCtor?: new () => any;
}
export class Configuration {
/**
* parameter for apiKey security
* @param name security name
* @memberof Configuration
*/
apiKey?:
| string
| Promise<string>
| ((name: string) => string)
| ((name: string) => Promise<string>);
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
username?: string;
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
password?: string;
/**
* parameter for oauth2 security
* @param name security name
* @param scopes oauth2 scope
* @memberof Configuration
*/
accessToken?:
| string
| Promise<string>
| ((name?: string, scopes?: string[]) => string)
| ((name?: string, scopes?: string[]) => Promise<string>);
/**
* override base path
*
* @type {string}
* @memberof Configuration
*/
basePath?: string;
/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex?: number;
/**
* base options for axios calls
*
* @type {any}
* @memberof Configuration
*/
baseOptions?: any;
/**
* The FormData constructor that will be used to create multipart form data
* requests. You can inject this here so that execution environments that
* do not support the FormData class can still run the generated client.
*
* @type {new () => FormData}
*/
formDataCtor?: new () => any;
/**
* parameter for apiKey security
* @param name security name
* @memberof Configuration
*/
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
username?: string;
/**
* parameter for basic security
*
* @type {string}
* @memberof Configuration
*/
password?: string;
/**
* parameter for oauth2 security
* @param name security name
* @param scopes oauth2 scope
* @memberof Configuration
*/
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
/**
* override base path
*
* @type {string}
* @memberof Configuration
*/
basePath?: string;
/**
* override server index
*
* @type {number}
* @memberof Configuration
*/
serverIndex?: number;
/**
* base options for axios calls
*
* @type {any}
* @memberof Configuration
*/
baseOptions?: any;
/**
* The FormData constructor that will be used to create multipart form data
* requests. You can inject this here so that execution environments that
* do not support the FormData class can still run the generated client.
*
* @type {new () => FormData}
*/
formDataCtor?: new () => any;
constructor(param: ConfigurationParameters = {}) {
this.apiKey = param.apiKey;
this.username = param.username;
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = param.baseOptions;
this.formDataCtor = param.formDataCtor;
}
constructor(param: ConfigurationParameters = {}) {
this.apiKey = param.apiKey;
this.username = param.username;
this.password = param.password;
this.accessToken = param.accessToken;
this.basePath = param.basePath;
this.serverIndex = param.serverIndex;
this.baseOptions = param.baseOptions;
this.formDataCtor = param.formDataCtor;
}
/**
* Check if the given MIME is a JSON MIME.
* JSON MIME examples:
* application/json
* application/json; charset=UTF8
* APPLICATION/JSON
* application/vnd.company+json
* @param mime - MIME (Multipurpose Internet Mail Extensions)
* @return True if the given MIME is JSON, false otherwise.
*/
public isJsonMime(mime: string): boolean {
const jsonMime: RegExp = new RegExp(
'^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$',
'i'
);
return (
mime !== null &&
(jsonMime.test(mime) ||
mime.toLowerCase() === 'application/json-patch+json')
);
}
/**
* Check if the given MIME is a JSON MIME.
* JSON MIME examples:
* application/json
* application/json; charset=UTF8
* APPLICATION/JSON
* application/vnd.company+json
* @param mime - MIME (Multipurpose Internet Mail Extensions)
* @return True if the given MIME is JSON, false otherwise.
*/
public isJsonMime(mime: string): boolean {
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
}
}

View File

@@ -1,17 +1,18 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 * from './api';
export * from './configuration';
export * from './models';
export * from "./api";
export * from "./configuration";
export * from "./models";

View File

@@ -1,39 +1,42 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
export interface KamiApiCardInfoAppleV1AppleCardListRecordUploadUser {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
id?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
username?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
nickname?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'id'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'username'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'nickname'?: string;
}

View File

@@ -1,133 +1,135 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoAppleV1AppleCardListRecordUploadUser } from './kami-api-card-info-apple-v1-apple-card-list-record-upload-user';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1AppleCardListRecord
*/
export interface KamiApiCardInfoAppleV1AppleCardListRecord {
/**
* 主键
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
id?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
account?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
password?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
balance?: number;
/**
* itunes充值后余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
balanceItunes?: number;
/**
* 状态 0.停用 1.正常使用(待充值) 2.正在充值 3.已达到单日充值限制
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
status?: number;
/**
* 今日充值金额,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
todayRechargeAmount?: number;
/**
* 今日充值笔数,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
todayRechargeCount?: number;
/**
* 今日日期,临时字段,方便查询
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
todayRechargeDatetime?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
createdUserId?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
createdUserRole?: string;
/**
* 最大充值限制金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
maxAmountLimit?: number;
/**
* 最大充值限制次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
remark?: string;
/**
* 创建日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
createdAt?: string;
/**
* 更新日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
updatedAt?: string;
/**
* 删除日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
/**
* 主键
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'id'?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'account'?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'password'?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'balance'?: number;
/**
* itunes充值后余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'balanceItunes'?: number;
/**
* 状态 0.停用 1.正常使用(待充值) 2.正在充值 3.已达到单日充值限制
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'status'?: number;
/**
* 今日充值金额,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeAmount'?: number;
/**
* 今日充值笔数,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeCount'?: number;
/**
* 今日日期,临时字段,方便查询
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeDatetime'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdUserId'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdUserRole'?: string;
/**
* 最大充值限制金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'maxAmountLimit'?: number;
/**
* 最大充值限制次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'maxCountLimit'?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'remark'?: string;
/**
* 创建日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdAt'?: string;
/**
* 更新日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'updatedAt'?: string;
/**
* 删除日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'deletedAt'?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -1,33 +1,36 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
export interface KamiApiCardInfoAppleV1CallBackOrderManualReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
orderNo: string;
/**
* 充值ID
* @type {number}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
id?: number;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
'orderNo': string;
/**
* 充值ID
* @type {number}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
'id'?: number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
export interface KamiApiCardInfoAppleV1CardHistoryInfoListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
pageSize: KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum;
/**
* 苹果账户名
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
accountName?: string;
/**
* 苹果账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
accountId?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'pageSize': KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum;
/**
* 苹果账户名
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'accountName'?: string;
/**
* 苹果账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'accountId'?: string;
}
export const KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoAppleV1CardHistoryModel } from './kami-api-card-info-apple-v1-card-history-model';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
export interface KamiApiCardInfoAppleV1CardHistoryInfoListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
total?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1CardHistoryModel>}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
list?: Array<KamiApiCardInfoAppleV1CardHistoryModel>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1CardHistoryModel>}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
'list'?: Array<KamiApiCardInfoAppleV1CardHistoryModel>;
}

View File

@@ -1,81 +1,84 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardHistoryModel
*/
export interface KamiApiCardInfoAppleV1CardHistoryModel {
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
accountId?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
accountName?: string;
/**
* 订单号
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
orderNo?: string;
/**
* 余额(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
balanceBeforeItunes?: number;
/**
* 余额增长后(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
balanceAfterItunes?: number;
/**
* 余额(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
balanceBeforeAutoIncrement?: number;
/**
* 余额增长后(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
balanceAfterAutoIncrement?: number;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
amount?: number;
/**
* 描述
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
description?: string;
/**
* 创建时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
createdAt?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'accountId'?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'accountName'?: string;
/**
* 订单号
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'orderNo'?: string;
/**
* 余额(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceBeforeItunes'?: number;
/**
* 余额增长后(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceAfterItunes'?: number;
/**
* 余额(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceBeforeAutoIncrement'?: number;
/**
* 余额增长后(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceAfterAutoIncrement'?: number;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'amount'?: number;
/**
* 描述
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'description'?: string;
/**
* 创建时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'createdAt'?: string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
*/
export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq {
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
*/
file: any;
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
*/
'file': any;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
*/
export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes {
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
*/
msg?: string;
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
*/
'msg'?: string;
}

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoCreateReq
*/
export interface KamiApiCardInfoAppleV1CardInfoCreateReq {
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
account: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
password: string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
maxCountLimit: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
remark?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'account': string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'password': string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'maxAmountLimit': number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'maxCountLimit': number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'remark'?: string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoDeleteReq
*/
export interface KamiApiCardInfoAppleV1CardInfoDeleteReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoDeleteReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoDeleteReq
*/
'id': string;
}

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoListReq
*/
export interface KamiApiCardInfoAppleV1CardInfoListReq {
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
account?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
pageSize: KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'account'?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'pageSize': KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
}
export const KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoAppleV1AppleCardListRecord } from './kami-api-card-info-apple-v1-apple-card-list-record';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1CardInfoListRes
*/
export interface KamiApiCardInfoAppleV1CardInfoListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
total?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1AppleCardListRecord>}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
list?: Array<KamiApiCardInfoAppleV1AppleCardListRecord>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1AppleCardListRecord>}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
'list'?: Array<KamiApiCardInfoAppleV1AppleCardListRecord>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
*/
export interface KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
*/
'id': string;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
export interface KamiApiCardInfoAppleV1CardInfoUpdateReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
id: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
account: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
password: string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
maxCountLimit: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
remark?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'id': string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'account': string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'password': string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'maxAmountLimit': number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'maxCountLimit': number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'remark'?: string;
}

View File

@@ -1,48 +1,51 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
export interface KamiApiCardInfoAppleV1CardInfoUpdateStatusReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
status: KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
'id': string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
'status': KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum = {
NUMBER_1: 1,
NUMBER_5: 5,
NUMBER_6: 6,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_7: 7,
NUMBER_3: 3
NUMBER_1: 1,
NUMBER_5: 5,
NUMBER_6: 6,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_7: 7,
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum];
export type KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum = typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum];

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1ConfigGetRes
*/
export interface KamiApiCardInfoAppleV1ConfigGetRes {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
redeemCardRate?: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'redeemCardMinAmount'?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'redeemCardRate'?: number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1ConfigSetReq
*/
export interface KamiApiCardInfoAppleV1ConfigSetReq {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
redeemCardRate: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentAmount': boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'redeemCardMinAmount': number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'redeemCardRate': number;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
*/
export interface KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
*/
orderNo: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
*/
'orderNo': string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeHandlerReq
*/
export interface KamiApiCardInfoAppleV1RechargeHandlerReq {
/**
* 机器ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerReq
*/
machineId: string;
/**
* 机器ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerReq
*/
'machineId': string;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeHandlerRes
*/
export interface KamiApiCardInfoAppleV1RechargeHandlerRes {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
cardNo?: string;
/**
* 卡密
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
cardPass?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
account?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
password?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
accountId?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'orderNo'?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'cardNo'?: string;
/**
* 卡密
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'cardPass'?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'account'?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'password'?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'accountId'?: string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeHistoryListReq
*/
export interface KamiApiCardInfoAppleV1RechargeHistoryListReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListReq
*/
orderNo: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListReq
*/
'orderNo': string;
}

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardAppleHistoryInfo } from './kami-internal-model-entity-v1-card-apple-history-info';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1RechargeHistoryListRes
*/
export interface KamiApiCardInfoAppleV1RechargeHistoryListRes {
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleHistoryInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListRes
*/
list?: Array<KamiInternalModelEntityV1CardAppleHistoryInfo>;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleHistoryInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleHistoryInfo>;
}

View File

@@ -1,80 +1,83 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
export interface KamiApiCardInfoAppleV1RechargeItunesCallbackReq {
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
amount: number;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
accountAmount: number;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
accountId: string;
/**
* 机器ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
machineId: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
orderNo: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
status: KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
remark?: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'amount': number;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'accountAmount': number;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'accountId': string;
/**
* 机器ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'machineId': string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'orderNo': string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'status': KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'remark'?: string;
}
export const KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum = {
NUMBER_30: 30,
NUMBER_31: 31,
NUMBER_40: 40,
NUMBER_32: 32,
NUMBER_10: 10,
NUMBER_12: 12,
NUMBER_11: 11,
NUMBER_14: 14,
NUMBER_20: 20,
NUMBER_13: 13,
NUMBER_15: 15
NUMBER_30: 30,
NUMBER_31: 31,
NUMBER_40: 40,
NUMBER_32: 32,
NUMBER_10: 10,
NUMBER_12: 12,
NUMBER_11: 11,
NUMBER_14: 14,
NUMBER_20: 20,
NUMBER_13: 13,
NUMBER_15: 15
} as const;
export type KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum];

View File

@@ -1,75 +1,78 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
export interface KamiApiCardInfoAppleV1RechargeListDownloadReq {
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
accountId?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
account?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
attach?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
cardNo?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
merchantId?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
cardPass?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
StartDate?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
EndDate?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'accountId'?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'account'?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'attach'?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'orderNo'?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'cardNo'?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'merchantId'?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'cardPass'?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'StartDate'?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'EndDate'?: string;
}

View File

@@ -1,99 +1,102 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeListReq
*/
export interface KamiApiCardInfoAppleV1RechargeListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
pageSize: KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
account?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
accountId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
attach?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
cardNo?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
cardPass?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
merchantId?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
StartDate?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
EndDate?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'pageSize': KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'account'?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'accountId'?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'attach'?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'orderNo'?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'cardNo'?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'cardPass'?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'merchantId'?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'StartDate'?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'EndDate'?: string;
}
export const KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardAppleRechargeInfo } from './kami-internal-model-entity-v1-card-apple-recharge-info';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1RechargeListRes
*/
export interface KamiApiCardInfoAppleV1RechargeListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleRechargeInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
list?: Array<KamiInternalModelEntityV1CardAppleRechargeInfo>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleRechargeInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleRechargeInfo>;
}

View File

@@ -1,39 +1,42 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
export interface KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
orderNo: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
actualAmount: number;
/**
* TOTP
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
totpCode?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'orderNo': string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'actualAmount': number;
/**
* TOTP
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'totpCode'?: string;
}

View File

@@ -1,33 +1,36 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
export interface KamiApiCardInfoAppleV1RechargeOrderResetStatusReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
orderNo: string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
remark?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
'orderNo': string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
'remark'?: string;
}

View File

@@ -1,71 +1,74 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleAddReq {
/**
* 规则名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
name: string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
targetUserId: string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
status: KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
storageUserId: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
amount: number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
targetAmount: number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
intervalTime: number;
/**
* 规则名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'name': string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'targetUserId': string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'storageUserId': string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'amount': number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'targetAmount': number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'intervalTime': number;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = {
NUMBER_0: 0,
NUMBER_1: 1
NUMBER_0: 0,
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum];

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq
*/
id: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq
*/
'id': number;
}

View File

@@ -1,45 +1,48 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
pageSize: KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
'pageSize': KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardAppleHiddenSettings } from './kami-internal-model-entity-v1-card-apple-hidden-settings';
/**
*
*
* @export
* @interface KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleHiddenSettings>}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
list?: Array<KamiInternalModelEntityV1CardAppleHiddenSettings>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleHiddenSettings>}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleHiddenSettings>;
}

View File

@@ -1,42 +1,44 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
id: number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
status: KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
'id': number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
{
export const KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum = {
NUMBER_0: 0,
NUMBER_1: 1
} as const;
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum];

View File

@@ -1,77 +1,80 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq {
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
id: number;
/**
* 规则名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
name: string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
targetUserId: string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
status: KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
storageUserId: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
amount: number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
targetAmount: number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
intervalTime: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'id': number;
/**
* 规则名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'name': string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'targetUserId': string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'storageUserId': string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'amount': number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'targetAmount': number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'intervalTime': number;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum = {
NUMBER_0: 0,
NUMBER_1: 1
NUMBER_0: 0,
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum];

View File

@@ -1,35 +1,38 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealSettingGetRes
*/
export interface KamiApiCardInfoAppleV1RechargeStealSettingGetRes {
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingGetRes
*/
stealStatus?: KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingGetRes
*/
'stealStatus'?: KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum = {
NUMBER_0: 0,
NUMBER_1: 1
NUMBER_0: 0,
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum];

View File

@@ -1,35 +1,38 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeStealSettingReq
*/
export interface KamiApiCardInfoAppleV1RechargeStealSettingReq {
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingReq
*/
stealStatus: KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingReq
*/
'stealStatus': KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = {
NUMBER_0: 0,
NUMBER_1: 1
NUMBER_0: 0,
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum];

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeSubmitQueryReq
*/
export interface KamiApiCardInfoAppleV1RechargeSubmitQueryReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryReq
*/
orderNo: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryReq
*/
'orderNo': string;
}

View File

@@ -1,56 +1,59 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
export interface KamiApiCardInfoAppleV1RechargeSubmitQueryRes {
/**
* 充值返回编码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
status?: KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
message?: string;
/**
* 充值返回编码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
'status'?: KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
'message'?: string;
}
export const KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = {
NUMBER_13: 13,
NUMBER_15: 15,
NUMBER_6: 6,
NUMBER_14: 14,
NUMBER_5: 5,
NUMBER_0: 0,
NUMBER_16: 16,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_12: 12,
NUMBER_10: 10,
NUMBER_11: 11,
NUMBER_7: 7,
NUMBER_8: 8,
NUMBER_1: 1,
NUMBER_3: 3
NUMBER_13: 13,
NUMBER_15: 15,
NUMBER_6: 6,
NUMBER_14: 14,
NUMBER_5: 5,
NUMBER_0: 0,
NUMBER_16: 16,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_12: 12,
NUMBER_10: 10,
NUMBER_11: 11,
NUMBER_7: 7,
NUMBER_8: 8,
NUMBER_1: 1,
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum];
export type KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum];

View File

@@ -1,69 +1,72 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeSubmitReq
*/
export interface KamiApiCardInfoAppleV1RechargeSubmitReq {
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
cardNo?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
cardPass: string;
/**
* 面值
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
faceValue: number;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
callbackUrl?: string;
/**
* 附加信息(目前是上游订单号)
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
attach?: string;
/**
* 时间戳
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
timeStamp?: number;
/**
* 签名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
sign?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
merchantId?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'cardNo'?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'cardPass': string;
/**
* 面值
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'faceValue': number;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'callbackUrl'?: string;
/**
* 附加信息(目前是上游订单号)
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'attach'?: string;
/**
* 时间戳
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'timeStamp'?: number;
/**
* 签名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'sign'?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'merchantId'?: string;
}

View File

@@ -1,62 +1,65 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoAppleV1RechargeSubmitRes
*/
export interface KamiApiCardInfoAppleV1RechargeSubmitRes {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
orderNo?: string;
/**
* 充值返回编码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
status?: KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
message?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'orderNo'?: string;
/**
* 充值返回编码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'status'?: KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'message'?: string;
}
export const KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum = {
NUMBER_13: 13,
NUMBER_15: 15,
NUMBER_6: 6,
NUMBER_14: 14,
NUMBER_5: 5,
NUMBER_0: 0,
NUMBER_16: 16,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_12: 12,
NUMBER_10: 10,
NUMBER_11: 11,
NUMBER_7: 7,
NUMBER_8: 8,
NUMBER_1: 1,
NUMBER_3: 3
NUMBER_13: 13,
NUMBER_15: 15,
NUMBER_6: 6,
NUMBER_14: 14,
NUMBER_5: 5,
NUMBER_0: 0,
NUMBER_16: 16,
NUMBER_4: 4,
NUMBER_2: 2,
NUMBER_9: 9,
NUMBER_12: 12,
NUMBER_10: 10,
NUMBER_11: 11,
NUMBER_7: 7,
NUMBER_8: 8,
NUMBER_1: 1,
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum];
export type KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum = typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum];

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoCTripV1AccountCookieBatchInfo } from './kami-api-card-info-ctrip-v1-account-cookie-batch-info';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1AccountCookieBatchAddReq
*/
export interface KamiApiCardInfoCTripV1AccountCookieBatchAddReq {
/**
* 导入结果
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchAddReq
*/
list?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
/**
* 导入结果
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountCookieBatchCheckReq
*/
export interface KamiApiCardInfoCTripV1AccountCookieBatchCheckReq {
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckReq
*/
file: any;
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckReq
*/
'file': any;
}

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoCTripV1AccountCookieBatchInfo } from './kami-api-card-info-ctrip-v1-account-cookie-batch-info';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
export interface KamiApiCardInfoCTripV1AccountCookieBatchCheckRes {
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
msg?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
list?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
'msg'?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
}

View File

@@ -1,75 +1,78 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
export interface KamiApiCardInfoCTripV1AccountCookieBatchInfo {
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
isAvailable?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
cookie?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
maxCountLimit?: number;
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'username'?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'nickname'?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'balance'?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'isExist'?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'isAvailable'?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'name'?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'cookie'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'maxAmountLimit'?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'maxCountLimit'?: number;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountCookieCheckReq
*/
export interface KamiApiCardInfoCTripV1AccountCookieCheckReq {
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckReq
*/
cookie: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckReq
*/
'cookie': string;
}

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
export interface KamiApiCardInfoCTripV1AccountCookieCheckRes {
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
isAvailable?: boolean;
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'username'?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'nickname'?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'balance'?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'isExist'?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'isAvailable'?: boolean;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountCreateReq
*/
export interface KamiApiCardInfoCTripV1AccountCreateReq {
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
maxCountLimit: number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
status?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
remark?: string;
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'cookie': string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'name'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'maxAmountLimit': number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'maxCountLimit': number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'status'?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'remark'?: string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountDeleteReq
*/
export interface KamiApiCardInfoCTripV1AccountDeleteReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountDeleteReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountDeleteReq
*/
'id': string;
}

View File

@@ -1,163 +1,165 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoAppleV1AppleCardListRecordUploadUser } from './kami-api-card-info-apple-v1-apple-card-list-record-upload-user';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1AccountListRecord
*/
export interface KamiApiCardInfoCTripV1AccountListRecord {
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
id?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
groupId?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
cookie?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
nickname?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
username?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
createUserId?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
category?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
amountTotalSum?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
amountTodaySum?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
balance?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
effectiveBalance?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
status?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
maxCountLimit?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
maxAmountLimit?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
amountTotalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
amountTodayCount?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
accountStatus?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
remark?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
createdAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
updatedAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'id'?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'groupId'?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'name'?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'cookie'?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'nickname'?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'username'?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'createUserId'?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'category'?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTotalSum'?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTodaySum'?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'balance'?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'effectiveBalance'?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'status'?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'maxCountLimit'?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'maxAmountLimit'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTotalCount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTodayCount'?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'accountStatus'?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'remark'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'createdAt'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'updatedAt'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'deletedAt'?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -1,63 +1,66 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountListReq
*/
export interface KamiApiCardInfoCTripV1AccountListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
pageSize: KamiApiCardInfoCTripV1AccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
name?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
nickName?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
cookie?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'pageSize': KamiApiCardInfoCTripV1AccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'name'?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'nickName'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'cookie'?: string;
}
export const KamiApiCardInfoCTripV1AccountListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1AccountListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1AccountListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoCTripV1AccountListRecord } from './kami-api-card-info-ctrip-v1-account-list-record';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1AccountListRes
*/
export interface KamiApiCardInfoCTripV1AccountListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
total?: number;
/**
*
* @type {Array<KamiApiCardInfoCTripV1AccountListRecord>}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
list?: Array<KamiApiCardInfoCTripV1AccountListRecord>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiApiCardInfoCTripV1AccountListRecord>}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountListRecord>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountRefreshStatusReq
*/
export interface KamiApiCardInfoCTripV1AccountRefreshStatusReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountRefreshStatusReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountRefreshStatusReq
*/
'id': string;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountUpdateReq
*/
export interface KamiApiCardInfoCTripV1AccountUpdateReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
status?: number;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
name?: string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
remark?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
maxCountLimit?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'id': string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'status'?: number;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'name'?: string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'remark'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'maxAmountLimit'?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'maxCountLimit'?: number;
}

View File

@@ -1,48 +1,51 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
export interface KamiApiCardInfoCTripV1AccountUpdateStatusReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
status: KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
'id': string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
'status': KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum = {
NUMBER_0: 0,
NUMBER_5: 5,
NUMBER_3: 3,
NUMBER_6: 6,
NUMBER_2: 2,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_1: 1,
NUMBER_7: 7
NUMBER_0: 0,
NUMBER_5: 5,
NUMBER_3: 3,
NUMBER_6: 6,
NUMBER_2: 2,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_1: 1,
NUMBER_7: 7
} as const;
export type KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum];
export type KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum = typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum];

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1AccountWalletListReq
*/
export interface KamiApiCardInfoCTripV1AccountWalletListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
pageSize: KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
accountId: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'pageSize': KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'accountId': string;
}
export const KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemAccountHistory } from './kami-internal-model-entity-v1-card-redeem-account-history';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1AccountWalletListRes
*/
export interface KamiApiCardInfoCTripV1AccountWalletListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
}

View File

@@ -1,81 +1,84 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1ListReq
*/
export interface KamiApiCardInfoCTripV1ListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
pageSize: KamiApiCardInfoCTripV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
giftCardPwd?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
merchantId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
attach?: string;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
accountNickName?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
accountCk?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
dateRange?: Array<string>;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'pageSize': KamiApiCardInfoCTripV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'giftCardPwd'?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'merchantId'?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'attach'?: string;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'accountNickName'?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'accountCk'?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'dateRange'?: Array<string>;
}
export const KamiApiCardInfoCTripV1ListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1ListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1ListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemOrderInfo } from './kami-internal-model-entity-v1-card-redeem-order-info';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1ListRes
*/
export interface KamiApiCardInfoCTripV1ListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1OrderCallbackReq
*/
export interface KamiApiCardInfoCTripV1OrderCallbackReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderCallbackReq
*/
orderNo: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderCallbackReq
*/
'orderNo': string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1OrderHistoryReq
*/
export interface KamiApiCardInfoCTripV1OrderHistoryReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderHistoryReq
*/
orderNo?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderHistoryReq
*/
'orderNo'?: string;
}

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemOrderHistory } from './kami-internal-model-entity-v1-card-redeem-order-history';
/**
*
*
* @export
* @interface KamiApiCardInfoCTripV1OrderHistoryRes
*/
export interface KamiApiCardInfoCTripV1OrderHistoryRes {
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoCTripV1OrderHistoryRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoCTripV1OrderHistoryRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
export interface KamiApiCardInfoCTripV1RedeemConfigGetRes {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
redeemCardRate?: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'redeemCardMinAmount'?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'redeemCardRate'?: number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
export interface KamiApiCardInfoCTripV1RedeemConfigSetReq {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
redeemCardRate: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentAmount': boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'redeemCardMinAmount': number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'redeemCardRate': number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoCTripV1SubmitReq
*/
export interface KamiApiCardInfoCTripV1SubmitReq {
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
cardNo?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
giftCardPwd: string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
notifyUrl: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
merchantId: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
attach?: string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
amount: number;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'cardNo'?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'giftCardPwd': string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'notifyUrl': string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'merchantId': string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'attach'?: string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'amount': number;
}

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoJdV1JDAccountCookieBatchInfo } from './kami-api-card-info-jd-v1-jdaccount-cookie-batch-info';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1JDAccountCookieBatchAddReq
*/
export interface KamiApiCardInfoJdV1JDAccountCookieBatchAddReq {
/**
* 导入结果
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchAddReq
*/
list?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
/**
* 导入结果
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq
*/
export interface KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq {
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq
*/
file: any;
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq
*/
'file': any;
}

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoJdV1JDAccountCookieBatchInfo } from './kami-api-card-info-jd-v1-jdaccount-cookie-batch-info';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
export interface KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes {
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
msg?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
list?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
/**
* 导入结果
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
'msg'?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
}

View File

@@ -1,75 +1,78 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
export interface KamiApiCardInfoJdV1JDAccountCookieBatchInfo {
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
isAvailable?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
cookie?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
maxCountLimit?: number;
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'username'?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'nickname'?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'balance'?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'isExist'?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'isAvailable'?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'name'?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'cookie'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'maxAmountLimit'?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'maxCountLimit'?: number;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountCookieCheckReq
*/
export interface KamiApiCardInfoJdV1JDAccountCookieCheckReq {
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckReq
*/
cookie: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckReq
*/
'cookie': string;
}

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
export interface KamiApiCardInfoJdV1JDAccountCookieCheckRes {
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
isAvailable?: boolean;
/**
* 用户名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'username'?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'nickname'?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'balance'?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'isExist'?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'isAvailable'?: boolean;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountCreateReq
*/
export interface KamiApiCardInfoJdV1JDAccountCreateReq {
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
remark?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
status?: number;
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'cookie': string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'name'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'maxAmountLimit'?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'maxCountLimit'?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'remark'?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'status'?: number;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountDeleteReq
*/
export interface KamiApiCardInfoJdV1JDAccountDeleteReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountDeleteReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountDeleteReq
*/
'id': string;
}

View File

@@ -1,163 +1,165 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoAppleV1AppleCardListRecordUploadUser } from './kami-api-card-info-apple-v1-apple-card-list-record-upload-user';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1JDAccountListRecord
*/
export interface KamiApiCardInfoJdV1JDAccountListRecord {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
id?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
groupId?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
cookie?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
nickname?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
username?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
createUserId?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
category?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
amountTotalSum?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
amountTodaySum?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
balance?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
effectiveBalance?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
status?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
maxCountLimit?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
maxAmountLimit?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
amountTotalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
amountTodayCount?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
accountStatus?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
remark?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
createdAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
updatedAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'id'?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'groupId'?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'name'?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'cookie'?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'nickname'?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'username'?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'createUserId'?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'category'?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTotalSum'?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTodaySum'?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'balance'?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'effectiveBalance'?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'status'?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'maxCountLimit'?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'maxAmountLimit'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTotalCount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTodayCount'?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'accountStatus'?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'remark'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'createdAt'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'updatedAt'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'deletedAt'?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -1,63 +1,66 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountListReq
*/
export interface KamiApiCardInfoJdV1JDAccountListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
pageSize: KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
name?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
nickName?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
cookie?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'pageSize': KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'name'?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'nickName'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'cookie'?: string;
}
export const KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum];
export type KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoJdV1JDAccountListRecord } from './kami-api-card-info-jd-v1-jdaccount-list-record';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1JDAccountListRes
*/
export interface KamiApiCardInfoJdV1JDAccountListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
total?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1JDAccountListRecord>}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
list?: Array<KamiApiCardInfoJdV1JDAccountListRecord>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1JDAccountListRecord>}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountListRecord>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountRefreshStatusReq
*/
export interface KamiApiCardInfoJdV1JDAccountRefreshStatusReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountRefreshStatusReq
*/
id: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountRefreshStatusReq
*/
'id': string;
}

View File

@@ -1,63 +1,66 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountUpdateReq
*/
export interface KamiApiCardInfoJdV1JDAccountUpdateReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
id: string;
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
remark?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
status?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'id': string;
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'cookie': string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'name'?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'maxAmountLimit'?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'maxCountLimit'?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'remark'?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'status'?: number;
}

View File

@@ -1,48 +1,51 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
export interface KamiApiCardInfoJdV1JDAccountUpdateStatusReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
status: KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
'id': string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
'status': KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum = {
NUMBER_0: 0,
NUMBER_5: 5,
NUMBER_3: 3,
NUMBER_6: 6,
NUMBER_2: 2,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_1: 1,
NUMBER_7: 7
NUMBER_0: 0,
NUMBER_5: 5,
NUMBER_3: 3,
NUMBER_6: 6,
NUMBER_2: 2,
NUMBER_8: 8,
NUMBER_4: 4,
NUMBER_1: 1,
NUMBER_7: 7
} as const;
export type KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum];
export type KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum = typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum];

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDAccountWalletListReq
*/
export interface KamiApiCardInfoJdV1JDAccountWalletListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
pageSize: KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
accountId: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'pageSize': KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'accountId': string;
}
export const KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum];
export type KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum = typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemAccountHistory } from './kami-internal-model-entity-v1-card-redeem-account-history';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1JDAccountWalletListRes
*/
export interface KamiApiCardInfoJdV1JDAccountWalletListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDConfigGetRes
*/
export interface KamiApiCardInfoJdV1JDConfigGetRes {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
redeemCardRate?: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'redeemCardMinAmount'?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'redeemCardRate'?: number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1JDConfigSetReq
*/
export interface KamiApiCardInfoJdV1JDConfigSetReq {
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
redeemCardRate: number;
/**
* 是否允许金额异议充值
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentAmount': boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'redeemCardMinAmount': number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'redeemCardRate': number;
}

View File

@@ -1,81 +1,84 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1ListReq
*/
export interface KamiApiCardInfoJdV1ListReq {
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
pageSize: KamiApiCardInfoJdV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
giftCardPwd?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
merchantId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
attach?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoJdV1ListReq
*/
dateRange?: Array<string>;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
accountNickName?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
accountCk?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'pageSize': KamiApiCardInfoJdV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'giftCardPwd'?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'merchantId'?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'attach'?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'dateRange'?: Array<string>;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'accountNickName'?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'accountCk'?: string;
}
export const KamiApiCardInfoJdV1ListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1ListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1ListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1ListReqPageSizeEnum];
export type KamiApiCardInfoJdV1ListReqPageSizeEnum = typeof KamiApiCardInfoJdV1ListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1ListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemOrderInfo } from './kami-internal-model-entity-v1-card-redeem-order-info';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1ListRes
*/
export interface KamiApiCardInfoJdV1ListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1ListRes
*/
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoJdV1ListRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1ListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoJdV1ListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1OrderCallbackReq
*/
export interface KamiApiCardInfoJdV1OrderCallbackReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderCallbackReq
*/
orderNo: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderCallbackReq
*/
'orderNo': string;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1OrderHistoryReq
*/
export interface KamiApiCardInfoJdV1OrderHistoryReq {
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderHistoryReq
*/
orderNo?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderHistoryReq
*/
'orderNo'?: string;
}

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiInternalModelEntityV1CardRedeemOrderHistory } from './kami-internal-model-entity-v1-card-redeem-order-history';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1OrderHistoryRes
*/
export interface KamiApiCardInfoJdV1OrderHistoryRes {
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoJdV1OrderHistoryRes
*/
list?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoJdV1OrderHistoryRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
}

View File

@@ -1,51 +1,54 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1OrderSummaryListReq
*/
export interface KamiApiCardInfoJdV1OrderSummaryListReq {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
roadUid?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
pageSize: KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'roadUid'?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'current': number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'pageSize': KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum;
}
export const KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum = {
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
NUMBER_5: 5,
NUMBER_10: 10,
NUMBER_15: 15,
NUMBER_20: 20,
NUMBER_50: 50,
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum];
export type KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum = typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum];

View File

@@ -1,37 +1,39 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoJdV1OrderSummaryRecord } from './kami-api-card-info-jd-v1-order-summary-record';
/**
*
*
* @export
* @interface KamiApiCardInfoJdV1OrderSummaryListRes
*/
export interface KamiApiCardInfoJdV1OrderSummaryListRes {
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
total?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1OrderSummaryRecord>}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
list?: Array<KamiApiCardInfoJdV1OrderSummaryRecord>;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
'total'?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1OrderSummaryRecord>}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
'list'?: Array<KamiApiCardInfoJdV1OrderSummaryRecord>;
}

View File

@@ -1,93 +1,96 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1OrderSummaryRecord
*/
export interface KamiApiCardInfoJdV1OrderSummaryRecord {
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
merchantUid?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
merchantName?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
succeedCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
succeedShowAmount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
succeedFactAmount?: number;
/**
* 订单总量
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
totalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
totalShowAmount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
totalFactAmount?: number;
/**
* 比例
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
rate?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
date?: string;
/**
* 失败的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
failedCount?: number;
/**
* 创建但未填写的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
waitedCount?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'merchantUid'?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'merchantName'?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedCount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedShowAmount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedFactAmount'?: number;
/**
* 订单总量
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalCount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalShowAmount'?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalFactAmount'?: number;
/**
* 比例
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'rate'?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'date'?: string;
/**
* 失败的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'failedCount'?: number;
/**
* 创建但未填写的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'waitedCount'?: number;
}

View File

@@ -1,57 +1,60 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoJdV1SubmitReq
*/
export interface KamiApiCardInfoJdV1SubmitReq {
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
cardNo?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
giftCardPwd: string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
notifyUrl: string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
amount: number;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
merchantId: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
attach?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'cardNo'?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'giftCardPwd': string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'notifyUrl': string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'amount': number;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'merchantId': string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'attach'?: string;
}

View File

@@ -1,31 +1,33 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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.
*/
// May contain unused imports in some cases
// @ts-ignore
import type { KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo } from './kami-api-card-info-original-jd-v1-original-jdaccount-cookie-batch-info';
/**
*
*
* @export
* @interface KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq
*/
export interface KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq {
/**
* 导入结果
* @type {Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq
*/
list?: Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>;
/**
* 导入结果
* @type {Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>;
}

View File

@@ -1,27 +1,30 @@
/* tslint:disable */
/* eslint-disable */
/**
*
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
* 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 KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchCheckReq
*/
export interface KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchCheckReq {
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchCheckReq
*/
file: any;
/**
* 选择上传文件
* @type {any}
* @memberof KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchCheckReq
*/
'file': any;
}

Some files were not shown because too many files have changed in this diff Show More