Interface AlloraGetAllTopicsResponse

interface AlloraGetAllTopicsResponse {
    code?: string;
    message?: string;
    status: "error" | "success";
    topics?: AlloraTopic[];
}

Properties

code?: string
message?: string
status: "error" | "success"
topics?: AlloraTopic[]