Class: VericredClient::RateSearch

Inherits:
Object
  • Object
show all
Defined in:
lib/vericred_client/models/rate_search.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ RateSearch

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
# File 'lib/vericred_client/models/rate_search.rb', line 1737

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes.has_key?(:'age_0')
    self.age_0 = attributes[:'age_0']
  end

  if attributes.has_key?(:'age_0_tobacco')
    self.age_0_tobacco = attributes[:'age_0_tobacco']
  end

  if attributes.has_key?(:'age_1')
    self.age_1 = attributes[:'age_1']
  end

  if attributes.has_key?(:'age_10')
    self.age_10 = attributes[:'age_10']
  end

  if attributes.has_key?(:'age_10_tobacco')
    self.age_10_tobacco = attributes[:'age_10_tobacco']
  end

  if attributes.has_key?(:'age_11')
    self.age_11 = attributes[:'age_11']
  end

  if attributes.has_key?(:'age_11_tobacco')
    self.age_11_tobacco = attributes[:'age_11_tobacco']
  end

  if attributes.has_key?(:'age_12')
    self.age_12 = attributes[:'age_12']
  end

  if attributes.has_key?(:'age_12_tobacco')
    self.age_12_tobacco = attributes[:'age_12_tobacco']
  end

  if attributes.has_key?(:'age_13')
    self.age_13 = attributes[:'age_13']
  end

  if attributes.has_key?(:'age_13_tobacco')
    self.age_13_tobacco = attributes[:'age_13_tobacco']
  end

  if attributes.has_key?(:'age_14')
    self.age_14 = attributes[:'age_14']
  end

  if attributes.has_key?(:'age_14_tobacco')
    self.age_14_tobacco = attributes[:'age_14_tobacco']
  end

  if attributes.has_key?(:'age_15')
    self.age_15 = attributes[:'age_15']
  end

  if attributes.has_key?(:'age_15_tobacco')
    self.age_15_tobacco = attributes[:'age_15_tobacco']
  end

  if attributes.has_key?(:'age_16')
    self.age_16 = attributes[:'age_16']
  end

  if attributes.has_key?(:'age_16_tobacco')
    self.age_16_tobacco = attributes[:'age_16_tobacco']
  end

  if attributes.has_key?(:'age_17')
    self.age_17 = attributes[:'age_17']
  end

  if attributes.has_key?(:'age_17_tobacco')
    self.age_17_tobacco = attributes[:'age_17_tobacco']
  end

  if attributes.has_key?(:'age_18')
    self.age_18 = attributes[:'age_18']
  end

  if attributes.has_key?(:'age_18_tobacco')
    self.age_18_tobacco = attributes[:'age_18_tobacco']
  end

  if attributes.has_key?(:'age_19')
    self.age_19 = attributes[:'age_19']
  end

  if attributes.has_key?(:'age_19_tobacco')
    self.age_19_tobacco = attributes[:'age_19_tobacco']
  end

  if attributes.has_key?(:'age_1_tobacco')
    self.age_1_tobacco = attributes[:'age_1_tobacco']
  end

  if attributes.has_key?(:'age_2')
    self.age_2 = attributes[:'age_2']
  end

  if attributes.has_key?(:'age_20')
    self.age_20 = attributes[:'age_20']
  end

  if attributes.has_key?(:'age_20_tobacco')
    self.age_20_tobacco = attributes[:'age_20_tobacco']
  end

  if attributes.has_key?(:'age_21')
    self.age_21 = attributes[:'age_21']
  end

  if attributes.has_key?(:'age_21_tobacco')
    self.age_21_tobacco = attributes[:'age_21_tobacco']
  end

  if attributes.has_key?(:'age_22')
    self.age_22 = attributes[:'age_22']
  end

  if attributes.has_key?(:'age_22_tobacco')
    self.age_22_tobacco = attributes[:'age_22_tobacco']
  end

  if attributes.has_key?(:'age_23')
    self.age_23 = attributes[:'age_23']
  end

  if attributes.has_key?(:'age_23_tobacco')
    self.age_23_tobacco = attributes[:'age_23_tobacco']
  end

  if attributes.has_key?(:'age_24')
    self.age_24 = attributes[:'age_24']
  end

  if attributes.has_key?(:'age_24_tobacco')
    self.age_24_tobacco = attributes[:'age_24_tobacco']
  end

  if attributes.has_key?(:'age_25')
    self.age_25 = attributes[:'age_25']
  end

  if attributes.has_key?(:'age_25_tobacco')
    self.age_25_tobacco = attributes[:'age_25_tobacco']
  end

  if attributes.has_key?(:'age_26')
    self.age_26 = attributes[:'age_26']
  end

  if attributes.has_key?(:'age_26_tobacco')
    self.age_26_tobacco = attributes[:'age_26_tobacco']
  end

  if attributes.has_key?(:'age_27')
    self.age_27 = attributes[:'age_27']
  end

  if attributes.has_key?(:'age_27_tobacco')
    self.age_27_tobacco = attributes[:'age_27_tobacco']
  end

  if attributes.has_key?(:'age_28')
    self.age_28 = attributes[:'age_28']
  end

  if attributes.has_key?(:'age_28_tobacco')
    self.age_28_tobacco = attributes[:'age_28_tobacco']
  end

  if attributes.has_key?(:'age_29')
    self.age_29 = attributes[:'age_29']
  end

  if attributes.has_key?(:'age_29_tobacco')
    self.age_29_tobacco = attributes[:'age_29_tobacco']
  end

  if attributes.has_key?(:'age_2_tobacco')
    self.age_2_tobacco = attributes[:'age_2_tobacco']
  end

  if attributes.has_key?(:'age_3')
    self.age_3 = attributes[:'age_3']
  end

  if attributes.has_key?(:'age_30')
    self.age_30 = attributes[:'age_30']
  end

  if attributes.has_key?(:'age_30_tobacco')
    self.age_30_tobacco = attributes[:'age_30_tobacco']
  end

  if attributes.has_key?(:'age_31')
    self.age_31 = attributes[:'age_31']
  end

  if attributes.has_key?(:'age_31_tobacco')
    self.age_31_tobacco = attributes[:'age_31_tobacco']
  end

  if attributes.has_key?(:'age_32')
    self.age_32 = attributes[:'age_32']
  end

  if attributes.has_key?(:'age_32_tobacco')
    self.age_32_tobacco = attributes[:'age_32_tobacco']
  end

  if attributes.has_key?(:'age_33')
    self.age_33 = attributes[:'age_33']
  end

  if attributes.has_key?(:'age_33_tobacco')
    self.age_33_tobacco = attributes[:'age_33_tobacco']
  end

  if attributes.has_key?(:'age_34')
    self.age_34 = attributes[:'age_34']
  end

  if attributes.has_key?(:'age_34_tobacco')
    self.age_34_tobacco = attributes[:'age_34_tobacco']
  end

  if attributes.has_key?(:'age_35')
    self.age_35 = attributes[:'age_35']
  end

  if attributes.has_key?(:'age_35_tobacco')
    self.age_35_tobacco = attributes[:'age_35_tobacco']
  end

  if attributes.has_key?(:'age_36')
    self.age_36 = attributes[:'age_36']
  end

  if attributes.has_key?(:'age_36_tobacco')
    self.age_36_tobacco = attributes[:'age_36_tobacco']
  end

  if attributes.has_key?(:'age_37')
    self.age_37 = attributes[:'age_37']
  end

  if attributes.has_key?(:'age_37_tobacco')
    self.age_37_tobacco = attributes[:'age_37_tobacco']
  end

  if attributes.has_key?(:'age_38')
    self.age_38 = attributes[:'age_38']
  end

  if attributes.has_key?(:'age_38_tobacco')
    self.age_38_tobacco = attributes[:'age_38_tobacco']
  end

  if attributes.has_key?(:'age_39')
    self.age_39 = attributes[:'age_39']
  end

  if attributes.has_key?(:'age_39_tobacco')
    self.age_39_tobacco = attributes[:'age_39_tobacco']
  end

  if attributes.has_key?(:'age_3_tobacco')
    self.age_3_tobacco = attributes[:'age_3_tobacco']
  end

  if attributes.has_key?(:'age_4')
    self.age_4 = attributes[:'age_4']
  end

  if attributes.has_key?(:'age_40')
    self.age_40 = attributes[:'age_40']
  end

  if attributes.has_key?(:'age_40_tobacco')
    self.age_40_tobacco = attributes[:'age_40_tobacco']
  end

  if attributes.has_key?(:'age_41')
    self.age_41 = attributes[:'age_41']
  end

  if attributes.has_key?(:'age_41_tobacco')
    self.age_41_tobacco = attributes[:'age_41_tobacco']
  end

  if attributes.has_key?(:'age_42')
    self.age_42 = attributes[:'age_42']
  end

  if attributes.has_key?(:'age_42_tobacco')
    self.age_42_tobacco = attributes[:'age_42_tobacco']
  end

  if attributes.has_key?(:'age_43')
    self.age_43 = attributes[:'age_43']
  end

  if attributes.has_key?(:'age_43_tobacco')
    self.age_43_tobacco = attributes[:'age_43_tobacco']
  end

  if attributes.has_key?(:'age_44')
    self.age_44 = attributes[:'age_44']
  end

  if attributes.has_key?(:'age_44_tobacco')
    self.age_44_tobacco = attributes[:'age_44_tobacco']
  end

  if attributes.has_key?(:'age_45')
    self.age_45 = attributes[:'age_45']
  end

  if attributes.has_key?(:'age_45_tobacco')
    self.age_45_tobacco = attributes[:'age_45_tobacco']
  end

  if attributes.has_key?(:'age_46')
    self.age_46 = attributes[:'age_46']
  end

  if attributes.has_key?(:'age_46_tobacco')
    self.age_46_tobacco = attributes[:'age_46_tobacco']
  end

  if attributes.has_key?(:'age_47')
    self.age_47 = attributes[:'age_47']
  end

  if attributes.has_key?(:'age_47_tobacco')
    self.age_47_tobacco = attributes[:'age_47_tobacco']
  end

  if attributes.has_key?(:'age_48')
    self.age_48 = attributes[:'age_48']
  end

  if attributes.has_key?(:'age_48_tobacco')
    self.age_48_tobacco = attributes[:'age_48_tobacco']
  end

  if attributes.has_key?(:'age_49')
    self.age_49 = attributes[:'age_49']
  end

  if attributes.has_key?(:'age_49_tobacco')
    self.age_49_tobacco = attributes[:'age_49_tobacco']
  end

  if attributes.has_key?(:'age_4_tobacco')
    self.age_4_tobacco = attributes[:'age_4_tobacco']
  end

  if attributes.has_key?(:'age_5')
    self.age_5 = attributes[:'age_5']
  end

  if attributes.has_key?(:'age_50')
    self.age_50 = attributes[:'age_50']
  end

  if attributes.has_key?(:'age_50_tobacco')
    self.age_50_tobacco = attributes[:'age_50_tobacco']
  end

  if attributes.has_key?(:'age_51')
    self.age_51 = attributes[:'age_51']
  end

  if attributes.has_key?(:'age_51_tobacco')
    self.age_51_tobacco = attributes[:'age_51_tobacco']
  end

  if attributes.has_key?(:'age_52')
    self.age_52 = attributes[:'age_52']
  end

  if attributes.has_key?(:'age_52_tobacco')
    self.age_52_tobacco = attributes[:'age_52_tobacco']
  end

  if attributes.has_key?(:'age_53')
    self.age_53 = attributes[:'age_53']
  end

  if attributes.has_key?(:'age_53_tobacco')
    self.age_53_tobacco = attributes[:'age_53_tobacco']
  end

  if attributes.has_key?(:'age_54')
    self.age_54 = attributes[:'age_54']
  end

  if attributes.has_key?(:'age_54_tobacco')
    self.age_54_tobacco = attributes[:'age_54_tobacco']
  end

  if attributes.has_key?(:'age_55')
    self.age_55 = attributes[:'age_55']
  end

  if attributes.has_key?(:'age_55_tobacco')
    self.age_55_tobacco = attributes[:'age_55_tobacco']
  end

  if attributes.has_key?(:'age_56')
    self.age_56 = attributes[:'age_56']
  end

  if attributes.has_key?(:'age_56_tobacco')
    self.age_56_tobacco = attributes[:'age_56_tobacco']
  end

  if attributes.has_key?(:'age_57')
    self.age_57 = attributes[:'age_57']
  end

  if attributes.has_key?(:'age_57_tobacco')
    self.age_57_tobacco = attributes[:'age_57_tobacco']
  end

  if attributes.has_key?(:'age_58')
    self.age_58 = attributes[:'age_58']
  end

  if attributes.has_key?(:'age_58_tobacco')
    self.age_58_tobacco = attributes[:'age_58_tobacco']
  end

  if attributes.has_key?(:'age_59')
    self.age_59 = attributes[:'age_59']
  end

  if attributes.has_key?(:'age_59_tobacco')
    self.age_59_tobacco = attributes[:'age_59_tobacco']
  end

  if attributes.has_key?(:'age_5_tobacco')
    self.age_5_tobacco = attributes[:'age_5_tobacco']
  end

  if attributes.has_key?(:'age_6')
    self.age_6 = attributes[:'age_6']
  end

  if attributes.has_key?(:'age_60')
    self.age_60 = attributes[:'age_60']
  end

  if attributes.has_key?(:'age_60_tobacco')
    self.age_60_tobacco = attributes[:'age_60_tobacco']
  end

  if attributes.has_key?(:'age_61')
    self.age_61 = attributes[:'age_61']
  end

  if attributes.has_key?(:'age_61_tobacco')
    self.age_61_tobacco = attributes[:'age_61_tobacco']
  end

  if attributes.has_key?(:'age_62')
    self.age_62 = attributes[:'age_62']
  end

  if attributes.has_key?(:'age_62_tobacco')
    self.age_62_tobacco = attributes[:'age_62_tobacco']
  end

  if attributes.has_key?(:'age_63')
    self.age_63 = attributes[:'age_63']
  end

  if attributes.has_key?(:'age_63_tobacco')
    self.age_63_tobacco = attributes[:'age_63_tobacco']
  end

  if attributes.has_key?(:'age_64')
    self.age_64 = attributes[:'age_64']
  end

  if attributes.has_key?(:'age_64_tobacco')
    self.age_64_tobacco = attributes[:'age_64_tobacco']
  end

  if attributes.has_key?(:'age_65')
    self.age_65 = attributes[:'age_65']
  end

  if attributes.has_key?(:'age_65_tobacco')
    self.age_65_tobacco = attributes[:'age_65_tobacco']
  end

  if attributes.has_key?(:'age_6_tobacco')
    self.age_6_tobacco = attributes[:'age_6_tobacco']
  end

  if attributes.has_key?(:'age_7')
    self.age_7 = attributes[:'age_7']
  end

  if attributes.has_key?(:'age_7_tobacco')
    self.age_7_tobacco = attributes[:'age_7_tobacco']
  end

  if attributes.has_key?(:'age_8')
    self.age_8 = attributes[:'age_8']
  end

  if attributes.has_key?(:'age_8_tobacco')
    self.age_8_tobacco = attributes[:'age_8_tobacco']
  end

  if attributes.has_key?(:'age_9')
    self.age_9 = attributes[:'age_9']
  end

  if attributes.has_key?(:'age_9_tobacco')
    self.age_9_tobacco = attributes[:'age_9_tobacco']
  end

  if attributes.has_key?(:'child_only')
    self.child_only = attributes[:'child_only']
  end

  if attributes.has_key?(:'effective_date')
    self.effective_date = attributes[:'effective_date']
  end

  if attributes.has_key?(:'expiration_date')
    self.expiration_date = attributes[:'expiration_date']
  end

  if attributes.has_key?(:'family')
    self.family = attributes[:'family']
  end

  if attributes.has_key?(:'plan_id')
    self.plan_id = attributes[:'plan_id']
  end

  if attributes.has_key?(:'single')
    self.single = attributes[:'single']
  end

  if attributes.has_key?(:'single_and_children')
    self.single_and_children = attributes[:'single_and_children']
  end

  if attributes.has_key?(:'single_and_spouse')
    self.single_and_spouse = attributes[:'single_and_spouse']
  end

  if attributes.has_key?(:'source')
    self.source = attributes[:'source']
  end

