smallest currency unit. * @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 ReserveRelease. * @property string $currency Three-letter ISO currency code, in lowercase. Must be a supported currency. * @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 ReserveRelease, indicating why the funds were released. * @property int $released_at The release timestamp of the funds. * @property null|Hold|string $reserve_hold The ReserveHold this ReserveRelease is associated with. * @property null|Plan|string $reserve_plan The ReservePlan ID this ReserveRelease is associated with. This field is only populated if a ReserveRelease is created by a ReservePlan disable operation, or from a scheduled ReservedHold expiry. * @property null|(object{dispute?: string|\Stripe\Dispute, refund?: string|\Stripe\Refund, type: string}&\Stripe\StripeObject) $source_transaction */ class Release extends \Stripe\ApiResource { const OBJECT_NAME = 'reserve.release'; const CREATED_BY_APPLICATION = 'application'; const CREATED_BY_STRIPE = 'stripe'; const REASON_BULK_HOLD_EXPIRY = 'bulk_hold_expiry'; const REASON_HOLD_RELEASED_EARLY = 'hold_released_early'; const REASON_HOLD_REVERSED = 'hold_reversed'; const REASON_PLAN_DISABLED = 'plan_disabled'; }