You are here

public function SmsMessageResult::getCreditsBalance in SMS Framework 8

Same name in this branch
  1. 8 src/Message/SmsMessageResult.php \Drupal\sms\Message\SmsMessageResult::getCreditsBalance()
  2. 8 src/Entity/SmsMessageResult.php \Drupal\sms\Entity\SmsMessageResult::getCreditsBalance()
Same name and namespace in other branches
  1. 2.x src/Message/SmsMessageResult.php \Drupal\sms\Message\SmsMessageResult::getCreditsBalance()
  2. 2.1.x src/Message/SmsMessageResult.php \Drupal\sms\Message\SmsMessageResult::getCreditsBalance()

Gets the credit balance after this transaction.

Return value

float|null The credit balance after the message is processed, or NULL if unknown.

Overrides SmsMessageResultInterface::getCreditsBalance

File

src/Message/SmsMessageResult.php, line 119

Class

SmsMessageResult
The result of an SMS messaging transaction.

Namespace

Drupal\sms\Message

Code

public function getCreditsBalance() {
  return $this->creditsBalance;
}