Sha256: 143445800c6fb5fa87ace86f436058110e6f6717d5555ef3101589b2515eeef4
Contents?: true
Size: 540 Bytes
Versions: 21
Compression:
Stored size: 540 Bytes
Contents
module Asaas class Webhook < Model attribute :id, Types::Coercible::String.optional.default(nil) attribute :url, Types::Coercible::String.optional.default { Asaas::Configuration.webhook_url } attribute :email, Types::Coercible::String.optional.default { Asaas::Configuration.webhook_email } attribute :apiVersion, Types::Coercible::Integer.optional.default {Asaas::Configuration.api_version } attribute :enabled, Types::Bool.optional.default(nil) attribute :interrupted, Types::Bool.optional.default(nil) end end
Version data entries
21 entries across 21 versions & 1 rubygems