end

Instance Attribute Details

#age_0Object

Rate for age 0



1018
1019
1020
# File 'lib/vericred_client/models/rate_search.rb', line 1018

def age_0
  @age_0
end

#age_0_tobaccoObject

Tobacco rate for age 0



1021
1022
1023
# File 'lib/vericred_client/models/rate_search.rb', line 1021

def age_0_tobacco
  @age_0_tobacco
end

#age_1Object

Rate for age 1



1024
1025
1026
# File 'lib/vericred_client/models/rate_search.rb', line 1024

def age_1
  @age_1
end

#age_10Object

Rate for age 10



1027
1028
1029
# File 'lib/vericred_client/models/rate_search.rb', line 1027

def age_10
  @age_10
end

#age_10_tobaccoObject

Tobacco rate for age 10



1030
1031
1032
# File 'lib/vericred_client/models/rate_search.rb', line 1030

def age_10_tobacco
  @age_10_tobacco
end

#age_11Object

Rate for age 11



1033
1034
1035
# File 'lib/vericred_client/models/rate_search.rb', line 1033

def age_11
  @age_11
end

#age_11_tobaccoObject

Tobacco rate for age 11



1036
1037
1038
# File 'lib/vericred_client/models/rate_search.rb', line 1036

def age_11_tobacco
  @age_11_tobacco
