Interface OrganizationProductDataResponse

interface OrganizationProductDataResponse {
    products?: { id: string; product: Product; state: ProductState }[];
    state: OrganizationState;
}

Properties

Properties

products?: { id: string; product: Product; state: ProductState }[]