smallest currency unit. * @property null|int $amount_releasable Amount in cents that can be released from this ReserveHold * @property int $created Time at which the object was created. Measured in seconds since the Unix epoch. * @property string $created_by Indicates which party created this ReserveHold. * @property string $currency Three-letter ISO currency code, in lowercase. Must be a supported currency. * @property null|bool $is_releasable Whether there are any funds available to release on this ReserveHold. Note that if the ReserveHold is in the process of being released, this could be false, even though the funds haven't been fully released yet. * @property bool $livemode Has the value true if the object exists in live mode or the value false if the object exists in test mode. * @property null|\Stripe\StripeObject $metadata Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. * @property string $reason The reason for the ReserveHold. * @property (object{release_after: null|int, scheduled_release: null|int}&\Stripe\StripeObject) $release_schedule * @property null|Plan|string $reserve_plan The ReservePlan which produced this ReserveHold (i.e., resplan_123) * @property null|string|\Stripe\Charge $source_charge The Charge which funded this ReserveHold (e.g., ch_123) * @property string $source_type Which source balance type this ReserveHold reserves funds from. One of bank_account, card, or fpx. */ class Hold extends \Stripe\ApiResource { const OBJECT_NAME = 'reserve.hold'; const CREATED_BY_APPLICATION = 'application'; const CREATED_BY_STRIPE = 'stripe'; const REASON_CHARGE = 'charge'; const REASON_STANDALONE = 'standalone'; const SOURCE_TYPE_BANK_ACCOUNT = 'bank_account'; const SOURCE_TYPE_CARD = 'card'; const SOURCE_TYPE_FPX = 'fpx'; }