Sha256: 5b87c0f79a9a67545b4777fdf2f822d6826e6334d2ca8ece8967b88411bd321a

Contents?: true

Size: 1.12 KB

Versions: 7

Compression:

Stored size: 1.12 KB

Contents

# frozen_string_literal: true

require "hashie"

module ShipEngine
  module Domain
    class Shipsurance
      def initialize
        @client = ShipEngine::Client.new
      end

      def disconnect_shipsurance_account(params: {})
        response = @client.delete(
          path: ShipEngine::Constants::PATHS.v1.shipsurance.root,
          options: params
        )

        Hashie::Mash.new(response.body)
      end

      def connect_shipsurance_account(params: {})
        response = @client.post(
          path: ShipEngine::Constants::PATHS.v1.shipsurance.root,
          options: params
        )

        Hashie::Mash.new(response.body)
      end

      def add_funds_to_insurance(params: {})
        response = @client.patch(
          path: ShipEngine::Constants::PATHS.v1.shipsurance.add_funds,
          options: params
        )

        Hashie::Mash.new(response.body)
      end

      def get_insurance_funds_balance(params: {})
        response = @client.get(
          path: ShipEngine::Constants::PATHS.v1.shipsurance.balance,
          options: params
        )

        Hashie::Mash.new(response.body)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
shipengine_ruby-0.0.7 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.6 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.5 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.4 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.3 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.2 lib/shipengine/domains/shipsurance.rb
shipengine_ruby-0.0.1 lib/shipengine/domains/shipsurance.rb