github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_dataplane_secret_status_success.go (about) 1 /* 2 * API Server specification. 3 * 4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) 5 * 6 * API version: SNAPSHOT 7 * Generated by: OpenAPI Generator (https://openapi-generator.tech) 8 */ 9 10 package management 11 12 import ( 13 // GENERATE: The following code has been modified after code generation 14 // 15 // "time" 16 time "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/api/v1" 17 ) 18 19 // DataplaneSecretStatusSuccess struct for DataplaneSecretStatusSuccess 20 type DataplaneSecretStatusSuccess struct { 21 Type string `json:"type"` 22 // Time when the change occured. 23 Timestamp time.Time `json:"timestamp"` 24 // message of the result 25 Detail string `json:"detail"` 26 Meta map[string]interface{} `json:"meta,omitempty"` 27 }