github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/administration/backup_operation_status.go (about)

     1  /* Copyright © 2017 VMware, Inc. All Rights Reserved.
     2     SPDX-License-Identifier: BSD-2-Clause
     3  
     4     Generated by: https://github.com/swagger-api/swagger-codegen.git */
     5  
     6  package administration
     7  
     8  type BackupOperationStatus struct {
     9  
    10  	// Unique identifier of a backup
    11  	BackupId string `json:"backup_id"`
    12  
    13  	// Time when operation was ended
    14  	EndTime int64 `json:"end_time,omitempty"`
    15  
    16  	// Error code
    17  	ErrorCode string `json:"error_code,omitempty"`
    18  
    19  	// Error code details
    20  	ErrorMessage string `json:"error_message,omitempty"`
    21  
    22  	// Time when operation was started
    23  	StartTime int64 `json:"start_time,omitempty"`
    24  
    25  	// True if backup is successfully completed, else false
    26  	Success bool `json:"success"`
    27  }