github.com/Axway/agent-sdk@v1.1.101/pkg/apic/unifiedcatalog/models/model_audit_metadata.go (about)

     1  /*
     2   * Amplify Unified Catalog APIs
     3   *
     4   * APIs for Amplify Unified Catalog
     5   *
     6   * API version: 1.43.0
     7   * Contact: support@axway.com
     8   * Generated by: OpenAPI Generator (https://openapi-generator.tech)
     9   */
    10  
    11  package unifiedcatalog
    12  
    13  import (
    14  	// GENERATE: The following code has been modified after code generation
    15  	// "time"
    16  	time "github.com/Axway/agent-sdk/pkg/apic/apiserver/models/api/v1"
    17  )
    18  
    19  // AuditMetadata Audit information
    20  type AuditMetadata struct {
    21  	// The creation time
    22  	CreateTimestamp time.Time `json:"createTimestamp,omitempty"`
    23  	// Id of the user that created the entity
    24  	CreateUserId string `json:"createUserId,omitempty"`
    25  	// The last modification time
    26  	ModifyTimestamp time.Time `json:"modifyTimestamp,omitempty"`
    27  	// Id of the user that last modified the entity
    28  	ModifyUserId string `json:"modifyUserId,omitempty"`
    29  }