public function Mollie_API_Object_Payment::isOpen in Commerce Mollie 7
Is this payment still open / ongoing?
Return value
bool
File
- Mollie/
API/ Object/ Payment.php, line 163
Class
- Mollie_API_Object_Payment
- Copyright (c) 2013, Mollie B.V. All rights reserved.
Code
public function isOpen() {
return $this->status == self::STATUS_OPEN;
}