Sha256: 2de4b62b71907ee889d9e0284f71fbd6dcb85289401385f7c8a821f6b436b93a
Contents?: true
Size: 1.7 KB
Versions: 12
Compression:
Stored size: 1.7 KB
Contents
# frozen_string_literal: true module Seam module Clients class ConnectWebviews def initialize(client:, defaults:) @client = client @defaults = defaults end def create(accepted_providers: nil, automatically_manage_new_devices: nil, custom_metadata: nil, custom_redirect_failure_url: nil, custom_redirect_url: nil, device_selection_mode: nil, provider_category: nil, wait_for_device_creation: nil) res = @client.post("/connect_webviews/create", {accepted_providers: accepted_providers, automatically_manage_new_devices: automatically_manage_new_devices, custom_metadata: custom_metadata, custom_redirect_failure_url: custom_redirect_failure_url, custom_redirect_url: custom_redirect_url, device_selection_mode: device_selection_mode, provider_category: provider_category, wait_for_device_creation: wait_for_device_creation}.compact) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"]) end def delete(connect_webview_id:) @client.post("/connect_webviews/delete", {connect_webview_id: connect_webview_id}.compact) nil end def get(connect_webview_id:) res = @client.post("/connect_webviews/get", {connect_webview_id: connect_webview_id}.compact) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webview"]) end def list(custom_metadata_has: nil, limit: nil, user_identifier_key: nil) res = @client.post("/connect_webviews/list", {custom_metadata_has: custom_metadata_has, limit: limit, user_identifier_key: user_identifier_key}.compact) Seam::Resources::ConnectWebview.load_from_response(res.body["connect_webviews"]) end end end end
Version data entries
12 entries across 12 versions & 1 rubygems