end

#age_12Object

Rate for age 12



1039
1040
1041
# File 'lib/vericred_client/models/rate_search.rb', line 1039

def age_12
  @age_12
end

#age_12_tobaccoObject

Tobacco rate for age 12



1042
1043
1044
# File 'lib/vericred_client/models/rate_search.rb', line 1042

def age_12_tobacco
  @age_12_tobacco
end

#age_13Object

Rate for age 13



1045
1046
1047
# File 'lib/vericred_client/models/rate_search.rb', line 1045

def age_13
  @age_13
end

#age_13_tobaccoObject

Tobacco rate for age 13



1048
1049
1050
# File 'lib/vericred_client/models/rate_search.rb', line 1048

def age_13_tobacco
  @age_13_tobacco
end

#age_14Object

Rate for age 14



1051
1052
1053
# File 'lib/vericred_client/models/rate_search.rb', line 1051

def age_14
  @age_14
end

#age_14_tobaccoObject

Tobacco rate for age 14



1054
1055
1056
# File 'lib/vericred_client/models/rate_search.rb', line 1054

def age_14_tobacco
  @age_14_tobacco
end

#age_15Object

Rate for age 15



1057
1058
1059
# File 'lib/vericred_client/models/rate_search.rb', line 1057

def age_15
  @age_15
end

#age_15_tobaccoObject

Tobacco rate for age 15



1060
1061
1062
# File 'lib/vericred_client/models/rate_search.rb', line 1060

def age_15_tobacco
  @age_15_tobacco
end

#age_16Object

Rate for age 16



1063
1064
1065
# File 'lib/vericred_client/models/rate_search.rb', line 1063

def age_16
  @age_16
end

#age_16_tobaccoObject

Tobacco rate for age 16



1066
1067
1068
# File 'lib/vericred_client/models/rate_search.rb', line 1066

def age_16_tobacco
  @age_16_tobacco
end

#age_17Object

Rate for age 17



1069
1070
1071
# File 'lib/vericred_client/models/rate_search.rb', line 1069

def age_17
  @age_17
end

#age_17_tobaccoObject

Tobacco rate for age 17



1072
1073
1074
# File 'lib/vericred_client/models/rate_search.rb', line 1072

def age_17_tobacco
  @age_17_tobacco
end

#age_18Object

Rate for age 18



1075
1076
1077
# File 'lib/vericred_client/models/rate_search.rb', line 1075

def age_18
  @age_18
end

#age_18_tobaccoObject

Tobacco rate for age 18



1078
1079
1080
# File 'lib/vericred_client/models/rate_search.rb', line 1078

def age_18_tobacco
  @age_18_tobacco
end

#age_19Object

Rate for age 19



1081
1082
1083
# File 'lib/vericred_client/models/rate_search.rb', line 1081

def age_19
  @age_19
end

#age_19_tobaccoObject

Tobacco rate for age 19



1084
1085
1086
# File 'lib/vericred_client/models/rate_search.rb', line 1084

def age_19_tobacco
  @age_19_tobacco
end

#age_1_tobaccoObject

Tobacco rate for age 1



1087
1088
1089
# File 'lib/vericred_client/models/rate_search.rb', line 1087

def age_1_tobacco
  @age_1_tobacco
end

#age_2Object

Rate for age 2



1090
1091
1092
# File 'lib/vericred_client/models/rate_search.rb', line 1090

def age_2
  @age_2
end

#age_20Object

Rate for age 20



1093
1094
1095
# File 'lib/vericred_client/models/rate_search.rb', line 1093

def age_20
  @age_20
end

#age_20_tobaccoObject

Tobacco rate for age 20



1096
1097
1098
# File 'lib/vericred_client/models/rate_search.rb', line 1096

def age_20_tobacco
  @age_20_tobacco
end

#age_21Object

Rate for age 21



1099
1100
1101
# File 'lib/vericred_client/models/rate_search.rb', line 1099

def age_21
  @age_21
end

#age_21_tobaccoObject

Tobacco rate for age 21



1102
1103
1104
# File 'lib/vericred_client/models/rate_search.rb', line 1102

def age_21_tobacco
  @age_21_tobacco
end

#age_22Object

Rate for age 22



1105
1106
1107
# File 'lib/vericred_client/models/rate_search.rb', line 1105

def age_22
  @age_22
end

#age_22_tobaccoObject

Tobacco rate for age 22



1108
1109
1110
# File 'lib/vericred_client/models/rate_search.rb', line 1108

def age_22_tobacco
  @age_22_tobacco
end

#age_23Object

Rate for age 23



1111
1112
1113
# File 'lib/vericred_client/models/rate_search.rb', line 1111

def age_23
  @age_23
end

#age_23_tobaccoObject

Tobacco rate for age 23



1114
1115
1116
# File 'lib/vericred_client/models/rate_search.rb', line 1114

def age_23_tobacco
  @age_23_tobacco
end

#age_24Object

Rate for age 24



1117
1118
1119
# File 'lib/vericred_client/models/rate_search.rb', line 1117

def age_24
  @age_24
end

#age_24_tobaccoObject

Tobacco rate for age 24



1120
1121
1122
# File 'lib/vericred_client/models/rate_search.rb', line 1120

def age_24_tobacco
  @age_24_tobacco
end

#age_25Object

Rate for age 25



1123
1124
1125
# File 'lib/vericred_client/models/rate_search.rb', line 1123

def age_25
  @age_25
end

#age_25_tobaccoObject

Tobacco rate for age 25



1126
1127
1128
# File 'lib/vericred_client/models/rate_search.rb', line 1126

def age_25_tobacco
  @age_25_tobacco
end

#age_26Object

Rate for age 26



1129
1130
1131
# File 'lib/vericred_client/models/rate_search.rb', line 1129

def age_26
  @age_26
end

#age_26_tobaccoObject

Tobacco rate for age 26



1132
1133
1134
# File 'lib/vericred_client/models/rate_search.rb', line 1132

def age_26_tobacco
  @age_26_tobacco
end

#age_27Object

Rate for age 27



1135
1136
1137
# File 'lib/vericred_client/models/rate_search.rb', line 1135

def age_27
  @age_27
end

#age_27_tobaccoObject

Tobacco rate for age 27



1138
1139
1140
# File 'lib/vericred_client/models/rate_search.rb', line 1138

def age_27_tobacco
  @age_27_tobacco
end

#age_28Object

Rate for age 28



1141
1142
1143
# File 'lib/vericred_client/models/rate_search.rb', line 1141

def age_28
  @age_28
end

#age_28_tobaccoObject

Tobacco rate for age 28



1144
1145
1146
# File 'lib/vericred_client/models/rate_search.rb', line 1144

def age_28_tobacco
  @age_28_tobacco
end

#age_29Object

Rate for age 29



1147
1148
1149
# File 'lib/vericred_client/models/rate_search.rb', line 1147

def age_29
  @age_29
end

#age_29_tobaccoObject

Tobacco rate for age 29



1150
1151
1152
# File 'lib/vericred_client/models/rate_search.rb', line 1150

def age_29_tobacco
  @age_29_tobacco
end

#age_2_tobaccoObject

Tobacco rate for age 2



1153
1154
1155
# File 'lib/vericred_client/models/rate_search.rb', line 1153

def age_2_tobacco
  @age_2_tobacco
end

#age_3Object

Rate for age 3



1156
1157
1158
# File 'lib/vericred_client/models/rate_search.rb', line 1156

def age_3
  @age_3
end

#age_30Object

Rate for age 30



1159
1160
1161
# File 'lib/vericred_client/models/rate_search.rb', line 1159

def age_30
  @age_30
end

#age_30_tobaccoObject

Tobacco rate for age 30



1162
1163
1164
# File 'lib/vericred_client/models/rate_search.rb', line 1162

def age_30_tobacco
  @age_30_tobacco
end

#age_31Object

Rate for age 31



