interface PostmanHelperInterface {
    allowsEmptyValue(): boolean;
    getAlternatives(): PostmanHelperInterface[];
    getChildren(): Record<string, PostmanHelperInterface>;
    getContentType?(): undefined | string;
    getDefaultValue(): unknown;
    getDescription(): string;
    getDescriptionType?(): undefined | string;
    getEnum(): unknown[];
    getExampleValue(): unknown;
    getFirstItem(): undefined | PostmanHelperInterface;
    getMax(): undefined | number;
    getMin(): undefined | number;
    getType(): string;
    getUnit(): string;
    getXml?(): undefined | XMLObject;
    hasContentType?(): boolean;
    hasDefaultValue(): boolean;
    hasDescriptionType?(): boolean;
    hasExampleValue(): boolean;
    hasMax(): boolean;
    hasMin(): boolean;
    hasXml?(): boolean;
    isDeprecated(): boolean;
    isRequired(): boolean;
    isUnique(): boolean;
    isValid(): boolean;
}

Hierarchy (view full)

Implemented by

Methods