Class: TencentCloud::Cpdp::V20190820::OpenBankRedirectInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cpdp::V20190820::OpenBankRedirectInfo
- Defined in:
- lib/v20190820/models.rb
Overview
云企付-跳转参数,用于小程序前端跳转
Instance Attribute Summary collapse
-
#ExpireTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#FormInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#MpAppId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#MpPath ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#MpUserName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#QRCodeKey ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#QRCodeUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Url ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(qrcodeurl = nil, qrcodekey = nil, url = nil, expiretime = nil, mpappid = nil, mppath = nil, mpusername = nil, forminfo = nil) ⇒ OpenBankRedirectInfo
constructor
A new instance of OpenBankRedirectInfo.
Constructor Details
#initialize(qrcodeurl = nil, qrcodekey = nil, url = nil, expiretime = nil, mpappid = nil, mppath = nil, mpusername = nil, forminfo = nil) ⇒ OpenBankRedirectInfo
Returns a new instance of OpenBankRedirectInfo.
13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 |
# File 'lib/v20190820/models.rb', line 13058 def initialize(qrcodeurl=nil, qrcodekey=nil, url=nil, expiretime=nil, mpappid=nil, mppath=nil, mpusername=nil, forminfo=nil) @QRCodeUrl = qrcodeurl @QRCodeKey = qrcodekey @Url = url @ExpireTime = expiretime @MpAppId = mpappid @MpPath = mppath @MpUserName = mpusername @FormInfo = forminfo end |
Instance Attribute Details
#ExpireTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def ExpireTime @ExpireTime end |
#FormInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def FormInfo @FormInfo end |
#MpAppId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def MpAppId @MpAppId end |
#MpPath ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def MpPath @MpPath end |
#MpUserName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def MpUserName @MpUserName end |
#QRCodeKey ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def QRCodeKey @QRCodeKey end |
#QRCodeUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def QRCodeUrl @QRCodeUrl end |
#Url ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
13056 13057 13058 |
# File 'lib/v20190820/models.rb', line 13056 def Url @Url end |
Instance Method Details
#deserialize(params) ⇒ Object
13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 |
# File 'lib/v20190820/models.rb', line 13069 def deserialize(params) @QRCodeUrl = params['QRCodeUrl'] @QRCodeKey = params['QRCodeKey'] @Url = params['Url'] @ExpireTime = params['ExpireTime'] @MpAppId = params['MpAppId'] @MpPath = params['MpPath'] @MpUserName = params['MpUserName'] unless params['FormInfo'].nil? @FormInfo = OpenBankFormInfo.new @FormInfo.deserialize(params['FormInfo']) end end |