1165
1166
1167
# File 'lib/vericred_client/models/rate_search.rb', line 1165

def age_31
  @age_31
end

#age_31_tobaccoObject

Tobacco rate for age 31



1168
1169
1170
# File 'lib/vericred_client/models/rate_search.rb', line 1168

def age_31_tobacco
  @age_31_tobacco
end

#age_32Object

Rate for age 32



1171
1172
1173
# File 'lib/vericred_client/models/rate_search.rb', line 1171

def age_32
  @age_32
end

#age_32_tobaccoObject

Tobacco rate for age 32



1174
1175
1176
# File 'lib/vericred_client/models/rate_search.rb', line 1174

def age_32_tobacco
  @age_32_tobacco
end

#age_33Object

Rate for age 33



1177
1178
1179
# File 'lib/vericred_client/models/rate_search.rb', line 1177

def age_33
  @age_33
end

#age_33_tobaccoObject

Tobacco rate for age 33



1180
1181
1182
# File 'lib/vericred_client/models/rate_search.rb', line 1180

def age_33_tobacco
  @age_33_tobacco
end

#age_34Object

Rate for age 34



1183
1184
1185
# File 'lib/vericred_client/models/rate_search.rb', line 1183

def age_34
  @age_34
end

#age_34_tobaccoObject

Tobacco rate for age 34



1186
1187
1188
# File 'lib/vericred_client/models/rate_search.rb', line 1186

def age_34_tobacco
  @age_34_tobacco
end

#age_35Object

Rate for age 35



1189
1190
1191
# File 'lib/vericred_client/models/rate_search.rb', line 1189

def age_35
  @age_35
end

#age_35_tobaccoObject

Tobacco rate for age 35



1192
1193
1194
# File 'lib/vericred_client/models/rate_search.rb', line 1192

def age_35_tobacco
  @age_35_tobacco
end

#age_36Object

Rate for age 36



1195
1196
1197
# File 'lib/vericred_client/models/rate_search.rb', line 1195

def age_36
  @age_36
end

#age_36_tobaccoObject

Tobacco rate for age 36



1198
1199
1200
# File 'lib/vericred_client/models/rate_search.rb', line 1198

def age_36_tobacco
  @age_36_tobacco
end

#age_37Object

Rate for age 37



1201
1202
1203
# File 'lib/vericred_client/models/rate_search.rb', line 1201

def age_37
  @age_37
end

#age_37_tobaccoObject

Tobacco rate for age 37



1204
1205
1206
# File 'lib/vericred_client/models/rate_search.rb', line 1204

def age_37_tobacco
  @age_37_tobacco
end

#age_38Object

Rate for age 38



1207
1208
1209
# File 'lib/vericred_client/models/rate_search.rb', line 1207

def age_38
  @age_38
end

#age_38_tobaccoObject

Tobacco rate for age 38



1210
1211
1212
# File 'lib/vericred_client/models/rate_search.rb', line 1210

def age_38_tobacco
  @age_38_tobacco
end

#age_39Object

Rate for age 39



1213
1214
1215
# File 'lib/vericred_client/models/rate_search.rb', line 1213

def age_39
  @age_39
end

#age_39_tobaccoObject

Tobacco rate for age 39



1216
1217
1218
# File 'lib/vericred_client/models/rate_search.rb', line 1216

def age_39_tobacco
  @age_39_tobacco
end

#age_3_tobaccoObject

Tobacco rate for age 3



1219
1220
1221
# File 'lib/vericred_client/models/rate_search.rb', line 1219

def age_3_tobacco
  @age_3_tobacco
end

#age_4Object

Rate for age 4



1222
1223
1224
# File 'lib/vericred_client/models/rate_search.rb', line 1222

def age_4
  @age_4
end

#age_40Object

Rate for age 40



1225
1226
1227
# File 'lib/vericred_client/models/rate_search.rb', line 1225

def age_40
  @age_40
end

#age_40_tobaccoObject

Tobacco rate for age 40



1228
1229
1230
# File 'lib/vericred_client/models/rate_search.rb', line 1228

def age_40_tobacco
  @age_40_tobacco
end

#age_41Object

Rate for age 41



1231
1232
1233
# File 'lib/vericred_client/models/rate_search.rb', line 1231

def age_41
  @age_41
end

#age_41_tobaccoObject

Tobacco rate for age 41



1234
1235
1236
# File 'lib/vericred_client/models/rate_search.rb', line 1234

def age_41_tobacco
  @age_41_tobacco
end

#age_42Object

Rate for age 42



1237
1238
1239
# File 'lib/vericred_client/models/rate_search.rb', line 1237

def age_42
  @age_42
end

#age_42_tobaccoObject

Tobacco rate for age 42



1240
1241
1242
# File 'lib/vericred_client/models/rate_search.rb', line 1240

def age_42_tobacco
  @age_42_tobacco
end

#age_43Object

Rate for age 43



1243
1244
1245
# File 'lib/vericred_client/models/rate_search.rb', line 1243

def age_43
  @age_43
end

#age_43_tobaccoObject

Tobacco rate for age 43



1246
1247
1248
# File 'lib/vericred_client/models/rate_search.rb', line 1246

def age_43_tobacco
  @age_43_tobacco
end

#age_44Object

Rate for age 44



1249
1250
1251
# File 'lib/vericred_client/models/rate_search.rb', line 1249

def age_44
  @age_44
end

#age_44_tobaccoObject

Tobacco rate for age 44



1252
1253
1254
# File 'lib/vericred_client/models/rate_search.rb', line 1252

def age_44_tobacco
  @age_44_tobacco
end

#age_45Object

Rate for age 45



1255
1256
1257
# File 'lib/vericred_client/models/rate_search.rb', line 1255

def age_45
  @age_45
end

#age_45_tobaccoObject

Tobacco rate for age 45



1258
1259
1260
# File 'lib/vericred_client/models/rate_search.rb', line 1258

def age_45_tobacco
  @age_45_tobacco
end

#age_46Object

Rate for age 46



1261
1262
1263
# File 'lib/vericred_client/models/rate_search.rb', line 1261

def age_46
  @age_46
end

#age_46_tobaccoObject

Tobacco rate for age 46



1264
1265
1266
# File 'lib/vericred_client/models/rate_search.rb', line 1264

def age_46_tobacco
  @age_46_tobacco
end

#age_47Object

Rate for age 47



1267
1268
1269
# File 'lib/vericred_client/models/rate_search.rb', line 1267

def age_47
  @age_47
end

#age_47_tobaccoObject

Tobacco rate for age 47



1270
1271
1272
# File 'lib/vericred_client/models/rate_search.rb', line 1270

def age_47_tobacco
  @age_47_tobacco
end

#age_48Object

Rate for age 48



1273
1274
1275
# File 'lib/vericred_client/models/rate_search.rb', line 1273

def age_48
  @age_48
end

#age_48_tobaccoObject

Tobacco rate for age 48



1276
1277
1278
# File 'lib/vericred_client/models/rate_search.rb', line 1276

def age_48_tobacco
  @age_48_tobacco
end

#age_49Object

Rate for age 49



1279
1280
1281
# File 'lib/vericred_client/models/rate_search.rb', line 1279

def age_49
  @age_49
end

#age_49_tobaccoObject

Tobacco rate for age 49



1282
1283
1284
# File 'lib/vericred_client/models/rate_search.rb', line 1282

def age_49_tobacco
  @age_49_tobacco
end

#age_4_tobaccoObject

Tobacco rate for age 4



1285
1286
1287
# File 'lib/vericred_client/models/rate_search.rb', line 1285

def age_4_tobacco
  @age_4_tobacco
end

#age_5Object

Rate for age 5



1288
1289
1290
# File 'lib/vericred_client/models/rate_search.rb', line 1288

def age_5
  @age_5
end

#age_50Object

Rate for age 50



1291
1292
1293
# File 'lib/vericred_client/models/rate_search.rb', line 1291

def age_50
  @age_50
end

#age_50_tobaccoObject

Tobacco rate for age 50



1294
1295
1296
# File 'lib/vericred_client/models/rate_search.rb', line 1294

def age_50_tobacco
  @age_50_tobacco
end

#age_51Object

Rate for age 51



1297
1298
1299
# File 'lib/vericred_client/models/rate_search.rb', line 1297

def age_51
  @age_51
end

#age_51_tobaccoObject

Tobacco rate for age 51



1300
1301
1302
# File 'lib/vericred_client/models/rate_search.rb', line 1300

def age_51_tobacco
  @age_51_tobacco
end

#age_52Object

Rate for age 52



