# 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 JobStr(object):
def __init__(self, namespaceId=None, name=None, description=None, resourceConsume=None, id=None, uid=None, status=None, duration=None, appName=None, deleted=None, createTime=None, updateTime=None, userName=None, sqlStatement=None, jobType=None):
"""
:param namespaceId: (Optional)
:param name: (Optional)
:param description: (Optional)
:param resourceConsume: (Optional)
:param id: (Optional)
:param uid: (Optional)
:param status: (Optional)
:param duration: (Optional)
:param appName: (Optional)
:param deleted: (Optional)
:param createTime: (Optional)
:param updateTime: (Optional)
:param userName: (Optional)
:param sqlStatement: (Optional)
:param jobType: (Optional)
"""
self.namespaceId = namespaceId
self.name = name
self.description = description
self.resourceConsume = resourceConsume
self.id = id
self.uid = uid
self.status = status
self.duration = duration
self.appName = appName
self.deleted = deleted
self.createTime = createTime
self.updateTime = updateTime
self.userName = userName
self.sqlStatement = sqlStatement
self.jobType = jobType