/**
 * 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.
 */
import { AttachmentReferenceType } from './AttachmentReferenceType';
/**
 *
 * @export
 * @interface AttachmentReference
 */
export interface AttachmentReference {
    /**
     *
     * @type {AttachmentReferenceType}
     * @memberof AttachmentReference
     */
    type?: AttachmentReferenceType;
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof AttachmentReference
     */
    readonly id?: string;
}
export declare function AttachmentReferenceFromJSON(json: any): AttachmentReference;
export declare function AttachmentReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttachmentReference;
export declare function AttachmentReferenceToJSON(value?: AttachmentReference | null): any;
