import { CreationEntityState } from "./CreationEntityState";
declare class AbstractSubscriptionAffiliateUpdate {
    /**
    * The language that is linked to the object.
    */
    'language'?: string;
    /**
    * Allow to store additional information about the object.
    */
    'metaData'?: {
        [key: string]: string;
    };
    /**
    * The name used to identify the affiliate.
    */
    'name'?: string;
    /**
    * The object's current state.
    */
    'state'?: CreationEntityState;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { AbstractSubscriptionAffiliateUpdate };
