feat: 添加分组统计接口

This commit is contained in:
danial
2025-04-27 14:11:08 +08:00
parent d6a956bb10
commit 7deede374c
326 changed files with 34497 additions and 25339 deletions

View File

@@ -187,6 +187,8 @@ models/kami-api-card-info-walmart-v1-group-all-list-res.ts
models/kami-api-card-info-walmart-v1-group-delete-req.ts
models/kami-api-card-info-walmart-v1-group-list-req.ts
models/kami-api-card-info-walmart-v1-group-list-res.ts
models/kami-api-card-info-walmart-v1-group-stat-req.ts
models/kami-api-card-info-walmart-v1-group-stat-res.ts
models/kami-api-card-info-walmart-v1-group-update-req.ts
models/kami-api-card-info-walmart-v1-list-req.ts
models/kami-api-card-info-walmart-v1-list-res.ts
@@ -200,6 +202,8 @@ models/kami-api-card-info-walmart-v1-order-summary-record.ts
models/kami-api-card-info-walmart-v1-redeem-config-get-res.ts
models/kami-api-card-info-walmart-v1-redeem-config-set-req.ts
models/kami-api-card-info-walmart-v1-submit-req.ts
models/kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity-account.ts
models/kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity.ts
models/kami-api-card-redeem-jd-v1-account-add-req.ts
models/kami-api-card-redeem-jd-v1-account-delete-req.ts
models/kami-api-card-redeem-jd-v1-account-get-req.ts

File diff suppressed because it is too large Load Diff

View File

