interface DisplayFieldsResponse {
    data?: null | {
        [key: string]: string;
    };
    error?: null | ObjectResponseError;
}

Properties

Properties

data?: null | {
    [key: string]: string;
}
error?: null | ObjectResponseError