Interface CatalogListItemResponse<T>

interface CatalogListItemResponse<T> {
    errors?: string[];
    items: [T];
    message: string;
}

Type Parameters

Hierarchy

  • ServerResponse
    • CatalogListItemResponse

Properties

Properties

errors?: string[]
items: [T]
message: string