PhoneAuthResponseBean.kt 415 Bytes
Newer Older
1
package com.yidianling.user.http.response
konghaorui committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17

import com.mobile.auth.gatewayauth.model.VendorConfig

/**
 * @author jiucheng
 * @描述:服务端阿里认证返回数据
 * @Copyright Copyright (c) 2018
 * @Company 壹点灵
 * @date 2018/12/1
 */
data class PhoneAuthResponseBean(
        var requestId: String,
        var code: String,
        var message: String,
        var vendorConfigDTOs: List<VendorConfig>
)