Method: Verizon::FotaV2Subscription#initialize
- Defined in:
- lib/verizon/models/fota_v2_subscription.rb
#initialize(account_name = SKIP, purchase_type = SKIP, license_count = SKIP, license_used_count = SKIP, update_time = SKIP) ⇒ FotaV2Subscription
Returns a new instance of FotaV2Subscription.
59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/verizon/models/fota_v2_subscription.rb', line 59 def initialize(account_name = SKIP, purchase_type = SKIP, license_count = SKIP, license_used_count = SKIP, update_time = SKIP) @account_name = account_name unless account_name == SKIP @purchase_type = purchase_type unless purchase_type == SKIP @license_count = license_count unless license_count == SKIP @license_used_count = license_used_count unless license_used_count == SKIP @update_time = update_time unless update_time == SKIP end |