react-native-moyasar-sdk
Version:
Official React Native Moyasar SDK - Integrate Credit Cards, Apple Pay, Samsung Pay, and STC Pay with simple interfaces for a seamless payment experience in your React Native app
21 lines (20 loc) • 357 B
JavaScript
;
export class ApiError {
constructor({
message,
type,
errors
}) {
this.message = message;
this.type = type;
this.errors = errors;
}
static fromJson(json) {
return new ApiError({
message: json.message,
type: json.type,
errors: json.errors
});
}
}
//# sourceMappingURL=api_error.js.map