1303
1304
1305
# File 'lib/vericred_client/models/rate_search.rb', line 1303

def age_52
  @age_52
end

#age_52_tobaccoObject

Tobacco rate for age 52



1306
1307
1308
# File 'lib/vericred_client/models/rate_search.rb', line 1306

def age_52_tobacco
  @age_52_tobacco
end

#age_53Object

Rate for age 53



1309
1310
1311
# File 'lib/vericred_client/models/rate_search.rb', line 1309

def age_53
  @age_53
end

#age_53_tobaccoObject

Tobacco rate for age 53



1312
1313
1314
# File 'lib/vericred_client/models/rate_search.rb', line 1312

def age_53_tobacco
  @age_53_tobacco
end

#age_54Object

Rate for age 54



1315
1316
1317
# File 'lib/vericred_client/models/rate_search.rb', line 1315

def age_54
  @age_54
end

#age_54_tobaccoObject

Tobacco rate for age 54



1318
1319
1320
# File 'lib/vericred_client/models/rate_search.rb', line 1318

def age_54_tobacco
  @age_54_tobacco
end

#age_55Object

Rate for age 55



1321
1322
1323
# File 'lib/vericred_client/models/rate_search.rb', line 1321

def age_55
  @age_55
end

#age_55_tobaccoObject

Tobacco rate for age 55



1324
1325
1326
# File 'lib/vericred_client/models/rate_search.rb', line 1324

def age_55_tobacco
  @age_55_tobacco
end

#age_56Object

Rate for age 56



1327
1328
1329
# File 'lib/vericred_client/models/rate_search.rb', line 1327

def age_56
  @age_56
end

#age_56_tobaccoObject

Tobacco rate for age 56



1330
1331
1332
# File 'lib/vericred_client/models/rate_search.rb', line 1330

def age_56_tobacco
  @age_56_tobacco
end

#age_57Object

Rate for age 57



1333
1334
1335
# File 'lib/vericred_client/models/rate_search.rb', line 1333

def age_57
  @age_57
end

#age_57_tobaccoObject

Tobacco rate for age 57



1336
1337
1338
# File 'lib/vericred_client/models/rate_search.rb', line 1336

def age_57_tobacco
  @age_57_tobacco
end

#age_58Object

Rate for age 58



1339
1340
1341
# File 'lib/vericred_client/models/rate_search.rb', line 1339

def age_58
  @age_58
end

#age_58_tobaccoObject

Tobacco rate for age 58



1342
1343
1344
# File 'lib/vericred_client/models/rate_search.rb', line 1342

def age_58_tobacco
  @age_58_tobacco
end

#age_59Object

Rate for age 59



1345
1346
1347
# File 'lib/vericred_client/models/rate_search.rb', line 1345

def age_59
  @age_59
end

#age_59_tobaccoObject

Tobacco rate for age 59



1348
1349
1350
# File 'lib/vericred_client/models/rate_search.rb', line 1348

def age_59_tobacco
  @age_59_tobacco
end

#age_5_tobaccoObject

Tobacco rate for age 5



1351
1352
1353
# File 'lib/vericred_client/models/rate_search.rb', line 1351

def age_5_tobacco
  @age_5_tobacco
end

#age_6Object

Rate for age 6



1354
1355
1356
# File 'lib/vericred_client/models/rate_search.rb', line 1354

def age_6
  @age_6
end

#age_60Object

Rate for age 60



1357
1358
1359
# File 'lib/vericred_client/models/rate_search.rb', line 1357

def age_60
  @age_60
end

#age_60_tobaccoObject

Tobacco rate for age 60



1360
1361
1362
# File 'lib/vericred_client/models/rate_search.rb', line 1360

def age_60_tobacco
  @age_60_tobacco
end

#age_61Object

Rate for age 61



1363
1364
1365
# File 'lib/vericred_client/models/rate_search.rb', line 1363

def age_61
  @age_61
end

#age_61_tobaccoObject

Tobacco rate for age 61



1366
1367
1368
# File 'lib/vericred_client/models/rate_search.rb', line 1366

def age_61_tobacco
  @age_61_tobacco
end

#age_62Object

Rate for age 62



1369
1370
1371
# File 'lib/vericred_client/models/rate_search.rb', line 1369

def age_62
  @age_62
end

#age_62_tobaccoObject

Tobacco rate for age 62



1372
1373
1374
# File 'lib/vericred_client/models/rate_search.rb', line 1372

def age_62_tobacco
  @age_62_tobacco
end

#age_63Object

Rate for age 63



1375
1376
1377
# File 'lib/vericred_client/models/rate_search.rb', line 1375

def age_63
  @age_63
end

#age_63_tobaccoObject

Tobacco rate for age 63



1378
1379
1380
# File 'lib/vericred_client/models/rate_search.rb', line 1378

def age_63_tobacco
  @age_63_tobacco
end

#age_64Object

Rate for age 64



1381
1382
1383
# File 'lib/vericred_client/models/rate_search.rb', line 1381

def age_64
  @age_64
end

#age_64_tobaccoObject

Tobacco rate for age 64



1384
1385
1386
# File 'lib/vericred_client/models/rate_search.rb', line 1384

def age_64_tobacco
  @age_64_tobacco
end

#age_65Object

Rate for age 65



1387
1388
1389
# File 'lib/vericred_client/models/rate_search.rb', line 1387

def age_65
  @age_65
end

#age_65_tobaccoObject

Tobacco rate for age 65



1390
1391
1392
# File 'lib/vericred_client/models/rate_search.rb', line 1390

def age_65_tobacco
  @age_65_tobacco
end

#age_6_tobaccoObject

Tobacco rate for age 6



1393
1394
1395
# File 'lib/vericred_client/models/rate_search.rb', line 1393

def age_6_tobacco
  @age_6_tobacco
end

#age_7Object

Rate for age 7



1396
1397
1398
# File 'lib/vericred_client/models/rate_search.rb', line 1396

def age_7
  @age_7
end

#age_7_tobaccoObject

Tobacco rate for age 7



1399
1400
1401
# File 'lib/vericred_client/models/rate_search.rb', line 1399

def age_7_tobacco
  @age_7_tobacco
end

#age_8Object

Rate for age 8



1402
1403
1404
# File 'lib/vericred_client/models/rate_search.rb', line 1402

def age_8
  @age_8
end

#age_8_tobaccoObject

Tobacco rate for age 8



1405
1406
1407
# File 'lib/vericred_client/models/rate_search.rb', line 1405

def age_8_tobacco
  @age_8_tobacco
end

#age_9Object

Rate for age 9



1408
1409
1410
# File 'lib/vericred_client/models/rate_search.rb', line 1408

def age_9
  @age_9
end

#age_9_tobaccoObject

Tobacco rate for age 9



1411
1412
1413
# File 'lib/vericred_client/models/rate_search.rb', line 1411

def age_9_tobacco
  @age_9_tobacco
end

#child_onlyObject

Fixed-family-tier rate for child_only



1414
1415
1416
# File 'lib/vericred_client/models/rate_search.rb', line 1414

def child_only
  @child_only
end

#effective_dateObject

First date on which the rate is effective



1417
1418
1419
# File 'lib/vericred_client/models/rate_search.rb', line 1417

def effective_date
  @effective_date
end

#expiration_dateObject

Last date on which the rate is effective



1420
1421
1422
# File 'lib/vericred_client/models/rate_search.rb', line 1420

def expiration_date
  @expiration_date
end

#familyObject

Fixed-family-tier rate for family



1423
1424
1425
# File 'lib/vericred_client/models/rate_search.rb', line 1423

def family
  @family
end

#plan_idObject

Foreign key to the plan



1426
1427
1428
# File 'lib/vericred_client/models/rate_search.rb', line 1426

def plan_id
  @plan_id
end

#singleObject

Fixed-family-tier rate for single



1429
1430
1431
# File 'lib/vericred_client/models/rate_search.rb', line 1429

def single
  @single
end

#single_and_childrenObject

Fixed-family-tier rate for single_and_children



1432
1433
1434
# File 'lib/vericred_client/models/rate_search.rb', line 1432

def single_and_children
  @single_and_children
end

#single_and_spouseObject

Fixed-family-tier rate for single_and_spouse



1435
1436
1437
# File 'lib/vericred_client/models/rate_search.rb', line 1435

def single_and_spouse
  @single_and_spouse
end

#sourceObject

Data source for the rate



1438
1439
1440
# File 'lib/vericred_client/models/rate_search.rb', line 1438

def source
  @source
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
# File 'lib/vericred_client/models/rate_search.rb', line 1442

