Interface PythFetchPriceResponse

interface PythFetchPriceResponse {
    code?: string;
    message?: string;
    price?: string;
    priceFeedID?: string;
    status: "error" | "success";
    tokenSymbol: string;
}

Properties

code?: string
message?: string
price?: string
priceFeedID?: string
status: "error" | "success"
tokenSymbol: string