Source code for jdcloud_sdk.services.partner.models.Customer

# 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 Customer(object): def __init__(self, id=None, pin=None, loginName=None, distributorId=None, distributorPin=None, distributorName=None, distributorLevel=None, relTime=None, source=None, aliasName=None, contracter=None, tel=None, email=None, remark=None, createTime=None, createUser=None, updateTime=None, updateUser=None, accountTypeName=None, realName=None, name=None, yn=None): """ :param id: (Optional) ID :param pin: (Optional) 客户pin :param loginName: (Optional) 账户名 :param distributorId: (Optional) 渠道商ID :param distributorPin: (Optional) 渠道商PIN :param distributorName: (Optional) 渠道商名称 :param distributorLevel: (Optional) 渠道商级次 :param relTime: (Optional) 关联时间 :param source: (Optional) 来源(0渠道商自身,1京东云客户) :param aliasName: (Optional) 客户昵称 :param contracter: (Optional) 客户联系人 :param tel: (Optional) 客户电话 :param email: (Optional) 客户邮箱 :param remark: (Optional) 客户备注 :param createTime: (Optional) 创建时间 :param createUser: (Optional) 创建人 :param updateTime: (Optional) 修改时间 :param updateUser: (Optional) 修改人 :param accountTypeName: (Optional) 账户类型 :param realName: (Optional) 实名标识名称 :param name: (Optional) 名称 :param yn: (Optional) 是否删除0未删除,1已删除 """ self.id = id self.pin = pin self.loginName = loginName self.distributorId = distributorId self.distributorPin = distributorPin self.distributorName = distributorName self.distributorLevel = distributorLevel self.relTime = relTime self.source = source self.aliasName = aliasName self.contracter = contracter self.tel = tel self.email = email self.remark = remark self.createTime = createTime self.createUser = createUser self.updateTime = updateTime self.updateUser = updateUser self.accountTypeName = accountTypeName self.realName = realName self.name = name self.yn = yn