def self.attribute_map
  {
    :'age_0' => :'age_0',
    :'age_0_tobacco' => :'age_0_tobacco',
    :'age_1' => :'age_1',
    :'age_10' => :'age_10',
    :'age_10_tobacco' => :'age_10_tobacco',
    :'age_11' => :'age_11',
    :'age_11_tobacco' => :'age_11_tobacco',
    :'age_12' => :'age_12',
    :'age_12_tobacco' => :'age_12_tobacco',
    :'age_13' => :'age_13',
    :'age_13_tobacco' => :'age_13_tobacco',
    :'age_14' => :'age_14',
    :'age_14_tobacco' => :'age_14_tobacco',
    :'age_15' => :'age_15',
    :'age_15_tobacco' => :'age_15_tobacco',
    :'age_16' => :'age_16',
    :'age_16_tobacco' => :'age_16_tobacco',
    :'age_17' => :'age_17',
    :'age_17_tobacco' => :'age_17_tobacco',
    :'age_18' => :'age_18',
    :'age_18_tobacco' => :'age_18_tobacco',
    :'age_19' => :'age_19',
    :'age_19_tobacco' => :'age_19_tobacco',
    :'age_1_tobacco' => :'age_1_tobacco',
    :'age_2' => :'age_2',
    :'age_20' => :'age_20',
    :'age_20_tobacco' => :'age_20_tobacco',
    :'age_21' => :'age_21',
    :'age_21_tobacco' => :'age_21_tobacco',
    :'age_22' => :'age_22',
    :'age_22_tobacco' => :'age_22_tobacco',
    :'age_23' => :'age_23',
    :'age_23_tobacco' => :'age_23_tobacco',
    :'age_24' => :'age_24',
    :'age_24_tobacco' => :'age_24_tobacco',
    :'age_25' => :'age_25',
    :'age_25_tobacco' => :'age_25_tobacco',
    :'age_26' => :'age_26',
    :'age_26_tobacco' => :'age_26_tobacco',
    :'age_27' => :'age_27',
    :'age_27_tobacco' => :'age_27_tobacco',
    :'age_28' => :'age_28',
    :'age_28_tobacco' => :'age_28_tobacco',
    :'age_29' => :'age_29',
    :'age_29_tobacco' => :'age_29_tobacco',
    :'age_2_tobacco' => :'age_2_tobacco',
    :'age_3' => :'age_3',
    :'age_30' => :'age_30',
    :'age_30_tobacco' => :'age_30_tobacco',
    :'age_31' => :'age_31',
    :'age_31_tobacco' => :'age_31_tobacco',
    :'age_32' => :'age_32',
    :'age_32_tobacco' => :'age_32_tobacco',
    :'age_33' => :'age_33',
    :'age_33_tobacco' => :'age_33_tobacco',
    :'age_34' => :'age_34',
    :'age_34_tobacco' => :'age_34_tobacco',
    :'age_35' => :'age_35',
    :'age_35_tobacco' => :'age_35_tobacco',
    :'age_36' => :'age_36',
    :'age_36_tobacco' => :'age_36_tobacco',
    :'age_37' => :'age_37',
    :'age_37_tobacco' => :'age_37_tobacco',
    :'age_38' => :'age_38',
    :'age_38_tobacco' => :'age_38_tobacco',
    :'age_39' => :'age_39',
    :'age_39_tobacco' => :'age_39_tobacco',
    :'age_3_tobacco' => :'age_3_tobacco',
    :'age_4' => :'age_4',
    :'age_40' => :'age_40',
    :'age_40_tobacco' => :'age_40_tobacco',
    :'age_41' => :'age_41',
    :'age_41_tobacco' => :'age_41_tobacco',
    :'age_42' => :'age_42',
    :'age_42_tobacco' => :'age_42_tobacco',
    :'age_43' => :'age_43',
    :'age_43_tobacco' => :'age_43_tobacco',
    :'age_44' => :'age_44',
    :'age_44_tobacco' => :'age_44_tobacco',
    :'age_45' => :'age_45',
    :'age_45_tobacco' => :'age_45_tobacco',
    :'age_46' => :'age_46',
    :'age_46_tobacco' => :'age_46_tobacco',
    :'age_47' => :'age_47',
    :'age_47_tobacco' => :'age_47_tobacco',
    :'age_48' => :'age_48',
    :'age_48_tobacco' => :'age_48_tobacco',
    :'age_49' => :'age_49',
    :'age_49_tobacco' => :'age_49_tobacco',
    :'age_4_tobacco' => :'age_4_tobacco',
    :'age_5' => :'age_5',
    :'age_50' => :'age_50',
    :'age_50_tobacco' => :'age_50_tobacco',
    :'age_51' => :'age_51',
    :'age_51_tobacco' => :'age_51_tobacco',
    :'age_52' => :'age_52',
    :'age_52_tobacco' => :'age_52_tobacco',
    :'age_53' => :'age_53',
    :'age_53_tobacco' => :'age_53_tobacco',
    :'age_54' => :'age_54',
    :'age_54_tobacco' => :'age_54_tobacco',
    :'age_55' => :'age_55',
    :'age_55_tobacco' => :'age_55_tobacco',
    :'age_56' => :'age_56',
    :'age_56_tobacco' => :'age_56_tobacco',
    :'age_57' => :'age_57',
    :'age_57_tobacco' => :'age_57_tobacco',
    :'age_58' => :'age_58',
    :'age_58_tobacco' => :'age_58_tobacco',
    :'age_59' => :'age_59',
    :'age_59_tobacco' => :'age_59_tobacco',
    :'age_5_tobacco' => :'age_5_tobacco',
    :'age_6' => :'age_6',
    :'age_60' => :'age_60',
    :'age_60_tobacco' => :'age_60_tobacco',
    :'age_61' => :'age_61',
    :'age_61_tobacco' => :'age_61_tobacco',
    :'age_62' => :'age_62',
    :'age_62_tobacco' => :'age_62_tobacco',
    :'age_63' => :'age_63',
    :'age_63_tobacco' => :'age_63_tobacco',
    :'age_64' => :'age_64',
    :'age_64_tobacco' => :'age_64_tobacco',
    :'age_65' => :'age_65',
    :'age_65_tobacco' => :'age_65_tobacco',
    :'age_6_tobacco' => :'age_6_tobacco',
    :'age_7' => :'age_7',
    :'age_7_tobacco' => :'age_7_tobacco',
    :'age_8' => :'age_8',
    :'age_8_tobacco' => :'age_8_tobacco',
    :'age_9' => :'age_9',
    :'age_9_tobacco' => :'age_9_tobacco',
    :'child_only' => :'child_only',
    :'effective_date' => :'effective_date',
    :'expiration_date' => :'expiration_date',
    :'family' => :'family',
    :'plan_id' => :'plan_id',
    :'single' => :'single',
    :'single_and_children' => :'single_and_children',
    :'single_and_spouse' => :'single_and_spouse',
    :'source' => :'source'
  }
end

.swagger_typesObject

Attribute type mapping.



1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
# File 'lib/vericred_client/models/rate_search.rb', line 1589

