GetDiscountCredit
Get an account discount
{{:: 'controllers.documentation.chooseFramework' | translate }}
npm install --save
niksms.library.javascript
import {
ApiV1,
LibOperationResultStatus
} from 'niksms';
export default class NikSmsApiV1Client{
private service: ApiV1
constructor(username: string, password: string, culture: string = "fa"){
this.service = new ApiV1(username, password, culture);
}
public async GetDiscountCredit(): Promise<number> {
const result = await this.service.GetDiscountCredit();
switch (result.Status)
{
case LibOperationResultStatus.Success:
return result.Data;
case LibOperationResultStatus.InvalidModel:
throw new Error("Some required inputs are misssing...");
case LibOperationResultStatus.UnAuthorized:
throw new Error("Some thing is wrong with your account (call support!)");
case LibOperationResultStatus.Failed:
throw new Error("Ooops its our fault!");
default:
throw new Error("You sould not be here... :D");
}
}
}