tencentcloud-sdk-ccc 3.0.445 → 3.0.446
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20200210/models.rb +32 -2
- metadata +4 -4
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: e2d1589e58391a6ecac8244b57a7dbc4331da139
         | 
| 4 | 
            +
              data.tar.gz: 8dee803a45ecccb8a91af2c614ddbb52da3f4f37
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: f5ad8a5758dcee913c32c715e9339121c3d59b4bfccaf37264164b1885982fa64fad0dad4991fa3337b0f87f651e31f2e617ec2b065fff4f2660c0c56a70669c
         | 
| 7 | 
            +
              data.tar.gz: 87bcfb9cad1fe0e9353c0f074e7033aa685e064741fe5ee1d2986bc4b3e59d31352b154e02ef43562fb6fdc64ed88914d846c693361e3720ee94342fa486188a
         | 
    
        data/lib/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            3.0. | 
| 1 | 
            +
            3.0.446
         | 
    
        data/lib/v20200210/models.rb
    CHANGED
    
    | @@ -1855,10 +1855,13 @@ module TencentCloud | |
| 1855 1855 | 
             
                    # @param SkillGroupName: 技能组名称
         | 
| 1856 1856 | 
             
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1857 1857 | 
             
                    # @type SkillGroupName: String
         | 
| 1858 | 
            +
                    # @param Satisfaction: 满意度
         | 
| 1859 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1860 | 
            +
                    # @type Satisfaction: :class:`Tencentcloud::Ccc.v20200210.models.IMSatisfaction`
         | 
| 1858 1861 |  | 
| 1859 | 
            -
                    attr_accessor :Id, :Duration, :EndStatus, :Nickname, :Type, :StaffId, :Timestamp, :SessionId, :SkillGroupId, :SkillGroupName
         | 
| 1862 | 
            +
                    attr_accessor :Id, :Duration, :EndStatus, :Nickname, :Type, :StaffId, :Timestamp, :SessionId, :SkillGroupId, :SkillGroupName, :Satisfaction
         | 
| 1860 1863 |  | 
| 1861 | 
            -
                    def initialize(id=nil, duration=nil, endstatus=nil, nickname=nil, type=nil, staffid=nil, timestamp=nil, sessionid=nil, skillgroupid=nil, skillgroupname=nil)
         | 
| 1864 | 
            +
                    def initialize(id=nil, duration=nil, endstatus=nil, nickname=nil, type=nil, staffid=nil, timestamp=nil, sessionid=nil, skillgroupid=nil, skillgroupname=nil, satisfaction=nil)
         | 
| 1862 1865 | 
             
                      @Id = id
         | 
| 1863 1866 | 
             
                      @Duration = duration
         | 
| 1864 1867 | 
             
                      @EndStatus = endstatus
         | 
| @@ -1869,6 +1872,7 @@ module TencentCloud | |
| 1869 1872 | 
             
                      @SessionId = sessionid
         | 
| 1870 1873 | 
             
                      @SkillGroupId = skillgroupid
         | 
| 1871 1874 | 
             
                      @SkillGroupName = skillgroupname
         | 
| 1875 | 
            +
                      @Satisfaction = satisfaction
         | 
| 1872 1876 | 
             
                    end
         | 
| 1873 1877 |  | 
| 1874 1878 | 
             
                    def deserialize(params)
         | 
| @@ -1882,6 +1886,32 @@ module TencentCloud | |
| 1882 1886 | 
             
                      @SessionId = params['SessionId']
         | 
| 1883 1887 | 
             
                      @SkillGroupId = params['SkillGroupId']
         | 
| 1884 1888 | 
             
                      @SkillGroupName = params['SkillGroupName']
         | 
| 1889 | 
            +
                      unless params['Satisfaction'].nil?
         | 
| 1890 | 
            +
                        @Satisfaction = IMSatisfaction.new
         | 
| 1891 | 
            +
                        @Satisfaction.deserialize(params['Satisfaction'])
         | 
| 1892 | 
            +
                      end
         | 
| 1893 | 
            +
                    end
         | 
| 1894 | 
            +
                  end
         | 
| 1895 | 
            +
             | 
| 1896 | 
            +
                  # IM满意度
         | 
| 1897 | 
            +
                  class IMSatisfaction < TencentCloud::Common::AbstractModel
         | 
| 1898 | 
            +
                    # @param Id: 满意度值
         | 
| 1899 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1900 | 
            +
                    # @type Id: Integer
         | 
| 1901 | 
            +
                    # @param Label: 满意度标签
         | 
| 1902 | 
            +
                    # 注意:此字段可能返回 null,表示取不到有效值。
         | 
| 1903 | 
            +
                    # @type Label: String
         | 
| 1904 | 
            +
             | 
| 1905 | 
            +
                    attr_accessor :Id, :Label
         | 
| 1906 | 
            +
                    
         | 
| 1907 | 
            +
                    def initialize(id=nil, label=nil)
         | 
| 1908 | 
            +
                      @Id = id
         | 
| 1909 | 
            +
                      @Label = label
         | 
| 1910 | 
            +
                    end
         | 
| 1911 | 
            +
             | 
| 1912 | 
            +
                    def deserialize(params)
         | 
| 1913 | 
            +
                      @Id = params['Id']
         | 
| 1914 | 
            +
                      @Label = params['Label']
         | 
| 1885 1915 | 
             
                    end
         | 
| 1886 1916 | 
             
                  end
         | 
| 1887 1917 |  | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: tencentcloud-sdk-ccc
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 3.0. | 
| 4 | 
            +
              version: 3.0.446
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Tencent Cloud
         | 
| 8 8 | 
             
            autorequire: 
         | 
| 9 9 | 
             
            bindir: bin
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2022-11- | 
| 11 | 
            +
            date: 2022-11-07 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: tencentcloud-sdk-common
         | 
| @@ -16,14 +16,14 @@ dependencies: | |
| 16 16 | 
             
                requirements:
         | 
| 17 17 | 
             
                - - ~>
         | 
| 18 18 | 
             
                  - !ruby/object:Gem::Version
         | 
| 19 | 
            -
                    version: ' | 
| 19 | 
            +
                    version: '3.0'
         | 
| 20 20 | 
             
              type: :runtime
         | 
| 21 21 | 
             
              prerelease: false
         | 
| 22 22 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| 23 23 | 
             
                requirements:
         | 
| 24 24 | 
             
                - - ~>
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 | 
            -
                    version: ' | 
| 26 | 
            +
                    version: '3.0'
         | 
| 27 27 | 
             
            description: Tencent Cloud Ruby SDK is the official software development kit, which
         | 
| 28 28 | 
             
              allows Ruby developers to write software that makes use of Tencent Cloud service
         | 
| 29 29 | 
             
              CCC.
         |