/**
 * 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.
 */
/**
 * 公司信息(开票信息,快递信息)
 * @export
 * @interface CompanyBean
 */
export interface CompanyBean {
    /**
     * 公司名称
     * @type {string}
     * @memberof CompanyBean
     */
    name?: string;
    /**
     * 公司网址
     * @type {string}
     * @memberof CompanyBean
     */
    url?: string;
    /**
     * 国家
     * @type {string}
     * @memberof CompanyBean
     */
    nation?: string;
    /**
     * 省/州/地区
     * @type {string}
     * @memberof CompanyBean
     */
    province?: string;
    /**
     * 城市
     * @type {string}
     * @memberof CompanyBean
     */
    city?: string;
    /**
     * 纳税人识别号
     * @type {string}
     * @memberof CompanyBean
     */
    taxpayer?: string;
    /**
     * 开户行
     * @type {string}
     * @memberof CompanyBean
     */
    bank?: string;
    /**
     * 银行账号
     * @type {string}
     * @memberof CompanyBean
     */
    account?: string;
    /**
     * 公司注册地址
     * @type {string}
     * @memberof CompanyBean
     */
    address?: string;
    /**
     * 公司电话
     * @type {string}
     * @memberof CompanyBean
     */
    tel?: string;
    /**
     * 营业执照图片地址
     * @type {string}
     * @memberof CompanyBean
     */
    license?: string;
    /**
     * 一般纳税人证明扫描件图片地址
     * @type {string}
     * @memberof CompanyBean
     */
    certificate?: string;
    /**
     * 快递地址
     * @type {string}
     * @memberof CompanyBean
     */
    postAddr?: string;
    /**
     * 邮编
     * @type {string}
     * @memberof CompanyBean
     */
    postCode?: string;
    /**
     * 收件人姓名
     * @type {string}
     * @memberof CompanyBean
     */
    postName?: string;
    /**
     * 收件人电话
     * @type {string}
     * @memberof CompanyBean
     */
    postTel?: string;
    /**
     * 首次填写时间
     * @type {Date}
     * @memberof CompanyBean
     */
    createdAt?: Date;
    /**
     * 最后更新时间
     * @type {Date}
     * @memberof CompanyBean
     */
    updatedAt?: Date;
}
/**
 * Check if a given object implements the CompanyBean interface.
 */
export declare function instanceOfCompanyBean(value: object): boolean;
export declare function CompanyBeanFromJSON(json: any): CompanyBean;
export declare function CompanyBeanFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompanyBean;
export declare function CompanyBeanToJSON(value?: CompanyBean | null): any;
