interface InfoObject {
    _postman_id?: string;
    description?: Description;
    name: string;
    schema: string;
    version?: string | CollectionVersion;
    [key: string]: unknown;
}

Indexable

[key: string]: unknown

Properties

_postman_id?: string
description?: Description
name: string
schema: string
version?: string | CollectionVersion