Class: TencentCloud::Organization::V20181225::CreateOrganizationResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20181225::CreateOrganizationResponse
- Defined in:
- lib/v20181225/models.rb
Overview
CreateOrganization返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(orgid = nil, nickname = nil, mail = nil, orgtype = nil, requestid = nil) ⇒ CreateOrganizationResponse
constructor
A new instance of CreateOrganizationResponse.
Constructor Details
#initialize(orgid = nil, nickname = nil, mail = nil, orgtype = nil, requestid = nil) ⇒ CreateOrganizationResponse
Returns a new instance of CreateOrganizationResponse.
155 156 157 158 159 160 161 |
# File 'lib/v20181225/models.rb', line 155 def initialize(orgid=nil, nickname=nil, mail=nil, orgtype=nil, requestid=nil) @OrgId = orgid @Nickname = nickname @Mail = mail @OrgType = orgtype @RequestId = requestid end |
Instance Attribute Details
#Mail ⇒ Object
153 154 155 |
# File 'lib/v20181225/models.rb', line 153 def Mail @Mail end |
#Nickname ⇒ Object
153 154 155 |
# File 'lib/v20181225/models.rb', line 153 def Nickname @Nickname end |
#OrgId ⇒ Object
153 154 155 |
# File 'lib/v20181225/models.rb', line 153 def OrgId @OrgId end |
#OrgType ⇒ Object
153 154 155 |
# File 'lib/v20181225/models.rb', line 153 def OrgType @OrgType end |
#RequestId ⇒ Object
153 154 155 |
# File 'lib/v20181225/models.rb', line 153 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
163 164 165 166 167 168 169 |
# File 'lib/v20181225/models.rb', line 163 def deserialize(params) @OrgId = params['OrgId'] @Nickname = params['Nickname'] @Mail = params['Mail'] @OrgType = params['OrgType'] @RequestId = params['RequestId'] end |