def self.swagger_types
  {
    :'age_0' => :'Float',
    :'age_0_tobacco' => :'Float',
    :'age_1' => :'Float',
    :'age_10' => :'Float',
    :'age_10_tobacco' => :'Float',
    :'age_11' => :'Float',
    :'age_11_tobacco' => :'Float',
    :'age_12' => :'Float',
    :'age_12_tobacco' => :'Float',
    :'age_13' => :'Float',
    :'age_13_tobacco' => :'Float',
    :'age_14' => :'Float',
    :'age_14_tobacco' => :'Float',
    :'age_15' => :'Float',
    :'age_15_tobacco' => :'Float',
    :'age_16' => :'Float',
    :'age_16_tobacco' => :'Float',
    :'age_17' => :'Float',
    :'age_17_tobacco' => :'Float',
    :'age_18' => :'Float',
    :'age_18_tobacco' => :'Float',
    :'age_19' => :'Float',
    :'age_19_tobacco' => :'Float',
    :'age_1_tobacco' => :'Float',
    :'age_2' => :'Float',
    :'age_20' => :'Float',
    :'age_20_tobacco' => :'Float',
    :'age_21' => :'Float',
    :'age_21_tobacco' => :'Float',
    :'age_22' => :'Float',
    :'age_22_tobacco' => :'Float',
    :'age_23' => :'Float',
    :'age_23_tobacco' => :'Float',
    :'age_24' => :'Float',
    :'age_24_tobacco' => :'Float',
    :'age_25' => :'Float',
    :'age_25_tobacco' => :'Float',
    :'age_26' => :'Float',
    :'age_26_tobacco' => :'Float',
    :'age_27' => :'Float',
    :'age_27_tobacco' => :'Float',
    :'age_28' => :'Float',
    :'age_28_tobacco' => :'Float',
    :'age_29' => :'Float',
    :'age_29_tobacco' => :'Float',
    :'age_2_tobacco' => :'Float',
    :'age_3' => :'Float',
    :'age_30' => :'Float',
    :'age_30_tobacco' => :'Float',
    :'age_31' => :'Float',
    :'age_31_tobacco' => :'Float',
    :'age_32' => :'Float',
    :'age_32_tobacco' => :'Float',
    :'age_33' => :'Float',
    :'age_33_tobacco' => :'Float',
    :'age_34' => :'Float',
    :'age_34_tobacco' => :'Float',
    :'age_35' => :'Float',
    :'age_35_tobacco' => :'Float',
    :'age_36' => :'Float',
    :'age_36_tobacco' => :'Float',
    :'age_37' => :'Float',
    :'age_37_tobacco' => :'Float',
    :'age_38' => :'Float',
    :'age_38_tobacco' => :'Float',
    :'age_39' => :'Float',
    :'age_39_tobacco' => :'Float',
    :'age_3_tobacco' => :'Float',
    :'age_4' => :'Float',
    :'age_40' => :'Float',
    :'age_40_tobacco' => :'Float',
    :'age_41' => :'Float',
    :'age_41_tobacco' => :'Float',
    :'age_42' => :'Float',
    :'age_42_tobacco' => :'Float',
    :'age_43' => :'Float',
    :'age_43_tobacco' => :'Float',
    :'age_44' => :'Float',
    :'age_44_tobacco' => :'Float',
    :'age_45' => :'Float',
    :'age_45_tobacco' => :'Float',
    :'age_46' => :'Float',
    :'age_46_tobacco' => :'Float',
    :'age_47' => :'Float',
    :'age_47_tobacco' => :'Float',
    :'age_48' => :'Float',
    :'age_48_tobacco' => :'Float',
    :'age_49' => :'Float',
    :'age_49_tobacco' => :'Float',
    :'age_4_tobacco' => :'Float',
    :'age_5' => :'Float',
    :'age_50' => :'Float',
    :'age_50_tobacco' => :'Float',
    :'age_51' => :'Float',
    :'age_51_tobacco' => :'Float',
    :'age_52' => :'Float',
    :'age_52_tobacco' => :'Float',
    :'age_53' => :'Float',
    :'age_53_tobacco' => :'Float',
    :'age_54' => :'Float',
    :'age_54_tobacco' => :'Float',
    :'age_55' => :'Float',
    :'age_55_tobacco' => :'Float',
    :'age_56' => :'Float',
    :'age_56_tobacco' => :'Float',
    :'age_57' => :'Float',
    :'age_57_tobacco' => :'Float',
    :'age_58' => :'Float',
    :'age_58_tobacco' => :'Float',
    :'age_59' => :'Float',
    :'age_59_tobacco' => :'Float',
    :'age_5_tobacco' => :'Float',
    :'age_6' => :'Float',
    :'age_60' => :'Float',
    :'age_60_tobacco' => :'Float',
    :'age_61' => :'Float',
    :'age_61_tobacco' => :'Float',
    :'age_62' => :'Float',
    :'age_62_tobacco' => :'Float',
    :'age_63' => :'Float',
    :'age_63_tobacco' => :'Float',
    :'age_64' => :'Float',
    :'age_64_tobacco' => :'Float',
    :'age_65' => :'Float',
    :'age_65_tobacco' => :'Float',
    :'age_6_tobacco' => :'Float',
    :'age_7' => :'Float',
    :'age_7_tobacco' => :'Float',
    :'age_8' => :'Float',
    :'age_8_tobacco' => :'Float',
    :'age_9' => :'Float',
    :'age_9_tobacco' => :'Float',
    :'child_only' => :'Float',
    :'effective_date' => :'Date',
    :'expiration_date' => :'Date',
    :'family' => :'Float',
    :'plan_id' => :'String',
    :'single' => :'Float',
    :'single_and_children' => :'Float',
    :'single_and_spouse' => :'Float',
    :'source' => :'String'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
# File 'lib/vericred_client/models/rate_search.rb', line 2324

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      age_0 == o.age_0 &&
      age_0_tobacco == o.age_0_tobacco &&
      age_1 == o.age_1 &&
      age_10 == o.age_10 &&
      age_10_tobacco == o.age_10_tobacco &&
      age_11 == o.age_11 &&
      age_11_tobacco == o.age_11_tobacco &&
      age_12 == o.age_12 &&
      age_12_tobacco == o.age_12_tobacco &&
      age_13 == o.age_13 &&
      age_13_tobacco == o.age_13_tobacco &&
      age_14 == o.age_14 &&
      age_14_tobacco == o.age_14_tobacco &&
      age_15 == o.age_15 &&
      age_15_tobacco == o.age_15_tobacco &&
      age_16 == o.age_16 &&
      age_16_tobacco == o.age_16_tobacco &&
      age_17 == o.age_17 &&
      age_17_tobacco == o.age_17_tobacco &&
      age_18 == o.age_18 &&
      age_18_tobacco == o.age_18_tobacco &&
      age_19 == o.age_19 &&
      age_19_tobacco == o.age_19_tobacco &&
      age_1_tobacco == o.age_1_tobacco &&
      age_2 == o.age_2 &&
      age_20 == o.age_20 &&
      age_20_tobacco == o.age_20_tobacco &&
      age_21 == o.age_21 &&
      age_21_tobacco == o.age_21_tobacco &&
      age_22 == o.age_22 &&
      age_22_tobacco == o.age_22_tobacco &&
      age_23 == o.age_23 &&
      age_23_tobacco == o.age_23_tobacco &&
      age_24 == o.age_24 &&
      age_24_tobacco == o.age_24_tobacco &&
      age_25 == o.age_25 &&
      age_25_tobacco == o.age_25_tobacco &&
      age_26 == o.age_26 &&
      age_26_tobacco == o.age_26_tobacco &&
      age_27 == o.age_27 &&
      age_27_tobacco == o.age_27_tobacco &&
      age_28 == o.age_28 &&
      age_28_tobacco == o.age_28_tobacco &&
      age_29 == o.age_29 &&
      age_29_tobacco == o.age_29_tobacco &&
      age_2_tobacco == o.age_2_tobacco &&
      age_3 == o.age_3 &&
      age_30 == o.age_30 &&
      age_30_tobacco == o.age_30_tobacco &&
      age_31 == o.age_31 &&
      age_31_tobacco == o.age_31_tobacco &&
      age_32 == o.age_32 &&
      age_32_tobacco == o.age_32_tobacco &&
      age_33 == o.age_33 &&
      age_33_tobacco == o.age_33_tobacco &&
      age_34 == o.age_34 &&
      age_34_tobacco == o.age_34_tobacco &&
      age_35 == o.age_35 &&
      age_35_tobacco == o.age_35_tobacco &&
      age_36 == o.age_36 &&
      age_36_tobacco == o.age_36_tobacco &&
      age_37 == o.age_37 &&
      age_37_tobacco == o.age_37_tobacco &&
      age_38 == o.age_38 &&
      age_38_tobacco == o.age_38_tobacco &&
      age_39 == o.age_39 &&
      age_39_tobacco == o.age_39_tobacco &&
      age_3_tobacco == o.age_3_tobacco &&
      age_4 == o.age_4 &&
      age_40 == o.age_40 &&
      age_40_tobacco == o.age_40_tobacco &&
      age_41 == o.age_41 &&
      age_41_tobacco == o.age_41_tobacco &&
      age_42 == o.age_42 &&
      age_42_tobacco == o.age_42_tobacco &&
      age_43 == o.age_43 &&
      age_43_tobacco == o.age_43_tobacco &&
      age_44 == o.age_44 &&
      age_44_tobacco == o.age_44_tobacco &&
      age_45 == o.age_45 &&
      age_45_tobacco == o.age_45_tobacco &&
      age_46 == o.age_46 &&
      age_46_tobacco == o.age_46_tobacco &&
      age_47 == o.age_47 &&
      age_47_tobacco == o.age_47_tobacco &&
      age_48 == o.age_48 &&
      age_48_tobacco == o.age_48_tobacco &&
      age_49 == o.age_49 &&
      age_49_tobacco == o.age_49_tobacco &&
      age_4_tobacco == o.age_4_tobacco &&
      age_5 == o.age_5 &&
      age_50 == o.age_50 &&
      age_50_tobacco == o.age_50_tobacco &&
      age_51 == o.age_51 &&
      age_51_tobacco == o.age_51_tobacco &&
      age_52 == o.age_52 &&
      age_52_tobacco == o.age_52_tobacco &&
      age_53 == o.age_53 &&
      age_53_tobacco == o.age_53_tobacco &&
      age_54 == o.age_54 &&
      age_54_tobacco == o.age_54_tobacco &&
      age_55 == o.age_55 &&
      age_55_tobacco == o.age_55_tobacco &&
      age_56 == o.age_56 &&
      age_56_tobacco == o.age_56_tobacco &&
      age_57 == o.age_57 &&
      age_57_tobacco == o.age_57_tobacco &&
      age_58 == o.age_58 &&
      age_58_tobacco == o.age_58_tobacco &&
      age_59 == o.age_59 &&
      age_59_tobacco == o.age_59_tobacco &&
      age_5_tobacco == o.age_5_tobacco &&
      age_6 == o.age_6 &&
      age_60 == o.age_60 &&
      age_60_tobacco == o.age_60_tobacco &&
      age_61 == o.age_61 &&
      age_61_tobacco == o.age_61_tobacco &&
      age_62 == o.age_62 &&
      age_62_tobacco == o.age_62_tobacco &&
      age_63 == o.age_63 &&
      age_63_tobacco == o.age_63_tobacco &&
      age_64 == o.age_64 &&
      age_64_tobacco == o.age_64_tobacco &&
      age_65 == o.age_65 &&
      age_65_tobacco == o.age_65_tobacco &&
      age_6_tobacco == o.age_6_tobacco &&
      age_7 == o.age_7 &&
      age_7_tobacco == o.age_7_tobacco &&
      age_8 == o.age_8 &&
      age_8_tobacco == o.age_8_tobacco &&
      age_9 == o.age_9 &&
      age_9_tobacco == o.age_9_tobacco &&
      child_only == o.child_only &&
      effective_date == o.effective_date &&
      expiration_date == o.expiration_date &&
      family == o.family &&
      plan_id == o.plan_id &&
      single == o.single &&
      single_and_children == o.single_and_children &&
      single_and_spouse == o.single_and_spouse &&
      source == o.source
end

#_deserialize(type, value) ⇒ Object

Deserializes the data based on type

Parameters:

  • string

    type Data type

  • string

    value Value to be deserialized

Returns:

  • (Object)

    Deserialized data



2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
# File 'lib/vericred_client/models/rate_search.rb', line 2506

def _deserialize(type, value)
  case type.to_sym
  when :DateTime
    DateTime.parse(value)
  when :Date
    Date.parse(value)
  when :String
    value.to_s
  when :Integer
    value.to_i
  when :Float
    value.to_f
  when :BOOLEAN
    if value.to_s =~ /\A(true|t|yes|y|1)\z/i
      true
    else
      false
    end
  when :Object
    # generic object (usually a Hash), return directly
    value
  when /\AArray<(?<inner_type>.+)>\z/
    inner_type = Regexp.last_match[:inner_type]
    value.map { |v| _deserialize(inner_type, v) }
  when /\AHash<(?<k_type>.+), (?<v_type>.+)>\z/
    k_type = Regexp.last_match[:k_type]
    v_type = Regexp.last_match[:v_type]
    {}.tap do |hash|
      value.each do |k, v|
        hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
      end
    end
  else # model
    temp_model = VericredClient.const_get(type).new
    temp_model.build_from_hash(value)
  end
end

#_to_hash(value) ⇒ Hash

Outputs non-array value in the form of hash For object, use to_hash. Otherwise, just return the value

Parameters:

  • value (Object)

    Any valid value

Returns:

  • (Hash)

    Returns the value in the form of hash



2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
# File 'lib/vericred_client/models/rate_search.rb', line 2572

def _to_hash(value)
  if value.is_a?(Array)
    value.compact.map{ |v| _to_hash(v) }
  elsif value.is_a?(Hash)
    {}.tap do |hash|
      value.each { |k, v| hash[k] = _to_hash(v) }
    end
  elsif value.respond_to? :to_hash
    value.to_hash
  else
    value
  end
end

#build_from_hash(attributes) ⇒ Object

Builds the object from hash

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
# File 'lib/vericred_client/models/rate_search.rb', line 2485

def build_from_hash(attributes)
  return nil unless attributes.is_a?(Hash)
  self.class.swagger_types.each_pair do |key, type|
    if type =~ /\AArray<(.*)>/i
      # check to ensure the input is an array given that the the attribute
      # is documented as an array but the input is not
      if attributes[self.class.attribute_map[key]].is_a?(Array)
        self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) } )
      end
    elsif !attributes[self.class.attribute_map[key]].nil?
      self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
    end # or else data not found in attributes(hash), not an issue as the data can be optional
  end

  self
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


