class TencentCloud::Mps::V20190612::DescribeAnimatedGraphicsTemplatesResponse

DescribeAnimatedGraphicsTemplates返回参数结构体

def deserialize(params)

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['AnimatedGraphicsTemplateSet'].nil?
    @AnimatedGraphicsTemplateSet = []
    params['AnimatedGraphicsTemplateSet'].each do |i|
      animatedgraphicstemplate_tmp = AnimatedGraphicsTemplate.new
      animatedgraphicstemplate_tmp.deserialize(i)
      @AnimatedGraphicsTemplateSet << animatedgraphicstemplate_tmp
    end
  end
  @RequestId = params['RequestId']
end

def initialize(totalcount=nil, animatedgraphicstemplateset=nil, requestid=nil)

def initialize(totalcount=nil, animatedgraphicstemplateset=nil, requestid=nil)
  @TotalCount = totalcount
  @AnimatedGraphicsTemplateSet = animatedgraphicstemplateset
  @RequestId = requestid
end