/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * 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 DeploymentDTO */ export interface DeploymentDTO { /** * The tool used to create, maintain and deploy the node. Examples: symbol-bootstrap, manual. * @type {string} * @memberof DeploymentDTO */ deploymentTool: string; /** * The version of the tool used to create, maintain and deploy the node. * @type {string} * @memberof DeploymentDTO */ deploymentToolVersion: string; /** * When was the node last upgraded. * @type {string} * @memberof DeploymentDTO */ lastUpdatedDate: string; } /** * Check if a given object implements the DeploymentDTO interface. */ export declare function instanceOfDeploymentDTO(value: Record): value is DeploymentDTO; export declare function DeploymentDTOFromJSON(json: any): DeploymentDTO; export declare function DeploymentDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeploymentDTO; export declare function DeploymentDTOToJSON(json: any): DeploymentDTO; export declare function DeploymentDTOToJSONTyped(value?: DeploymentDTO | null, ignoreDiscriminator?: boolean): any;