Interface OKXResponse<T>

interface OKXResponse<T> {
    code: string;
    data: T[];
    msg: string;
}

Type Parameters

  • T

Properties

Properties

code: string
data: T[]
msg: string