Sha256: 8e7325a1e0cbaf901489f620865b989c72f3e525155b8636c780f1ca6aaa31b0
Contents?: true
Size: 787 Bytes
Versions: 36
Compression:
Stored size: 787 Bytes
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe # Login Links are single-use URLs for a connected account to access the Express Dashboard. The connected account's [account.controller.stripe_dashboard.type](https://stripe.com/api/accounts/object#account_object-controller-stripe_dashboard-type) must be `express` to have access to the Express Dashboard. class LoginLink < APIResource OBJECT_NAME = "login_link" def self.object_name "login_link" end def self.retrieve(_id, _opts = nil) raise NotImplementedError, "Login links do not have IDs and cannot be retrieved. They can " \ "only be created using `Account.create_login_link('account_id', " \ "create_params)`" end end end
Version data entries
36 entries across 36 versions & 1 rubygems