Interface Resource

interface Resource {
    deprecationMessage: string;
    description: string;
    draftMessage: string;
    isDeprecated: boolean;
    isDraft: boolean;
    isUndocumented: boolean;
    properties: Property[];
    resourceType: string;
    undocumentedMessage: string;
}

Properties

deprecationMessage: string
description: string
draftMessage: string
isDeprecated: boolean
isDraft: boolean
isUndocumented: boolean
properties: Property[]
resourceType: string
undocumentedMessage: string