Sha256: c5df124e01a7b7b35f8e32dc112717dd1b0c66755558f9624c61bdbf9f18a334
Contents?: true
Size: 334 Bytes
Versions: 43
Compression:
Stored size: 334 Bytes
Contents
# frozen_string_literal: true module Files class PaypalExpressUrl attr_reader :options, :attributes def initialize(attributes = {}, options = {}) @attributes = attributes || {} @options = options || {} end # string - Redirect link def redirect_to @attributes[:redirect_to] end end end
Version data entries
43 entries across 43 versions & 1 rubygems