/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface NTPServerPartialUpdate */ export interface NTPServerPartialUpdate { /** * * @type {string} * @memberof NTPServerPartialUpdate */ address?: string; /** * * @type {string} * @memberof NTPServerPartialUpdate */ options?: string; } export declare function NTPServerPartialUpdateFromJSON(json: any): NTPServerPartialUpdate; export declare function NTPServerPartialUpdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): NTPServerPartialUpdate; export declare function NTPServerPartialUpdateToJSON(value?: NTPServerPartialUpdate | null): any;