Sha256: 1e6fa98205a3b2133c77b2394997e792b6b4489fe10b119e6a6ea94b797dad31
Contents?: true
Size: 433 Bytes
Versions: 6
Compression:
Stored size: 433 Bytes
Contents
# frozen_string_literal: true module NgrokAPI module Models class Ref attr_reader :client, :result, :id, :uri def initialize(client:, result:) @client = client @result = result @id = @result['id'] @uri = @result['uri'] end def ==(other) @result == other.result end def to_s @result.to_s end end end end
Version data entries
6 entries across 6 versions & 1 rubygems