Sha256: 1d4e180f0c9ae8e0e68029cab47430fd88e9613637329f8e9c9090f47130e6c8
Contents?: true
Size: 784 Bytes
Versions: 19
Compression:
Stored size: 784 Bytes
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe module Identity class VerificationReportService < StripeService # List all verification reports. def list(params = {}, opts = {}) request( method: :get, path: "/v1/identity/verification_reports", params: params, opts: opts, base_address: :api ) end # Retrieves an existing VerificationReport def retrieve(report, params = {}, opts = {}) request( method: :get, path: format("/v1/identity/verification_reports/%<report>s", { report: CGI.escape(report) }), params: params, opts: opts, base_address: :api ) end end end end
Version data entries
19 entries across 19 versions & 1 rubygems