# 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 RespQueryTemplateListData(object):
def __init__(self, templateId=None, title=None, status=None, reason=None, createTime=None, contentSize=None, aptitudesId=None, description=None):
"""
:param templateId: (Optional) 短信ID
:param title: (Optional) 短信标题
:param status: (Optional) 审核状态 0: 审核中 1: 通过 2: 未通过 4:待提交
:param reason: (Optional) 审核未通过原因
:param createTime: (Optional) 短信创建时间 yyyy-MM-dd HH:mm:ss
:param contentSize: (Optional) 短信内容大小
:param aptitudesId: (Optional) 资质Id
:param description: (Optional) 短信描述
"""
self.templateId = templateId
self.title = title
self.status = status
self.reason = reason
self.createTime = createTime
self.contentSize = contentSize
self.aptitudesId = aptitudesId
self.description = description