superdesk/superdesk-client-core

View on GitHub
scripts/superdesk-interfaces/InternalDestination.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {IBaseRestApiResponse} from 'superdesk-api';

export interface IInternalDestination extends IBaseRestApiResponse {
    name: string;
    is_active: boolean;
    filter?: string;
    desk: string;
    stage?: string;
    macro?: string;
}