# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
[docs]class UserAttachment(object):
def __init__(self, remark=None, industry=None, subIndustry=None, business=None, website=None, cpState=None, cpProvince=None, cpCity=None, cpCountry=None, cpAddress=None, cpTelphone=None):
"""
:param remark: (Optional) 公司名称
:param industry: (Optional) 主营行业
:param subIndustry: (Optional) 主营行业子选项
:param business: (Optional) 主营业务
:param website: (Optional) 网站
:param cpState: (Optional) 国家
:param cpProvince: (Optional) 省
:param cpCity: (Optional) 市
:param cpCountry: (Optional) 区县
:param cpAddress: (Optional) 详细地址
:param cpTelphone: (Optional) 联系手机
"""
self.remark = remark
self.industry = industry
self.subIndustry = subIndustry
self.business = business
self.website = website
self.cpState = cpState
self.cpProvince = cpProvince
self.cpCity = cpCity
self.cpCountry = cpCountry
self.cpAddress = cpAddress
self.cpTelphone = cpTelphone