Sha256: eaf698b1cd57f2eb3eb3af84ebf07b63b5302e3b694205c62172ae28600e7c72

Contents?: true

Size: 362 Bytes

Versions: 1

Compression:

Stored size: 362 Bytes

Contents

# frozen_string_literal: true

module Tikkie
  module Api
    module Resources
      # Resource for a Sandbox App.
      class SandboxApp < Base
        def app_token
          body[:appToken]
        end

        private

        def create_resource(attributes)
          request.post("sandboxapps", options, attributes)
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tikkie-api-2.0.0 lib/tikkie/api/resources/sandbox_app.rb