diff --git a/lib/easypost/services/address.rb b/lib/easypost/services/address.rb index 5221756..4587e70 100644 --- a/lib/easypost/services/address.rb +++ b/lib/easypost/services/address.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Address < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Address #:nodoc: + MODEL_CLASS = EasyPost::Models::Address # :nodoc: # Create an address. def create(params = {}) diff --git a/lib/easypost/services/batch.rb b/lib/easypost/services/batch.rb index fdcf18e..96eca3f 100644 --- a/lib/easypost/services/batch.rb +++ b/lib/easypost/services/batch.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Batch < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Batch #:nodoc: + MODEL_CLASS = EasyPost::Models::Batch # :nodoc: # Create a Batch. def create(params = {}) diff --git a/lib/easypost/services/carrier_account.rb b/lib/easypost/services/carrier_account.rb index e91e882..36a1bd0 100644 --- a/lib/easypost/services/carrier_account.rb +++ b/lib/easypost/services/carrier_account.rb @@ -3,7 +3,7 @@ class EasyPost::Services::CarrierAccount < EasyPost::Services::Service CUSTOM_WORKFLOW_CARRIER_TYPES = %w[FedexAccount FedexSmartpostAccount].freeze UPS_OAUTH_CARRIER_ACCOUNT_TYPES = %w[UpsAccount UpsMailInnovationsAccount UpsSurepostAccount].freeze - MODEL_CLASS = EasyPost::Models::CarrierAccount #:nodoc: + MODEL_CLASS = EasyPost::Models::CarrierAccount # :nodoc: # Create a carrier account def create(params = {}) diff --git a/lib/easypost/services/carrier_type.rb b/lib/easypost/services/carrier_type.rb index 3fa15b9..89e4640 100644 --- a/lib/easypost/services/carrier_type.rb +++ b/lib/easypost/services/carrier_type.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::CarrierType < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::CarrierType #:nodoc: + MODEL_CLASS = EasyPost::Models::CarrierType # :nodoc: # Retrieve all carrier types def all diff --git a/lib/easypost/services/claim.rb b/lib/easypost/services/claim.rb index 27c1823..4d0d6e5 100644 --- a/lib/easypost/services/claim.rb +++ b/lib/easypost/services/claim.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Claim < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Claim #:nodoc: + MODEL_CLASS = EasyPost::Models::Claim # :nodoc: # Create an Claim object def create(params = {}) diff --git a/lib/easypost/services/customs_info.rb b/lib/easypost/services/customs_info.rb index 46b1646..96f5702 100644 --- a/lib/easypost/services/customs_info.rb +++ b/lib/easypost/services/customs_info.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::CustomsInfo < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::CustomsInfo #:nodoc: + MODEL_CLASS = EasyPost::Models::CustomsInfo # :nodoc: # Create a CustomsInfo object def create(params) diff --git a/lib/easypost/services/customs_item.rb b/lib/easypost/services/customs_item.rb index 77fae68..35a3dee 100644 --- a/lib/easypost/services/customs_item.rb +++ b/lib/easypost/services/customs_item.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::CustomsItem < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::CustomsItem #:nodoc: + MODEL_CLASS = EasyPost::Models::CustomsItem # :nodoc: # Create a CustomsItem object def create(params) diff --git a/lib/easypost/services/end_shipper.rb b/lib/easypost/services/end_shipper.rb index ee2a5a8..7de6e44 100644 --- a/lib/easypost/services/end_shipper.rb +++ b/lib/easypost/services/end_shipper.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::EndShipper < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::EndShipper #:nodoc: + MODEL_CLASS = EasyPost::Models::EndShipper # :nodoc: # Create an EndShipper object. def create(params = {}) diff --git a/lib/easypost/services/event.rb b/lib/easypost/services/event.rb index 7931a5d..fc58f9e 100644 --- a/lib/easypost/services/event.rb +++ b/lib/easypost/services/event.rb @@ -3,7 +3,7 @@ require 'json' class EasyPost::Services::Event < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Event #:nodoc: + MODEL_CLASS = EasyPost::Models::Event # :nodoc: # Retrieve an Event object def retrieve(id) diff --git a/lib/easypost/services/insurance.rb b/lib/easypost/services/insurance.rb index ef509d6..1a7ebc2 100644 --- a/lib/easypost/services/insurance.rb +++ b/lib/easypost/services/insurance.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Insurance < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Insurance #:nodoc: + MODEL_CLASS = EasyPost::Models::Insurance # :nodoc: # Create an Insurance object def create(params = {}) diff --git a/lib/easypost/services/order.rb b/lib/easypost/services/order.rb index cc292fd..ff109fc 100644 --- a/lib/easypost/services/order.rb +++ b/lib/easypost/services/order.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Order < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Order #:nodoc: + MODEL_CLASS = EasyPost::Models::Order # :nodoc: # Create an Order object def create(params = {}) diff --git a/lib/easypost/services/parcel.rb b/lib/easypost/services/parcel.rb index 763ae08..6625185 100644 --- a/lib/easypost/services/parcel.rb +++ b/lib/easypost/services/parcel.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Parcel < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Parcel #:nodoc: + MODEL_CLASS = EasyPost::Models::Parcel # :nodoc: # Create a Parcel object def create(params = {}) diff --git a/lib/easypost/services/pickup.rb b/lib/easypost/services/pickup.rb index 3534f10..ecccfc0 100644 --- a/lib/easypost/services/pickup.rb +++ b/lib/easypost/services/pickup.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Pickup < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Pickup #:nodoc: + MODEL_CLASS = EasyPost::Models::Pickup # :nodoc: # Create a Pickup object def create(params = {}) diff --git a/lib/easypost/services/referral_customer.rb b/lib/easypost/services/referral_customer.rb index 6326ec9..22aa515 100644 --- a/lib/easypost/services/referral_customer.rb +++ b/lib/easypost/services/referral_customer.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::ReferralCustomer < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::User #:nodoc: + MODEL_CLASS = EasyPost::Models::User # :nodoc: # Create a referral customer. This function requires the Partner User's API key. def create(params = {}) diff --git a/lib/easypost/services/refund.rb b/lib/easypost/services/refund.rb index aaa58e9..9d929be 100644 --- a/lib/easypost/services/refund.rb +++ b/lib/easypost/services/refund.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Refund < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Refund #:nodoc: + MODEL_CLASS = EasyPost::Models::Refund # :nodoc: # Create a Refund object def create(params = {}) diff --git a/lib/easypost/services/report.rb b/lib/easypost/services/report.rb index 6bd3b8e..450ac47 100644 --- a/lib/easypost/services/report.rb +++ b/lib/easypost/services/report.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Report < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Report #:nodoc: + MODEL_CLASS = EasyPost::Models::Report # :nodoc: # Create a Report def create(params = {}) diff --git a/lib/easypost/services/scan_form.rb b/lib/easypost/services/scan_form.rb index 68dc281..8dc26f9 100644 --- a/lib/easypost/services/scan_form.rb +++ b/lib/easypost/services/scan_form.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::ScanForm < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::ScanForm #:nodoc: + MODEL_CLASS = EasyPost::Models::ScanForm # :nodoc: # Create a ScanForm. def create(params = {}) diff --git a/lib/easypost/services/shipment.rb b/lib/easypost/services/shipment.rb index 450d765..35ec35d 100644 --- a/lib/easypost/services/shipment.rb +++ b/lib/easypost/services/shipment.rb @@ -3,7 +3,7 @@ require 'set' class EasyPost::Services::Shipment < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Shipment #:nodoc: + MODEL_CLASS = EasyPost::Models::Shipment # :nodoc: # Create a Shipment. def create(params = {}) diff --git a/lib/easypost/services/tracker.rb b/lib/easypost/services/tracker.rb index a3e3199..19ad7a8 100644 --- a/lib/easypost/services/tracker.rb +++ b/lib/easypost/services/tracker.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Tracker < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Tracker #:nodoc: + MODEL_CLASS = EasyPost::Models::Tracker # :nodoc: # Create a Tracker def create(params = {}) diff --git a/lib/easypost/services/user.rb b/lib/easypost/services/user.rb index 847265d..1703ec9 100644 --- a/lib/easypost/services/user.rb +++ b/lib/easypost/services/user.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::User < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::User #:nodoc: + MODEL_CLASS = EasyPost::Models::User # :nodoc: # Create a child User. def create(params = {}) diff --git a/lib/easypost/services/webhook.rb b/lib/easypost/services/webhook.rb index 6e89395..3c910de 100644 --- a/lib/easypost/services/webhook.rb +++ b/lib/easypost/services/webhook.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class EasyPost::Services::Webhook < EasyPost::Services::Service - MODEL_CLASS = EasyPost::Models::Webhook #:nodoc: + MODEL_CLASS = EasyPost::Models::Webhook # :nodoc: # Create a Webhook. def create(params = {})