2472
2473
2474
# File 'lib/vericred_client/models/rate_search.rb', line 2472

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



2478
2479
2480
# File 'lib/vericred_client/models/rate_search.rb', line 2478

def hash
  [age_0, age_0_tobacco, age_1, age_10, age_10_tobacco, age_11, age_11_tobacco, age_12, age_12_tobacco, age_13, age_13_tobacco, age_14, age_14_tobacco, age_15, age_15_tobacco, age_16, age_16_tobacco, age_17, age_17_tobacco, age_18, age_18_tobacco, age_19, age_19_tobacco, age_1_tobacco, age_2, age_20, age_20_tobacco, age_21, age_21_tobacco, age_22, age_22_tobacco, age_23, age_23_tobacco, age_24, age_24_tobacco, age_25, age_25_tobacco, age_26, age_26_tobacco, age_27, age_27_tobacco, age_28, age_28_tobacco, age_29, age_29_tobacco, age_2_tobacco, age_3, age_30, age_30_tobacco, age_31, age_31_tobacco, age_32, age_32_tobacco, age_33, age_33_tobacco, age_34, age_34_tobacco, age_35, age_35_tobacco, age_36, age_36_tobacco, age_37, age_37_tobacco, age_38, age_38_tobacco, age_39, age_39_tobacco, age_3_tobacco, age_4, age_40, age_40_tobacco, age_41, age_41_tobacco, age_42, age_42_tobacco, age_43, age_43_tobacco, age_44, age_44_tobacco, age_45, age_45_tobacco, age_46, age_46_tobacco, age_47, age_47_tobacco, age_48, age_48_tobacco, age_49, age_49_tobacco, age_4_tobacco, age_5, age_50, age_50_tobacco, age_51, age_51_tobacco, age_52, age_52_tobacco, age_53, age_53_tobacco, age_54, age_54_tobacco, age_55, age_55_tobacco, age_56, age_56_tobacco, age_57, age_57_tobacco, age_58, age_58_tobacco, age_59, age_59_tobacco, age_5_tobacco, age_6, age_60, age_60_tobacco, age_61, age_61_tobacco, age_62, age_62_tobacco, age_63, age_63_tobacco, age_64, age_64_tobacco, age_65, age_65_tobacco, age_6_tobacco, age_7, age_7_tobacco, age_8, age_8_tobacco, age_9, age_9_tobacco, child_only, effective_date, expiration_date, family, plan_id, single, single_and_children, single_and_spouse, source].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properies with the reasons



2311
2312
2313
2314
# File 'lib/vericred_client/models/rate_search.rb', line 2311

def list_invalid_properties
  invalid_properties = Array.new
  return invalid_properties
end

#to_bodyHash

to_body is an alias to to_hash (backward compatibility)

Returns:

  • (Hash)

    Returns the object in the form of hash



2552
2553
2554
# File 'lib/vericred_client/models/rate_search.rb', line 2552

def to_body
  to_hash
end

#to_hashHash

Returns the object in the form of hash

Returns:

  • (Hash)

    Returns the object in the form of hash



2558
2559
2560
2561
2562
2563
2564
2565
2566
# File 'lib/vericred_client/models/rate_search.rb', line 2558

def to_hash
  hash = {}
  self.class.attribute_map.each_pair do |attr, param|
    value = self.send(attr)
    next if value.nil?
    hash[param] = _to_hash(value)
  end
  hash
end

#to_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



2546
2547
2548
# File 'lib/vericred_client/models/rate_search.rb', line 2546

def to_s
  to_hash.to_s
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



2318
2319
2320
# File 'lib/vericred_client/models/rate_search.rb', line 2318

def valid?
  return true
end