github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/management/v1alpha1/model_identity_provider_status_pending.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  // IdentityProviderStatusPending struct for IdentityProviderStatusPending
    20  type IdentityProviderStatusPending struct {
    21  	Type string `json:"type"`
    22  	// Time when the change occurred.
    23  	Timestamp time.Time `json:"timestamp"`
    24  	// message of the pending status
    25  	Detail string                            `json:"detail"`
    26  	Meta   map[string]map[string]interface{} `json:"meta,omitempty"`
    27  }