github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/css/v1/thesaurus/results.go (about)

     1  package thesaurus
     2  
     3  type ThesaurusStatusResp struct {
     4  	// Loading status
     5  	// Loaded indicates that a custom word dictionary is successfully loaded.
     6  	// Loading indicates that a custom word dictionary is being loaded.
     7  	// Failed indicates that a custom word dictionary fails to be loaded.
     8  	Status        string `json:"status"`
     9  	Bucket        string `json:"bucket"`        // OBS bucket where word dictionary files are stored.
    10  	MainObj       string `json:"mainObj"`       // Main word dictionary file object.
    11  	StopObj       string `json:"stopObj"`       // Stop word dictionary file object.
    12  	SynonymObj    string `json:"synonymObj"`    // Synonym word dictionary file object.
    13  	UpdateTime    int    `json:"updateTime"`    // Last word dictionary update time.
    14  	UpdateDetails string `json:"updateDetails"` // Update details.
    15  	ClusterId     string `json:"clusterId"`
    16  	OperateStatus string `json:"operateStatus"`
    17  	Id            string `json:"id"` // ID of a word dictionary.
    18  }