Class: TencentCloud::Organization::V20210331::OrgFinancialByMonth
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::OrgFinancialByMonth
- Defined in:
- lib/v20210331/models.rb
Overview
按月获取组织财务信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, month = nil, totalcost = nil, growthrate = nil) ⇒ OrgFinancialByMonth
constructor
A new instance of OrgFinancialByMonth.
Constructor Details
#initialize(id = nil, month = nil, totalcost = nil, growthrate = nil) ⇒ OrgFinancialByMonth
Returns a new instance of OrgFinancialByMonth.
5932 5933 5934 5935 5936 5937 |
# File 'lib/v20210331/models.rb', line 5932 def initialize(id=nil, month=nil, totalcost=nil, growthrate=nil) @Id = id @Month = month @TotalCost = totalcost @GrowthRate = growthrate end |
Instance Attribute Details
#GrowthRate ⇒ Object
5930 5931 5932 |
# File 'lib/v20210331/models.rb', line 5930 def GrowthRate @GrowthRate end |
#Id ⇒ Object
5930 5931 5932 |
# File 'lib/v20210331/models.rb', line 5930 def Id @Id end |
#Month ⇒ Object
5930 5931 5932 |
# File 'lib/v20210331/models.rb', line 5930 def Month @Month end |
#TotalCost ⇒ Object
5930 5931 5932 |
# File 'lib/v20210331/models.rb', line 5930 def TotalCost @TotalCost end |
Instance Method Details
#deserialize(params) ⇒ Object
5939 5940 5941 5942 5943 5944 |
# File 'lib/v20210331/models.rb', line 5939 def deserialize(params) @Id = params['Id'] @Month = params['Month'] @TotalCost = params['TotalCost'] @GrowthRate = params['GrowthRate'] end |