github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_credential_status_reasons.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 // CredentialStatusReasons (management.v1alpha1.Credential) 20 type CredentialStatusReasons struct { 21 Type string `json:"type"` 22 // Details of the error. 23 Detail string `json:"detail"` 24 // Time when the update occurred. 25 Timestamp time.Time `json:"timestamp"` 26 // (management.v1alpha1.Credential) 27 Meta map[string]map[string]interface{} `json:"meta,omitempty"` 28 }