|
| 1 | +# coding=utf8 |
| 2 | + |
| 3 | +# Copyright 2018 JDCLOUD.COM |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | +# NOTE: This class is auto generated by the jdcloud code generator program. |
| 18 | + |
| 19 | + |
| 20 | +class OrderDetail(object): |
| 21 | + |
| 22 | + def __init__(self, pin=None, pkgname=None, balanceAmount=None, orderType=None, startTime=None, orderState=None, orderAmount=None, voucher=None, yue=None, paymentAmount=None): |
| 23 | + """ |
| 24 | + :param pin: (Optional) 用户名称 |
| 25 | + :param pkgname: (Optional) 产品名称 |
| 26 | + :param balanceAmount: (Optional) 规格 |
| 27 | + :param orderType: (Optional) 付费类型 |
| 28 | + :param startTime: (Optional) 下单时间,yyyy-mm-dd hh:mm:ss格式 |
| 29 | + :param orderState: (Optional) 订单状态 |
| 30 | + :param orderAmount: (Optional) 订单金额 |
| 31 | + :param voucher: (Optional) 代金券 |
| 32 | + :param yue: (Optional) 余额 |
| 33 | + :param paymentAmount: (Optional) 实付款总额 |
| 34 | + """ |
| 35 | + |
| 36 | + self.pin = pin |
| 37 | + self.pkgname = pkgname |
| 38 | + self.balanceAmount = balanceAmount |
| 39 | + self.orderType = orderType |
| 40 | + self.startTime = startTime |
| 41 | + self.orderState = orderState |
| 42 | + self.orderAmount = orderAmount |
| 43 | + self.voucher = voucher |
| 44 | + self.yue = yue |
| 45 | + self.paymentAmount = paymentAmount |
0 commit comments