interface PostmanCollection {
    auth?: null | Auth;
    event?: EventObject[];
    info: InfoObject;
    item: (Item | Folder)[];
    protocolProfileBehavior?: unknown;
    variable?: Variable[];
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

auth?: null | Auth
event?: EventObject[]
item: (Item | Folder)[]
protocolProfileBehavior?: unknown
variable?: Variable[]