/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { OverTheCounterChannelPropertiesUpdate } from './OverTheCounterChannelPropertiesUpdate'; /** * * @export * @interface OverTheCounterUpdateParameters */ export interface OverTheCounterUpdateParameters { /** * * @type {number} * @memberof OverTheCounterUpdateParameters */ amount?: number | null; /** * * @type {OverTheCounterChannelPropertiesUpdate} * @memberof OverTheCounterUpdateParameters */ channelProperties?: OverTheCounterChannelPropertiesUpdate; } /** * Check if a given object implements the OverTheCounterUpdateParameters interface. */ export declare function instanceOfOverTheCounterUpdateParameters(value: object): boolean; export declare function OverTheCounterUpdateParametersFromJSON(json: any): OverTheCounterUpdateParameters; export declare function OverTheCounterUpdateParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): OverTheCounterUpdateParameters; export declare function OverTheCounterUpdateParametersToJSON(value?: OverTheCounterUpdateParameters | null): any;