github.com/Axway/agent-sdk@v1.1.101/pkg/apic/apiserver/models/catalog/v1alpha1/model_subscription_spec.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 catalog
    11  
    12  // SubscriptionSpec  (catalog.v1alpha1.Subscription)
    13  type SubscriptionSpec struct {
    14  	// Data matching the subscription definition schema set on the subscribed plan. (catalog.v1alpha1.Subscription)
    15  	Data map[string]interface{} `json:"data,omitempty"`
    16  	// Schema snapshot from the subscription definition when the subscription got created. (catalog.v1alpha1.Subscription)
    17  	Schema map[string]interface{} `json:"schema,omitempty"`
    18  	// Reference to Product resource
    19  	Product string               `json:"product"`
    20  	Plan    SubscriptionSpecPlan `json:"plan"`
    21  }