UNPKG

@congminh1254/shopee-sdk

Version:
12 lines (11 loc) 318 B
/** * Base response interface that all API responses extend */ export interface BaseResponse { /** The identifier for an API request for error tracking */ request_id: string; /** Error code if any error occurred */ error: string; /** Error message if any error occurred */ message: string; }