Suncel home pageSuncel logoSuncel v1.1
  1. Introduction

API > Introduction

API Introduction

interface RequestError {
  error: string;
  message: string | string[];
  statusCode: number;
}

interface RequestResult<ResultType> {
  data: null | ResultType;
  error: null | RequestError;
}