/** * * @export * @interface DeliveryIndicationDecisionReason */ export interface DeliveryIndicationDecisionReason { /** * The localized name of the object. * @type {{ [key: string]: string; }} * @memberof DeliveryIndicationDecisionReason */ readonly name?: { [key: string]: string; }; /** * The localized description of the object. * @type {{ [key: string]: string; }} * @memberof DeliveryIndicationDecisionReason */ readonly description?: { [key: string]: string; }; /** * A unique identifier for the object. * @type {number} * @memberof DeliveryIndicationDecisionReason */ readonly id?: number; } /** * Check if a given object implements the DeliveryIndicationDecisionReason interface. */ export declare function instanceOfDeliveryIndicationDecisionReason(value: object): value is DeliveryIndicationDecisionReason; export declare function DeliveryIndicationDecisionReasonFromJSON(json: any): DeliveryIndicationDecisionReason; export declare function DeliveryIndicationDecisionReasonFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeliveryIndicationDecisionReason; export declare function DeliveryIndicationDecisionReasonToJSON(json: any): DeliveryIndicationDecisionReason; export declare function DeliveryIndicationDecisionReasonToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;