Sha256: b2ea7a390dc1f7dd1e62e5a254db073bd5de4011c01cb311049cae4d6df83d88
Contents?: true
Size: 1006 Bytes
Versions: 4
Compression:
Stored size: 1006 Bytes
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 && 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 && value.size.positive? ? Time.parse(value) : nil } property :subject, as: :Subject, type: String end end end end
Version data entries
4 entries across 4 versions & 1 rubygems