Source code for jdcloud_sdk.services.sms.models.MtSms

# 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 MtSms(object): def __init__(self, pin=None, expandNum=None, mobileNum=None, appId=None, packageId=None, signId=None, templateId=None, msgContent=None, orderId=None, code=None, receiptNum=None, splitFlag=None, status=None, type=None): """ :param pin: (Optional) 用户pin :param expandNum: (Optional) 扩展码 :param mobileNum: (Optional) 手机号 :param appId: (Optional) 应用ID :param packageId: (Optional) 套餐包ID :param signId: (Optional) 签名ID :param templateId: (Optional) 模板ID :param msgContent: (Optional) 消息内容 :param orderId: (Optional) 批次ID :param code: (Optional) 错误码 :param receiptNum: (Optional) 流水号 :param splitFlag: (Optional) 拆分标识 :param status: (Optional) 发送状态 :param type: (Optional) 类型 """ self.pin = pin self.expandNum = expandNum self.mobileNum = mobileNum self.appId = appId self.packageId = packageId self.signId = signId self.templateId = templateId self.msgContent = msgContent self.orderId = orderId self.code = code self.receiptNum = receiptNum self.splitFlag = splitFlag self.status = status self.type = type