/** * * @export * @interface PaymentConnectorFeature */ export interface PaymentConnectorFeature { /** * The localized name of the feature. * @type {string} * @memberof PaymentConnectorFeature */ readonly displayName?: string; /** * A unique identifier for the object. * @type {number} * @memberof PaymentConnectorFeature */ readonly id?: number; } /** * Check if a given object implements the PaymentConnectorFeature interface. */ export declare function instanceOfPaymentConnectorFeature(value: object): value is PaymentConnectorFeature; export declare function PaymentConnectorFeatureFromJSON(json: any): PaymentConnectorFeature; export declare function PaymentConnectorFeatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentConnectorFeature; export declare function PaymentConnectorFeatureToJSON(json: any): PaymentConnectorFeature; export declare function PaymentConnectorFeatureToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;