UNPKG

wallee

Version:
28 lines (27 loc) 1.08 kB
/** * * @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<PaymentConnectorFeature, 'displayName' | 'id'> | null, ignoreDiscriminator?: boolean): any;