/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface Collection
 */
export interface Collection {
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof Collection
     */
    readonly id: string;
    /**
     * The collections's parent ID
     * @type {string}
     * @memberof Collection
     */
    parent_id?: string | null;
    /**
     * The collections's type
     * @type {string}
     * @memberof Collection
     */
    type?: string | null;
    /**
     * Name of the collection
     * @type {string}
     * @memberof Collection
     */
    name?: string | null;
    /**
     * Description of the collection
     * @type {string}
     * @memberof Collection
     */
    description?: string | null;
    /**
     * When custom mappings are configured on the resource, the result is included here.
     * @type {object}
     * @memberof Collection
     */
    readonly custom_mappings?: object | null;
    /**
     * The date and time when the object was last updated.
     * @type {Date}
     * @memberof Collection
     */
    readonly updated_at?: Date | null;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof Collection
     */
    readonly created_at?: Date | null;
}
export declare function CollectionFromJSON(json: any): Collection;
export declare function CollectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Collection;
export declare function CollectionToJSON(value?: Collection | null): any;
