/**
 * 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 SubsidiaryReference
 */
export interface SubsidiaryReference {
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof SubsidiaryReference
     */
    readonly id?: string;
    /**
     * The name of the company.
     * @type {string}
     * @memberof SubsidiaryReference
     */
    name?: string | null;
}
export declare function SubsidiaryReferenceFromJSON(json: any): SubsidiaryReference;
export declare function SubsidiaryReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubsidiaryReference;
export declare function SubsidiaryReferenceToJSON(value?: SubsidiaryReference | null): any;
