Sha256: e66af412aae31549967467396b682bf289c62291f452904f35c180fe80d6f1c7
Contents?: true
Size: 1.01 KB
Versions: 2
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true module ONEAccess module DataObject module Representer class Inducement < Representable::Decorator include Representable::JSON property :receive_date, as: :ReceiveDate, type: Time, parse_filter: ->(value, _) { value&.size&.positive? ? Time.parse(value) : nil } property :provider_org_id, as: :ProviderOrgId, type: Integer property :email_inducement_id, as: :EmailInducementId, type: Integer property :recipient_user_id, as: :RecipientUserId, type: Integer property :sender_user_id, as: :SenderUserId, type: Integer property :email_inducement_status_id, as: :EmailInducementStatusId, type: Integer property :body, as: :Body, type: String property :processed_date, as: :ProcessedDate, type: Time, parse_filter: ->(value, _) { value&.size&.positive? ? Time.parse(value) : nil } property :subject, as: :Subject, type: String end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
oneaccess-1.3.1 | lib/oneaccess/data_object/representer/inducement.rb |
oneaccess-1.3.0 | lib/oneaccess/data_object/representer/inducement.rb |