@@ -12,15 +12,32 @@
* 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
@@ -35,7 +52,9 @@ import type { KamiApiSysUserV1TotpStatusGetRes } from '../models';
* TOTPApi - axios parameter creator
* @export
*/
export const TOTPApiAxiosParamCreator = function (configuration?: Configuration) {
export const TOTPApiAxiosParamCreator = function (
configuration?: Configuration
) {
return {
/**
*
@@ -44,9 +63,12 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpImageGet: async (code: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
apiUserTotpImageGet: async (
code: string,
options: RawAxiosRequestConfig = {}
): Promise<RequestArgs> => {
// verify required parameter 'code' is not null or undefined
assertParamExists('apiUserTotpImageGet', 'code', code)
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);
@@ -55,7 +77,11 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
const localVarRequestOptions = {
method: 'GET',
...baseOptions,
...options
};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;
@@ -63,15 +89,18 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
localVarQueryParameter['code'] = code;
}
setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
options: localVarRequestOptions
};
},
/**
@@ -81,7 +110,10 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpResetPost: async (kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
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);
@@ -90,22 +122,33 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarRequestOptions = {
method: 'POST',
...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};
localVarRequestOptions.data = serializeDataIfNeeded(kamiApiSysUserV1TotpResetReq, localVarRequestOptions, configuration)
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,
options: localVarRequestOptions
};
},
/**
@@ -115,7 +158,10 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpSetPost: async (kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
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);
@@ -124,22 +170,33 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarRequestOptions = {
method: 'POST',
...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};
localVarRequestOptions.data = serializeDataIfNeeded(kamiApiSysUserV1TotpSetReq, localVarRequestOptions, configuration)
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,
options: localVarRequestOptions
};
},
/**
@@ -148,7 +205,9 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
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);
@@ -157,30 +216,37 @@ export const TOTPApiAxiosParamCreator = function (configuration?: Configuration)
baseOptions = configuration.baseOptions;
}
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
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};
let headersFromBaseOptions =
baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {
...localVarHeaderParameter,
...headersFromBaseOptions,
...options.headers
};
return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
options: localVarRequestOptions
};
},
}
};
};
/**
* TOTPApi - functional programming interface
* @export
*/
export const TOTPApiFp = function(configuration?: Configuration) {
const localVarAxiosParamCreator = TOTPApiAxiosParamCreator(configuration)
export const TOTPApiFp = function (configuration?: Configuration) {
const localVarAxiosParamCreator = TOTPApiAxiosParamCreator(configuration);
return {
/**
*
@@ -189,11 +255,29 @@ export const TOTPApiFp = function(configuration?: Configuration) {
* @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);
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);
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpImageGet']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
@@ -202,11 +286,32 @@ export const TOTPApiFp = function(configuration?: Configuration) {
* @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);
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);
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpResetPost']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
@@ -215,11 +320,29 @@ export const TOTPApiFp = function(configuration?: Configuration) {
* @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);
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);
const localVarOperationServerBasePath =
operationServerMap['TOTPApi.apiUserTotpSetPost']?.[
localVarOperationServerIndex
]?.url;
return (axios, basePath) =>
createRequestFunction(
localVarAxiosArgs,
globalAxios,
BASE_PATH,
configuration
)(axios, localVarOperationServerBasePath || basePath);
},
/**
*
@@ -227,21 +350,42 @@ export const TOTPApiFp = function(configuration?: Configuration) {
* @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);
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);
},
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)
export const TOTPApiFactory = function (
configuration?: Configuration,
basePath?: string,
axios?: AxiosInstance
) {
const localVarFp = TOTPApiFp(configuration);
return {
/**
*
@@ -250,8 +394,13 @@ export const TOTPApiFactory = function (configuration?: Configuration, basePath?
* @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));
apiUserTotpImageGet(
code: string,
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpImageGetRes> {
return localVarFp
.apiUserTotpImageGet(code, options)
.then(request => request(axios, basePath));
},
/**
*
@@ -260,8 +409,13 @@ export const TOTPApiFactory = function (configuration?: Configuration, basePath?
* @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));
apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpResetRes> {
return localVarFp
.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options)
.then(request => request(axios, basePath));
},
/**
*
@@ -270,8 +424,13 @@ export const TOTPApiFactory = function (configuration?: Configuration, basePath?
* @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));
apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options?: RawAxiosRequestConfig
): AxiosPromise<object> {
return localVarFp
.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options)
.then(request => request(axios, basePath));
},
/**
*
@@ -279,9 +438,13 @@ export const TOTPApiFactory = function (configuration?: Configuration, basePath?
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
apiUserTotpStatusGet(options?: RawAxiosRequestConfig): AxiosPromise<KamiApiSysUserV1TotpStatusGetRes> {
return localVarFp.apiUserTotpStatusGet(options).then((request) => request(axios, basePath));
},
apiUserTotpStatusGet(
options?: RawAxiosRequestConfig
): AxiosPromise<KamiApiSysUserV1TotpStatusGetRes> {
return localVarFp
.apiUserTotpStatusGet(options)
.then(request => request(axios, basePath));
}
};
};
@@ -301,7 +464,9 @@ export class TOTPApi extends BaseAPI {
* @memberof TOTPApi
*/
public apiUserTotpImageGet(code: string, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpImageGet(code, options).then((request) => request(this.axios, this.basePath));
return TOTPApiFp(this.configuration)
.apiUserTotpImageGet(code, options)
.then(request => request(this.axios, this.basePath));
}
/**
@@ -312,8 +477,13 @@ export class TOTPApi extends BaseAPI {
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options).then((request) => request(this.axios, this.basePath));
public apiUserTotpResetPost(
kamiApiSysUserV1TotpResetReq?: KamiApiSysUserV1TotpResetReq,
options?: RawAxiosRequestConfig
) {
return TOTPApiFp(this.configuration)
.apiUserTotpResetPost(kamiApiSysUserV1TotpResetReq, options)
.then(request => request(this.axios, this.basePath));
}
/**
@@ -324,8 +494,13 @@ export class TOTPApi extends BaseAPI {
* @throws {RequiredError}
* @memberof TOTPApi
*/
public apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq, options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options).then((request) => request(this.axios, this.basePath));
public apiUserTotpSetPost(
kamiApiSysUserV1TotpSetReq?: KamiApiSysUserV1TotpSetReq,
options?: RawAxiosRequestConfig
) {
return TOTPApiFp(this.configuration)
.apiUserTotpSetPost(kamiApiSysUserV1TotpSetReq, options)
.then(request => request(this.axios, this.basePath));
}
/**
@@ -336,7 +511,8 @@ export class TOTPApi extends BaseAPI {
* @memberof TOTPApi
*/
public apiUserTotpStatusGet(options?: RawAxiosRequestConfig) {
return TOTPApiFp(this.configuration).apiUserTotpStatusGet(options).then((request) => request(this.axios, this.basePath));
return TOTPApiFp(this.configuration)
.apiUserTotpStatusGet(options)
.then(request => request(this.axios, this.basePath));
}
}

View File

@@ -12,24 +12,23 @@
* 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: '|'
};
/**
@@ -50,13 +49,17 @@ export interface RequestArgs {
export class BaseAPI {
protected configuration: Configuration | undefined;
constructor(configuration?: Configuration, protected basePath: string = BASE_PATH, protected axios: AxiosInstance = globalAxios) {
constructor(
configuration?: Configuration,
protected basePath: string = BASE_PATH,
protected axios: AxiosInstance = globalAxios
) {
if (configuration) {
this.configuration = configuration;
this.basePath = configuration.basePath ?? basePath;
}
}
};
}
/**
*
@@ -65,16 +68,19 @@ export class BaseAPI {
* @extends {Error}
*/
export class RequiredError extends Error {
constructor(public field: string, msg?: string) {
constructor(
public field: string,
msg?: string
) {
super(msg);
this.name = "RequiredError"
this.name = 'RequiredError';
}
}
interface ServerMap {
[key: string]: {
url: string,
description: string,
url: string;
description: string;
}[];
}
@@ -82,5 +88,4 @@ interface ServerMap {
*
* @export
*/
export const operationServerMap: ServerMap = {
}
export const operationServerMap: ServerMap = {};

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,95 +12,129 @@
* 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) {
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}.`);
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) {
export const setApiKeyToObject = async function (
object: any,
keyParamName: string,
configuration?: Configuration
) {
if (configuration && configuration.apiKey) {
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
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) {
export const setBasicAuthToObject = function (
object: any,
configuration?: Configuration
) {
if (configuration && (configuration.username || configuration.password)) {
object["auth"] = { username: configuration.username, password: configuration.password };
object['auth'] = {
username: configuration.username,
password: configuration.password
};
}
}
};
/**
*
* @export
*/
export const setBearerAuthToObject = async function (object: any, configuration?: Configuration) {
export const setBearerAuthToObject = async function (
object: any,
configuration?: Configuration
) {
if (configuration && configuration.accessToken) {
const accessToken = typeof configuration.accessToken === 'function'
const accessToken =
typeof configuration.accessToken === 'function'
? await configuration.accessToken()
: await configuration.accessToken;
object["Authorization"] = "Bearer " + accessToken;
object['Authorization'] = 'Bearer ' + accessToken;
}
}
};
/**
*
* @export
*/
export const setOAuthToObject = async function (object: any, name: string, scopes: string[], configuration?: Configuration) {
export const setOAuthToObject = async function (
object: any,
name: string,
scopes: string[],
configuration?: Configuration
) {
if (configuration && configuration.accessToken) {
const localVarAccessTokenValue = typeof configuration.accessToken === 'function'
const localVarAccessTokenValue =
typeof configuration.accessToken === 'function'
? await configuration.accessToken(name, scopes)
: await configuration.accessToken;
object["Authorization"] = "Bearer " + localVarAccessTokenValue;
object['Authorization'] = 'Bearer ' + localVarAccessTokenValue;
}
}
};
function setFlattenedQueryParams(urlSearchParams: URLSearchParams, parameter: any, key: string = ""): void {
function setFlattenedQueryParams(
urlSearchParams: URLSearchParams,
parameter: any,
key: string = ''
): void {
if (parameter == null) return;
if (typeof parameter === "object") {
if (typeof parameter === 'object') {
if (Array.isArray(parameter)) {
(parameter as any[]).forEach(item => setFlattenedQueryParams(urlSearchParams, item, key));
}
else {
(parameter as any[]).forEach(item =>
setFlattenedQueryParams(urlSearchParams, item, key)
);
} else {
Object.keys(parameter).forEach(currentKey =>
setFlattenedQueryParams(urlSearchParams, parameter[currentKey], `${key}${key !== '' ? '.' : ''}${currentKey}`)
setFlattenedQueryParams(
urlSearchParams,
parameter[currentKey],
`${key}${key !== '' ? '.' : ''}${currentKey}`
)
);
}
}
else {
} else {
if (urlSearchParams.has(key)) {
urlSearchParams.append(key, parameter);
}
else {
} else {
urlSearchParams.set(key, parameter);
}
}
@@ -114,37 +148,55 @@ export const setSearchParams = function (url: URL, ...objects: any[]) {
const searchParams = new URLSearchParams(url.search);
setFlattenedQueryParams(searchParams, objects);
url.search = searchParams.toString();
}
};
/**
*
* @export
*/
export const serializeDataIfNeeded = function (value: any, requestOptions: any, configuration?: Configuration) {
export const serializeDataIfNeeded = function (
value: any,
requestOptions: any,
configuration?: Configuration
) {
const nonString = typeof value !== 'string';
const needsSerialization = nonString && configuration && configuration.isJsonMime
const needsSerialization =
nonString && configuration && configuration.isJsonMime
? configuration.isJsonMime(requestOptions.headers['Content-Type'])
: nonString;
return needsSerialization
? JSON.stringify(value !== undefined ? value : {})
: (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);
};
}
};

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,12 +12,19 @@
* Do not edit the class manually.
*/
export interface ConfigurationParameters {
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
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>);
accessToken?:
| string
| Promise<string>
| ((name?: string, scopes?: string[]) => string)
| ((name?: string, scopes?: string[]) => Promise<string>);
basePath?: string;
serverIndex?: number;
baseOptions?: any;
@@ -30,7 +37,11 @@ export class Configuration {
* @param name security name
* @memberof Configuration
*/
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
apiKey?:
| string
| Promise<string>
| ((name: string) => string)
| ((name: string) => Promise<string>);
/**
* parameter for basic security
*
@@ -51,7 +62,11 @@ export class Configuration {
* @param scopes oauth2 scope
* @memberof Configuration
*/
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
accessToken?:
| string
| Promise<string>
| ((name?: string, scopes?: string[]) => string)
| ((name?: string, scopes?: string[]) => Promise<string>);
/**
* override base path
*
@@ -104,7 +119,14 @@ export class Configuration {
* @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');
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,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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

@@ -175,6 +175,8 @@ export * from './kami-api-card-info-walmart-v1-group-all-list-res';
export * from './kami-api-card-info-walmart-v1-group-delete-req';
export * from './kami-api-card-info-walmart-v1-group-list-req';
export * from './kami-api-card-info-walmart-v1-group-list-res';
export * from './kami-api-card-info-walmart-v1-group-stat-req';
export * from './kami-api-card-info-walmart-v1-group-stat-res';
export * from './kami-api-card-info-walmart-v1-group-update-req';
export * from './kami-api-card-info-walmart-v1-list-req';
export * from './kami-api-card-info-walmart-v1-list-res';
@@ -188,6 +190,8 @@ export * from './kami-api-card-info-walmart-v1-order-summary-record';
export * from './kami-api-card-info-walmart-v1-redeem-config-get-res';
export * from './kami-api-card-info-walmart-v1-redeem-config-set-req';
export * from './kami-api-card-info-walmart-v1-submit-req';
export * from './kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity';
export * from './kami-api-card-info-walmart-v1-v1-card-redeem-account-group-entity-account';
export * from './kami-api-card-redeem-jd-v1-account-add-req';
export * from './kami-api-card-redeem-jd-v1-account-delete-req';
export * from './kami-api-card-redeem-jd-v1-account-get-req';

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,18 +23,17 @@ export interface KamiApiCardInfoAppleV1AppleCardListRecordUploadUser {
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'id'?: string;
id?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'username'?: string;
username?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecordUploadUser
*/
'nickname'?: string;
nickname?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,108 +27,107 @@ export interface KamiApiCardInfoAppleV1AppleCardListRecord {
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'id'?: string;
id?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'account'?: string;
account?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'password'?: string;
password?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'balance'?: number;
balance?: number;
/**
* itunes充值后余额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'balanceItunes'?: number;
balanceItunes?: number;
/**
* 状态 0.停用 1.正常使用(待充值) 2.正在充值 3.已达到单日充值限制
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'status'?: number;
status?: number;
/**
* 今日充值金额,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeAmount'?: number;
todayRechargeAmount?: number;
/**
* 今日充值笔数,临时字段,方便查询
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeCount'?: number;
todayRechargeCount?: number;
/**
* 今日日期,临时字段,方便查询
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'todayRechargeDatetime'?: string;
todayRechargeDatetime?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdUserId'?: string;
createdUserId?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdUserRole'?: string;
createdUserRole?: string;
/**
* 最大充值限制金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值限制次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'remark'?: string;
remark?: string;
/**
* 创建日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'createdAt'?: string;
createdAt?: string;
/**
* 更新日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'updatedAt'?: string;
updatedAt?: string;
/**
* 删除日期
* @type {string}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'deletedAt'?: string;
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoAppleV1AppleCardListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,12 +23,11 @@ export interface KamiApiCardInfoAppleV1CallBackOrderManualReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
'orderNo': string;
orderNo: string;
/**
* 充值ID
* @type {number}
* @memberof KamiApiCardInfoAppleV1CallBackOrderManualReq
*/
'id'?: number;
id?: number;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,25 +23,25 @@ export interface KamiApiCardInfoAppleV1CardHistoryInfoListReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'pageSize': KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum;
pageSize: KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum;
/**
* 苹果账户名
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'accountName'?: string;
accountName?: string;
/**
* 苹果账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListReq
*/
'accountId'?: string;
accountId?: string;
}
export const KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum = {
@@ -55,6 +53,5 @@ export const KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1CardHistoryInfoListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoAppleV1CardHistoryInfoListRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1CardHistoryModel>}
* @memberof KamiApiCardInfoAppleV1CardHistoryInfoListRes
*/
'list'?: Array<KamiApiCardInfoAppleV1CardHistoryModel>;
list?: Array<KamiApiCardInfoAppleV1CardHistoryModel>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,60 +23,59 @@ export interface KamiApiCardInfoAppleV1CardHistoryModel {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'accountId'?: string;
accountId?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'accountName'?: string;
accountName?: string;
/**
* 订单号
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'orderNo'?: string;
orderNo?: string;
/**
* 余额(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceBeforeItunes'?: number;
balanceBeforeItunes?: number;
/**
* 余额增长后(itunes)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceAfterItunes'?: number;
balanceAfterItunes?: number;
/**
* 余额(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceBeforeAutoIncrement'?: number;
balanceBeforeAutoIncrement?: number;
/**
* 余额增长后(自动计算)
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'balanceAfterAutoIncrement'?: number;
balanceAfterAutoIncrement?: number;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'amount'?: number;
amount?: number;
/**
* 描述
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'description'?: string;
description?: string;
/**
* 创建时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardHistoryModel
*/
'createdAt'?: string;
createdAt?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq {
* @type {any}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxReq
*/
'file': any;
file: any;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoBatchAddFromXlsxRes
*/
'msg'?: string;
msg?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,30 +23,29 @@ export interface KamiApiCardInfoAppleV1CardInfoCreateReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'account': string;
account: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'password': string;
password: string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'maxAmountLimit': number;
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'maxCountLimit': number;
maxCountLimit: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoCreateReq
*/
'remark'?: string;
remark?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1CardInfoDeleteReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoDeleteReq
*/
'id': string;
id: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,19 +23,19 @@ export interface KamiApiCardInfoAppleV1CardInfoListReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'account'?: string;
account?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListReq
*/
'pageSize': KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
pageSize: KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum;
}
export const KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = {
@@ -49,6 +47,5 @@ export const KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1CardInfoListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoAppleV1CardInfoListRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiApiCardInfoAppleV1AppleCardListRecord>}
* @memberof KamiApiCardInfoAppleV1CardInfoListRes
*/
'list'?: Array<KamiApiCardInfoAppleV1AppleCardListRecord>;
list?: Array<KamiApiCardInfoAppleV1AppleCardListRecord>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoSuspendOrContinueReq
*/
'id': string;
id: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoAppleV1CardInfoUpdateReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'id': string;
id: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'account': string;
account: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'password': string;
password: string;
/**
* 最大充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'maxAmountLimit': number;
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'maxCountLimit': number;
maxCountLimit: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateReq
*/
'remark'?: string;
remark?: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,13 +23,13 @@ export interface KamiApiCardInfoAppleV1CardInfoUpdateStatusReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
'id': string;
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1CardInfoUpdateStatusReq
*/
'status': KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum;
status: KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum = {
@@ -46,6 +44,5 @@ export const KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum = {
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum = typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum];
export type KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1CardInfoUpdateStatusReqStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoAppleV1ConfigGetRes {
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'redeemCardMinAmount'?: number;
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigGetRes
*/
'redeemCardRate'?: number;
redeemCardRate?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoAppleV1ConfigSetReq {
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentAmount': boolean;
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'redeemCardMinAmount': number;
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoAppleV1ConfigSetReq
*/
'redeemCardRate': number;
redeemCardRate: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeDuplicatedCardPassReq
*/
'orderNo': string;
orderNo: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1RechargeHandlerReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerReq
*/
'machineId': string;
machineId: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoAppleV1RechargeHandlerRes {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'orderNo'?: string;
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'cardNo'?: string;
cardNo?: string;
/**
* 卡密
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'cardPass'?: string;
cardPass?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'account'?: string;
account?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'password'?: string;
password?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHandlerRes
*/
'accountId'?: string;
accountId?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1RechargeHistoryListReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListReq
*/
'orderNo': string;
orderNo: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoAppleV1RechargeHistoryListRes {
* @type {Array<KamiInternalModelEntityV1CardAppleHistoryInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeHistoryListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleHistoryInfo>;
list?: Array<KamiInternalModelEntityV1CardAppleHistoryInfo>;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,43 +23,43 @@ export interface KamiApiCardInfoAppleV1RechargeItunesCallbackReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'amount': number;
amount: number;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'accountAmount': number;
accountAmount: number;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'accountId': string;
accountId: string;
/**
* 机器ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'machineId': string;
machineId: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'orderNo': string;
orderNo: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'status': KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum;
status: KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeItunesCallbackReq
*/
'remark'?: string;
remark?: string;
}
export const KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum = {
@@ -78,6 +76,5 @@ export const KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum = {
NUMBER_15: 15
} as const;
export type KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeItunesCallbackReqStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,54 +23,53 @@ export interface KamiApiCardInfoAppleV1RechargeListDownloadReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'accountId'?: string;
accountId?: string;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'account'?: string;
account?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'attach'?: string;
attach?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'orderNo'?: string;
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'cardNo'?: string;
cardNo?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'merchantId'?: string;
merchantId?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'cardPass'?: string;
cardPass?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'StartDate'?: string;
StartDate?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListDownloadReq
*/
'EndDate'?: string;
EndDate?: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,67 +23,67 @@ export interface KamiApiCardInfoAppleV1RechargeListReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'pageSize': KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum;
pageSize: KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum;
/**
* 账户
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'account'?: string;
account?: string;
/**
* 账户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'accountId'?: string;
accountId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'attach'?: string;
attach?: string;
/**
* 订单ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'orderNo'?: string;
orderNo?: string;
/**
* 卡号
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'cardNo'?: string;
cardNo?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'cardPass'?: string;
cardPass?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'merchantId'?: string;
merchantId?: string;
/**
* 开始时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'StartDate'?: string;
StartDate?: string;
/**
* 结束时间
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeListReq
*/
'EndDate'?: string;
EndDate?: string;
}
export const KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum = {
@@ -97,6 +95,5 @@ export const KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoAppleV1RechargeListRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleRechargeInfo>}
* @memberof KamiApiCardInfoAppleV1RechargeListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleRechargeInfo>;
list?: Array<KamiInternalModelEntityV1CardAppleRechargeInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,18 +23,17 @@ export interface KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'orderNo': string;
orderNo: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'actualAmount': number;
actualAmount: number;
/**
* TOTP
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderModifyActualAmountReq
*/
'totpCode'?: string;
totpCode?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,12 +23,11 @@ export interface KamiApiCardInfoAppleV1RechargeOrderResetStatusReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
'orderNo': string;
orderNo: string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeOrderResetStatusReq
*/
'remark'?: string;
remark?: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,43 +23,43 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleAddReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'name': string;
name: string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'targetUserId': string;
targetUserId: string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum;
status: KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'storageUserId': string;
storageUserId: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'amount': number;
amount: number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'targetAmount': number;
targetAmount: number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleAddReq
*/
'intervalTime': number;
intervalTime: number;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = {
@@ -69,6 +67,5 @@ export const KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = {
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleAddReqStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleDeleteReq
*/
'id': number;
id: number;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,13 +23,13 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleListReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListReq
*/
'pageSize': KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum;
pageSize: KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = {
@@ -43,6 +41,5 @@ export const KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleListRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardAppleHiddenSettings>}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardAppleHiddenSettings>;
list?: Array<KamiInternalModelEntityV1CardAppleHiddenSettings>;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,20 +23,20 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
'id': number;
id: number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum;
status: KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum = {
export const KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
{
NUMBER_0: 0,
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum];
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleStatusUpdateReqStatusEnum];

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,49 +23,49 @@ export interface KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'id': number;
id: number;
/**
* 规则名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'name': string;
name: string;
/**
* 目标用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'targetUserId': string;
targetUserId: string;
/**
* 单独某条规则的状态
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'status': KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum;
status: KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum;
/**
* 存储用户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'storageUserId': string;
storageUserId: string;
/**
* 金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'amount': number;
amount: number;
/**
* 目标金额
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'targetAmount': number;
targetAmount: number;
/**
* 时间间隔
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReq
*/
'intervalTime': number;
intervalTime: number;
}
export const KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum = {
@@ -75,6 +73,5 @@ export const KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum = {
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealRuleUpdateReqStatusEnum];

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,7 +23,7 @@ export interface KamiApiCardInfoAppleV1RechargeStealSettingGetRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingGetRes
*/
'stealStatus'?: KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum;
stealStatus?: KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum = {
@@ -33,6 +31,5 @@ export const KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum = {
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingGetResStealStatusEnum];

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,7 +23,7 @@ export interface KamiApiCardInfoAppleV1RechargeStealSettingReq {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeStealSettingReq
*/
'stealStatus': KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum;
stealStatus: KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum;
}
export const KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = {
@@ -33,6 +31,5 @@ export const KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = {
NUMBER_1: 1
} as const;
export type KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum = typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum];
export type KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeStealSettingReqStealStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoAppleV1RechargeSubmitQueryReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryReq
*/
'orderNo': string;
orderNo: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,13 +23,13 @@ export interface KamiApiCardInfoAppleV1RechargeSubmitQueryRes {
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
'status'?: KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum;
status?: KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitQueryRes
*/
'message'?: string;
message?: string;
}
export const KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = {
@@ -54,6 +52,5 @@ export const KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = {
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum = typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum];
export type KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitQueryResStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,48 +23,47 @@ export interface KamiApiCardInfoAppleV1RechargeSubmitReq {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'cardNo'?: string;
cardNo?: string;
/**
* 密码
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'cardPass': string;
cardPass: string;
/**
* 面值
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'faceValue': number;
faceValue: number;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'callbackUrl'?: string;
callbackUrl?: string;
/**
* 附加信息(目前是上游订单号)
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'attach'?: string;
attach?: string;
/**
* 时间戳
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'timeStamp'?: number;
timeStamp?: number;
/**
* 签名
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'sign'?: string;
sign?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitReq
*/
'merchantId'?: string;
merchantId?: string;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,19 +23,19 @@ export interface KamiApiCardInfoAppleV1RechargeSubmitRes {
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'orderNo'?: string;
orderNo?: string;
/**
* 充值返回编码
* @type {number}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'status'?: KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum;
status?: KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum;
/**
* 详细描述信息
* @type {string}
* @memberof KamiApiCardInfoAppleV1RechargeSubmitRes
*/
'message'?: string;
message?: string;
}
export const KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum = {
@@ -60,6 +58,5 @@ export const KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum = {
NUMBER_3: 3
} as const;
export type KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum = typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum];
export type KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum =
(typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum)[keyof typeof KamiApiCardInfoAppleV1RechargeSubmitResStatusEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoCTripV1AccountCookieBatchAddReq {
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
list?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1AccountCookieBatchCheckReq {
* @type {any}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckReq
*/
'file': any;
file: any;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoCTripV1AccountCookieBatchCheckRes {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
'msg'?: string;
msg?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchCheckRes
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
list?: Array<KamiApiCardInfoCTripV1AccountCookieBatchInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,54 +23,53 @@ export interface KamiApiCardInfoCTripV1AccountCookieBatchInfo {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'username'?: string;
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'nickname'?: string;
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'balance'?: number;
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'isExist'?: boolean;
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'isAvailable'?: boolean;
isAvailable?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'name'?: string;
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'cookie'?: string;
cookie?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieBatchInfo
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1AccountCookieCheckReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckReq
*/
'cookie': string;
cookie: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,30 +23,29 @@ export interface KamiApiCardInfoCTripV1AccountCookieCheckRes {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'username'?: string;
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'nickname'?: string;
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'balance'?: number;
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'isExist'?: boolean;
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountCookieCheckRes
*/
'isAvailable'?: boolean;
isAvailable?: boolean;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoCTripV1AccountCreateReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'cookie': string;
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'name'?: string;
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'maxAmountLimit': number;
maxAmountLimit: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'maxCountLimit': number;
maxCountLimit: number;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'status'?: number;
status?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountCreateReq
*/
'remark'?: string;
remark?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1AccountDeleteReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountDeleteReq
*/
'id': string;
id: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,138 +27,137 @@ export interface KamiApiCardInfoCTripV1AccountListRecord {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'id'?: string;
id?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'groupId'?: number;
groupId?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'name'?: string;
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'cookie'?: string;
cookie?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'nickname'?: string;
nickname?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'username'?: string;
username?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'createUserId'?: string;
createUserId?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'category'?: string;
category?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTotalSum'?: number;
amountTotalSum?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTodaySum'?: number;
amountTodaySum?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'balance'?: number;
balance?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'effectiveBalance'?: number;
effectiveBalance?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'status'?: number;
status?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTotalCount'?: number;
amountTotalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'amountTodayCount'?: number;
amountTodayCount?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'accountStatus'?: boolean;
accountStatus?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'remark'?: string;
remark?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'createdAt'?: string;
createdAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'updatedAt'?: string;
updatedAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'deletedAt'?: string;
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoCTripV1AccountListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,31 +23,31 @@ export interface KamiApiCardInfoCTripV1AccountListReq {
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'pageSize': KamiApiCardInfoCTripV1AccountListReqPageSizeEnum;
pageSize: KamiApiCardInfoCTripV1AccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'name'?: string;
name?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'nickName'?: string;
nickName?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountListReq
*/
'cookie'?: string;
cookie?: string;
}
export const KamiApiCardInfoCTripV1AccountListReqPageSizeEnum = {
@@ -61,6 +59,5 @@ export const KamiApiCardInfoCTripV1AccountListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1AccountListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1AccountListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1AccountListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoCTripV1AccountListRes {
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiApiCardInfoCTripV1AccountListRecord>}
* @memberof KamiApiCardInfoCTripV1AccountListRes
*/
'list'?: Array<KamiApiCardInfoCTripV1AccountListRecord>;
list?: Array<KamiApiCardInfoCTripV1AccountListRecord>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1AccountRefreshStatusReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountRefreshStatusReq
*/
'id': string;
id: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoCTripV1AccountUpdateReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'id': string;
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'status'?: number;
status?: number;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'name'?: string;
name?: string;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'remark'?: string;
remark?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateReq
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,13 +23,13 @@ export interface KamiApiCardInfoCTripV1AccountUpdateStatusReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
'id': string;
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountUpdateStatusReq
*/
'status': KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum;
status: KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum = {
@@ -46,6 +44,5 @@ export const KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum = {
NUMBER_7: 7
} as const;
export type KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum = typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum];
export type KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoCTripV1AccountUpdateStatusReqStatusEnum];

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,19 +23,19 @@ export interface KamiApiCardInfoCTripV1AccountWalletListReq {
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'pageSize': KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum;
pageSize: KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoCTripV1AccountWalletListReq
*/
'accountId': string;
accountId: string;
}
export const KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum = {
@@ -49,6 +47,5 @@ export const KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1AccountWalletListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoCTripV1AccountWalletListRes {
* @type {number}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoCTripV1AccountWalletListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
list?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,49 +23,49 @@ export interface KamiApiCardInfoCTripV1ListReq {
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'pageSize': KamiApiCardInfoCTripV1ListReqPageSizeEnum;
pageSize: KamiApiCardInfoCTripV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'giftCardPwd'?: string;
giftCardPwd?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'merchantId'?: string;
merchantId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'attach'?: string;
attach?: string;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'accountNickName'?: string;
accountNickName?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'accountCk'?: string;
accountCk?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoCTripV1ListReq
*/
'dateRange'?: Array<string>;
dateRange?: Array<string>;
}
export const KamiApiCardInfoCTripV1ListReqPageSizeEnum = {
@@ -79,6 +77,5 @@ export const KamiApiCardInfoCTripV1ListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoCTripV1ListReqPageSizeEnum = typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum[keyof typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum];
export type KamiApiCardInfoCTripV1ListReqPageSizeEnum =
(typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum)[keyof typeof KamiApiCardInfoCTripV1ListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoCTripV1ListRes {
* @type {number}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoCTripV1ListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
list?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1OrderCallbackReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderCallbackReq
*/
'orderNo': string;
orderNo: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoCTripV1OrderHistoryReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1OrderHistoryReq
*/
'orderNo'?: string;
orderNo?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoCTripV1OrderHistoryRes {
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoCTripV1OrderHistoryRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
list?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoCTripV1RedeemConfigGetRes {
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'redeemCardMinAmount'?: number;
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigGetRes
*/
'redeemCardRate'?: number;
redeemCardRate?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoCTripV1RedeemConfigSetReq {
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentAmount': boolean;
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'redeemCardMinAmount': number;
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoCTripV1RedeemConfigSetReq
*/
'redeemCardRate': number;
redeemCardRate: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoCTripV1SubmitReq {
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'cardNo'?: string;
cardNo?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'giftCardPwd': string;
giftCardPwd: string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'notifyUrl': string;
notifyUrl: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'merchantId': string;
merchantId: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'attach'?: string;
attach?: string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoCTripV1SubmitReq
*/
'amount': number;
amount: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoJdV1JDAccountCookieBatchAddReq {
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
list?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq {
* @type {any}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckReq
*/
'file': any;
file: any;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
'msg'?: string;
msg?: string;
/**
* 导入结果
* @type {Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchCheckRes
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
list?: Array<KamiApiCardInfoJdV1JDAccountCookieBatchInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,54 +23,53 @@ export interface KamiApiCardInfoJdV1JDAccountCookieBatchInfo {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'username'?: string;
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'nickname'?: string;
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'balance'?: number;
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'isExist'?: boolean;
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'isAvailable'?: boolean;
isAvailable?: boolean;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'name'?: string;
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'cookie'?: string;
cookie?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieBatchInfo
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1JDAccountCookieCheckReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckReq
*/
'cookie': string;
cookie: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,30 +23,29 @@ export interface KamiApiCardInfoJdV1JDAccountCookieCheckRes {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'username'?: string;
username?: string;
/**
* 昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'nickname'?: string;
nickname?: string;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'balance'?: number;
balance?: number;
/**
* 是否存在系统中
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'isExist'?: boolean;
isExist?: boolean;
/**
* 是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountCookieCheckRes
*/
'isAvailable'?: boolean;
isAvailable?: boolean;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoJdV1JDAccountCreateReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'cookie': string;
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'name'?: string;
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'remark'?: string;
remark?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountCreateReq
*/
'status'?: number;
status?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1JDAccountDeleteReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountDeleteReq
*/
'id': string;
id: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,138 +27,137 @@ export interface KamiApiCardInfoJdV1JDAccountListRecord {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'id'?: string;
id?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'groupId'?: number;
groupId?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'name'?: string;
name?: string;
/**
* cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'cookie'?: string;
cookie?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'nickname'?: string;
nickname?: string;
/**
* 京东用户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'username'?: string;
username?: string;
/**
* 创建人
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'createUserId'?: string;
createUserId?: string;
/**
* 账户类型
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'category'?: string;
category?: string;
/**
* 账单所有统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTotalSum'?: number;
amountTotalSum?: number;
/**
* 账单今日统计金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTodaySum'?: number;
amountTodaySum?: number;
/**
* 余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'balance'?: number;
balance?: number;
/**
* 有效充值余额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'effectiveBalance'?: number;
effectiveBalance?: number;
/**
* 状态 1.正常 0.禁用
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'status'?: number;
status?: number;
/**
* 账号最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTotalCount'?: number;
amountTotalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'amountTodayCount'?: number;
amountTodayCount?: number;
/**
* 账号是否可用
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'accountStatus'?: boolean;
accountStatus?: boolean;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'remark'?: string;
remark?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'createdAt'?: string;
createdAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'updatedAt'?: string;
updatedAt?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'deletedAt'?: string;
deletedAt?: string;
/**
*
* @type {KamiApiCardInfoAppleV1AppleCardListRecordUploadUser}
* @memberof KamiApiCardInfoJdV1JDAccountListRecord
*/
'uploadUser'?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
uploadUser?: KamiApiCardInfoAppleV1AppleCardListRecordUploadUser;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,31 +23,31 @@ export interface KamiApiCardInfoJdV1JDAccountListReq {
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'pageSize': KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum;
pageSize: KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum;
/**
* 账户名称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'name'?: string;
name?: string;
/**
* 用户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'nickName'?: string;
nickName?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountListReq
*/
'cookie'?: string;
cookie?: string;
}
export const KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = {
@@ -61,6 +59,5 @@ export const KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum = typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum];
export type KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoJdV1JDAccountListRes {
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1JDAccountListRecord>}
* @memberof KamiApiCardInfoJdV1JDAccountListRes
*/
'list'?: Array<KamiApiCardInfoJdV1JDAccountListRecord>;
list?: Array<KamiApiCardInfoJdV1JDAccountListRecord>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1JDAccountRefreshStatusReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountRefreshStatusReq
*/
'id': string;
id: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,42 +23,41 @@ export interface KamiApiCardInfoJdV1JDAccountUpdateReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'id': string;
id: string;
/**
* cookie不能为空
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'cookie': string;
cookie: string;
/**
* 别名
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'name'?: string;
name?: string;
/**
* 最大充值限制
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'maxAmountLimit'?: number;
maxAmountLimit?: number;
/**
* 最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'maxCountLimit'?: number;
maxCountLimit?: number;
/**
* 备注
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'remark'?: string;
remark?: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateReq
*/
'status'?: number;
status?: number;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,13 +23,13 @@ export interface KamiApiCardInfoJdV1JDAccountUpdateStatusReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
'id': string;
id: string;
/**
* 状态
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountUpdateStatusReq
*/
'status': KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum;
status: KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum;
}
export const KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum = {
@@ -46,6 +44,5 @@ export const KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum = {
NUMBER_7: 7
} as const;
export type KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum = typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum[keyof typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum];
export type KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum =
(typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountUpdateStatusReqStatusEnum];

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,19 +23,19 @@ export interface KamiApiCardInfoJdV1JDAccountWalletListReq {
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'pageSize': KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum;
pageSize: KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListReq
*/
'accountId': string;
accountId: string;
}
export const KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum = {
@@ -49,6 +47,5 @@ export const KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum = typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum];
export type KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1JDAccountWalletListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoJdV1JDAccountWalletListRes {
* @type {number}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemAccountHistory>}
* @memberof KamiApiCardInfoJdV1JDAccountWalletListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
list?: Array<KamiInternalModelEntityV1CardRedeemAccountHistory>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoJdV1JDConfigGetRes {
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentAmount'?: boolean;
isAllowDifferentAmount?: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentSucceedCallback'?: boolean;
isAllowDifferentSucceedCallback?: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowDifferentFailCallback'?: boolean;
isAllowDifferentFailCallback?: boolean;
/**
* 充值卡最小充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'redeemCardMinAmount'?: number;
redeemCardMinAmount?: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'isAllowCompensatedCallback'?: boolean;
isAllowCompensatedCallback?: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigGetRes
*/
'redeemCardRate'?: number;
redeemCardRate?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoJdV1JDConfigSetReq {
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentAmount': boolean;
isAllowDifferentAmount: boolean;
/**
* 是否允许金额异议回调(充值成功)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentSucceedCallback': boolean;
isAllowDifferentSucceedCallback: boolean;
/**
* 是否允许金额异议回调(充值失败)
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowDifferentFailCallback': boolean;
isAllowDifferentFailCallback: boolean;
/**
* 账号单日最大充值次数
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'redeemCardMinAmount': number;
redeemCardMinAmount: number;
/**
* 是否允许补卡自动回调
* @type {boolean}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'isAllowCompensatedCallback': boolean;
isAllowCompensatedCallback: boolean;
/**
* 充值卡充值速率
* @type {number}
* @memberof KamiApiCardInfoJdV1JDConfigSetReq
*/
'redeemCardRate': number;
redeemCardRate: number;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,49 +23,49 @@ export interface KamiApiCardInfoJdV1ListReq {
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'pageSize': KamiApiCardInfoJdV1ListReqPageSizeEnum;
pageSize: KamiApiCardInfoJdV1ListReqPageSizeEnum;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'giftCardPwd'?: string;
giftCardPwd?: string;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'merchantId'?: string;
merchantId?: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'attach'?: string;
attach?: string;
/**
* 时间范围
* @type {Array<string>}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'dateRange'?: Array<string>;
dateRange?: Array<string>;
/**
* 账户昵称
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'accountNickName'?: string;
accountNickName?: string;
/**
* 账户cookie
* @type {string}
* @memberof KamiApiCardInfoJdV1ListReq
*/
'accountCk'?: string;
accountCk?: string;
}
export const KamiApiCardInfoJdV1ListReqPageSizeEnum = {
@@ -79,6 +77,5 @@ export const KamiApiCardInfoJdV1ListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1ListReqPageSizeEnum = typeof KamiApiCardInfoJdV1ListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1ListReqPageSizeEnum];
export type KamiApiCardInfoJdV1ListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1ListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1ListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoJdV1ListRes {
* @type {number}
* @memberof KamiApiCardInfoJdV1ListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderInfo>}
* @memberof KamiApiCardInfoJdV1ListRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
list?: Array<KamiInternalModelEntityV1CardRedeemOrderInfo>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1OrderCallbackReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderCallbackReq
*/
'orderNo': string;
orderNo: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,6 +23,5 @@ export interface KamiApiCardInfoJdV1OrderHistoryReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderHistoryReq
*/
'orderNo'?: string;
orderNo?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoJdV1OrderHistoryRes {
* @type {Array<KamiInternalModelEntityV1CardRedeemOrderHistory>}
* @memberof KamiApiCardInfoJdV1OrderHistoryRes
*/
'list'?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
list?: Array<KamiInternalModelEntityV1CardRedeemOrderHistory>;
}

View File

@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,19 +23,19 @@ export interface KamiApiCardInfoJdV1OrderSummaryListReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'roadUid'?: string;
roadUid?: string;
/**
* 页数
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'current': number;
current: number;
/**
* 页码
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListReq
*/
'pageSize': KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum;
pageSize: KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum;
}
export const KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum = {
@@ -49,6 +47,5 @@ export const KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum = {
NUMBER_100: 100
} as const;
export type KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum = typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum[keyof typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum];
export type KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum =
(typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum)[keyof typeof KamiApiCardInfoJdV1OrderSummaryListReqPageSizeEnum];

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,12 +27,11 @@ export interface KamiApiCardInfoJdV1OrderSummaryListRes {
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
'total'?: number;
total?: number;
/**
*
* @type {Array<KamiApiCardInfoJdV1OrderSummaryRecord>}
* @memberof KamiApiCardInfoJdV1OrderSummaryListRes
*/
'list'?: Array<KamiApiCardInfoJdV1OrderSummaryRecord>;
list?: Array<KamiApiCardInfoJdV1OrderSummaryRecord>;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,72 +23,71 @@ export interface KamiApiCardInfoJdV1OrderSummaryRecord {
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'merchantUid'?: string;
merchantUid?: string;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'merchantName'?: string;
merchantName?: string;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedCount'?: number;
succeedCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedShowAmount'?: number;
succeedShowAmount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'succeedFactAmount'?: number;
succeedFactAmount?: number;
/**
* 订单总量
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalCount'?: number;
totalCount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalShowAmount'?: number;
totalShowAmount?: number;
/**
*
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'totalFactAmount'?: number;
totalFactAmount?: number;
/**
* 比例
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'rate'?: number;
rate?: number;
/**
*
* @type {string}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'date'?: string;
date?: string;
/**
* 失败的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'failedCount'?: number;
failedCount?: number;
/**
* 创建但未填写的订单
* @type {number}
* @memberof KamiApiCardInfoJdV1OrderSummaryRecord
*/
'waitedCount'?: number;
waitedCount?: number;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,8 +12,6 @@
* Do not edit the class manually.
*/
/**
*
* @export
@@ -25,36 +23,35 @@ export interface KamiApiCardInfoJdV1SubmitReq {
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'cardNo'?: string;
cardNo?: string;
/**
* 礼品卡密码
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'giftCardPwd': string;
giftCardPwd: string;
/**
* 回调地址
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'notifyUrl': string;
notifyUrl: string;
/**
* 充值金额
* @type {number}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'amount': number;
amount: number;
/**
* 商户ID
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'merchantId': string;
merchantId: string;
/**
* 附加信息
* @type {string}
* @memberof KamiApiCardInfoJdV1SubmitReq
*/
'attach'?: string;
attach?: string;
}

View File

@@ -1,5 +1,5 @@
/* tslint:disable */
/* eslint-disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
@@ -12,7 +12,6 @@
* 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';
@@ -28,6 +27,5 @@ export interface KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq {
* @type {Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>}
* @memberof KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchAddReq
*/
'list'?: Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>;
list?: Array<KamiApiCardInfoOriginalJdV1OriginalJDAccountCookieBatchInfo>;
}

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