Class: Verizon::CampaignSoftwareUpgrade
- Inherits:
-
BaseModel
- Object
- CoreLibrary::BaseModel
- BaseModel
- Verizon::CampaignSoftwareUpgrade
- Defined in:
- lib/verizon/models/campaign_software_upgrade.rb
Overview
Software upgrade information.
Instance Attribute Summary collapse
-
#campaign_name ⇒ String
Campaign name.
-
#device_list ⇒ Array[String]
Device IMEI list.
-
#distribution_type ⇒ String
OMA or HTTP.
-
#download_after_date ⇒ Date
Specifies starting date client should download package.
-
#download_time_window_list ⇒ Array[V2TimeWindow]
List of allowed download time windows.
-
#end_date ⇒ Date
Campaign end date.
-
#install_after_date ⇒ Date
Client will install package after date.
-
#install_time_window_list ⇒ Array[V2TimeWindow]
List of allowed install time windows.
-
#software_from ⇒ String
Old software name.
-
#software_name ⇒ String
Software name to upgrade to.
-
#software_to ⇒ String
New software name.
-
#start_date ⇒ Date
Campaign start date.
Class Method Summary collapse
-
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
-
.names ⇒ Object
A mapping from model property names to API property names.
-
.nullables ⇒ Object
An array for nullable fields.
-
.optionals ⇒ Object
An array for optional fields.
Instance Method Summary collapse
-
#initialize(software_name = nil, software_from = nil, software_to = nil, distribution_type = nil, start_date = nil, end_date = nil, device_list = nil, campaign_name = SKIP, download_after_date = SKIP, download_time_window_list = SKIP, install_after_date = SKIP, install_time_window_list = SKIP) ⇒ CampaignSoftwareUpgrade
constructor
A new instance of CampaignSoftwareUpgrade.
Methods inherited from BaseModel
Constructor Details
#initialize(software_name = nil, software_from = nil, software_to = nil, distribution_type = nil, start_date = nil, end_date = nil, device_list = nil, campaign_name = SKIP, download_after_date = SKIP, download_time_window_list = SKIP, install_after_date = SKIP, install_time_window_list = SKIP) ⇒ CampaignSoftwareUpgrade
Returns a new instance of CampaignSoftwareUpgrade.
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 96 def initialize(software_name = nil, software_from = nil, software_to = nil, distribution_type = nil, start_date = nil, end_date = nil, device_list = nil, campaign_name = SKIP, download_after_date = SKIP, download_time_window_list = SKIP, install_after_date = SKIP, install_time_window_list = SKIP) @campaign_name = campaign_name unless campaign_name == SKIP @software_name = software_name @software_from = software_from @software_to = software_to @distribution_type = distribution_type @start_date = start_date @end_date = end_date @download_after_date = download_after_date unless download_after_date == SKIP unless download_time_window_list == SKIP @download_time_window_list = download_time_window_list end @install_after_date = install_after_date unless install_after_date == SKIP @install_time_window_list = install_time_window_list unless install_time_window_list == SKIP @device_list = device_list end |
Instance Attribute Details
#campaign_name ⇒ String
Campaign name.
14 15 16 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 14 def campaign_name @campaign_name end |
#device_list ⇒ Array[String]
Device IMEI list.
60 61 62 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 60 def device_list @device_list end |
#distribution_type ⇒ String
OMA or HTTP.
30 31 32 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 30 def distribution_type @distribution_type end |
#download_after_date ⇒ Date
Specifies starting date client should download package. If null, client will download as soon as possible.
43 44 45 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 43 def download_after_date @download_after_date end |
#download_time_window_list ⇒ Array[V2TimeWindow]
List of allowed download time windows.
47 48 49 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 47 def download_time_window_list @download_time_window_list end |
#end_date ⇒ Date
Campaign end date.
38 39 40 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 38 def end_date @end_date end |
#install_after_date ⇒ Date
Client will install package after date. If null, client will install as soon as possible.
52 53 54 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 52 def install_after_date @install_after_date end |
#install_time_window_list ⇒ Array[V2TimeWindow]
List of allowed install time windows.
56 57 58 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 56 def install_time_window_list @install_time_window_list end |
#software_from ⇒ String
Old software name.
22 23 24 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 22 def software_from @software_from end |
#software_name ⇒ String
Software name to upgrade to.
18 19 20 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 18 def software_name @software_name end |
#software_to ⇒ String
New software name.
26 27 28 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 26 def software_to @software_to end |
#start_date ⇒ Date
Campaign start date.
34 35 36 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 34 def start_date @start_date end |
Class Method Details
.from_hash(hash) ⇒ Object
Creates an instance of the object from a hash.
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 119 def self.from_hash(hash) return nil unless hash # Extract variables from the hash. software_name = hash.key?('softwareName') ? hash['softwareName'] : nil software_from = hash.key?('softwareFrom') ? hash['softwareFrom'] : nil software_to = hash.key?('softwareTo') ? hash['softwareTo'] : nil distribution_type = hash.key?('distributionType') ? hash['distributionType'] : nil start_date = hash.key?('startDate') ? hash['startDate'] : nil end_date = hash.key?('endDate') ? hash['endDate'] : nil device_list = hash.key?('deviceList') ? hash['deviceList'] : nil campaign_name = hash.key?('campaignName') ? hash['campaignName'] : SKIP download_after_date = hash.key?('downloadAfterDate') ? hash['downloadAfterDate'] : SKIP # Parameter is an array, so we need to iterate through it download_time_window_list = nil unless hash['downloadTimeWindowList'].nil? download_time_window_list = [] hash['downloadTimeWindowList'].each do |structure| download_time_window_list << (V2TimeWindow.from_hash(structure) if structure) end end download_time_window_list = SKIP unless hash.key?('downloadTimeWindowList') install_after_date = hash.key?('installAfterDate') ? hash['installAfterDate'] : SKIP # Parameter is an array, so we need to iterate through it install_time_window_list = nil unless hash['installTimeWindowList'].nil? install_time_window_list = [] hash['installTimeWindowList'].each do |structure| install_time_window_list << (V2TimeWindow.from_hash(structure) if structure) end end install_time_window_list = SKIP unless hash.key?('installTimeWindowList') # Create object from extracted values. CampaignSoftwareUpgrade.new(software_name, software_from, software_to, distribution_type, start_date, end_date, device_list, campaign_name, download_after_date, download_time_window_list, install_after_date, install_time_window_list) end |
.names ⇒ Object
A mapping from model property names to API property names.
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 63 def self.names @_hash = {} if @_hash.nil? @_hash['campaign_name'] = 'campaignName' @_hash['software_name'] = 'softwareName' @_hash['software_from'] = 'softwareFrom' @_hash['software_to'] = 'softwareTo' @_hash['distribution_type'] = 'distributionType' @_hash['start_date'] = 'startDate' @_hash['end_date'] = 'endDate' @_hash['download_after_date'] = 'downloadAfterDate' @_hash['download_time_window_list'] = 'downloadTimeWindowList' @_hash['install_after_date'] = 'installAfterDate' @_hash['install_time_window_list'] = 'installTimeWindowList' @_hash['device_list'] = 'deviceList' @_hash end |
.nullables ⇒ Object
An array for nullable fields
92 93 94 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 92 def self.nullables [] end |
.optionals ⇒ Object
An array for optional fields
81 82 83 84 85 86 87 88 89 |
# File 'lib/verizon/models/campaign_software_upgrade.rb', line 81 def self.optionals %w[ campaign_name download_after_date download_time_window_list install_after_date install_time_window_list ] end |