Sha256: bc492efe88ee1a9b662f79149f8fce02551dfc35aa30e04461cec88c2fd070da
Contents?: true
Size: 416 Bytes
Versions: 25
Compression:
Stored size: 416 Bytes
Contents
# frozen_string_literal: true module WorkOS module Types # This PasswordlessSessionStruct acts as an interface # for the Passwordless class class PasswordlessSessionStruct attr_accessor :id, :email, :expires_at, :link def initialize(id:, email:, expires_at:, link:) @id = id @email = email @expires_at = expires_at @link = link end end end end
Version data entries
25 entries across 25 versions & 1 rubygems