@indexea/sdk
Version:
Indexea JavaScript SDK (indexea.com)
101 lines (91 loc) • 2.61 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* Indexea OpenAPI
* 这是 Indexea 搜索服务平台的 OpenAPI,用于描述平台的所有接口信息,你可以通过这个页面来了解和在线验证平台的所有接口信息。 ### Errors 本 API 使用标准的 HTTP 状态码来指示操作成功或者失败,如果失败将会在 body 中以 JSON 格式提供详细的错误信息,如下所示: ``` { \"error\": 404, \"message\": \"page not found\" } ```
*
* The version of the OpenAPI document: 1.0.0
* Contact: indexea.com@gmail.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from '../runtime';
/**
* 联系信息表单
* @export
* @interface ContactForm
*/
export interface ContactForm {
/**
*
* @type {string}
* @memberof ContactForm
*/
company: string;
/**
*
* @type {string}
* @memberof ContactForm
*/
name: string;
/**
*
* @type {string}
* @memberof ContactForm
*/
tel: string;
/**
*
* @type {string}
* @memberof ContactForm
*/
email?: string;
/**
*
* @type {string}
* @memberof ContactForm
*/
memo?: string;
}
/**
* Check if a given object implements the ContactForm interface.
*/
export function instanceOfContactForm(value: object): boolean {
let isInstance = true;
isInstance = isInstance && "company" in value;
isInstance = isInstance && "name" in value;
isInstance = isInstance && "tel" in value;
return isInstance;
}
export function ContactFormFromJSON(json: any): ContactForm {
return ContactFormFromJSONTyped(json, false);
}
export function ContactFormFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactForm {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'company': json['company'],
'name': json['name'],
'tel': json['tel'],
'email': !exists(json, 'email') ? undefined : json['email'],
'memo': !exists(json, 'memo') ? undefined : json['memo'],
};
}
export function ContactFormToJSON(value?: ContactForm | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'company': value.company,
'name': value.name,
'tel': value.tel,
'email': value.email,
'memo': value.memo,
};
}