mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-03 00:01:21 -04:00
16 lines
428 B
Ruby
16 lines
428 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
class LoginLink < APIResource
|
|
OBJECT_NAME = "login_link"
|
|
|
|
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
|