Richard Marmorstein ddf79610d9 Fix formatting
2022-10-14 10:26:51 -07:00

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