Sha256: 6cbff2c051269fd897c1dc18590c03bf893e21876e96eb9918b19704d0c2b951
Contents?: true
Size: 1.2 KB
Versions: 6
Compression:
Stored size: 1.2 KB
Contents
# frozen_string_literal: true module NgrokAPI module Models class EndpointSAMLMutate attr_reader :client, :result, :enabled, :options_passthrough, :cookie_prefix, :inactivity_timeout, :maximum_duration, :idp_metadata_url, :idp_metadata, :force_authn, :allow_idp_initiated, :authorized_groups, :nameid_format def initialize(client:, result:) @client = client @result = result @enabled = @result['enabled'] @options_passthrough = @result['options_passthrough'] @cookie_prefix = @result['cookie_prefix'] @inactivity_timeout = @result['inactivity_timeout'] @maximum_duration = @result['maximum_duration'] @idp_metadata_url = @result['idp_metadata_url'] @idp_metadata = @result['idp_metadata'] @force_authn = @result['force_authn'] @allow_idp_initiated = @result['allow_idp_initiated'] @authorized_groups = @result['authorized_groups'] @nameid_format = @result['nameid_format'] 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