Commit 13f065e6 authored by Kevin Di Lallo's avatar Kevin Di Lallo
Browse files

SubscriptionLinkList parameter naming fix

parent 0df55846
Loading
Loading
Loading
Loading
+5 −3
Original line number Original line Diff line number Diff line
@@ -518,15 +518,17 @@ components:
                type: object
                type: object
                required:
                required:
                  - href
                  - href
                  - rel
                  - subscriptionType
                properties:
                properties:
                  href:
                  href:
                    description: URI referring to a resource
                    description: URI referring to a resource
                    type: string
                    type: string
                    format: uri
                    format: uri
                  rel:
                  subscriptionType:
                    description: >-
                    description: >-
                      The values shall be set to AppTerminationNotificationSubscription.
                      Type of the subscription. The values are as defined in
                      the "subscriptionType" attribute for each different Mp1
                      event subscription data type.
                    type: string
                    type: string
    OperationActionType:
    OperationActionType:
      description: Operation that is being performed on the MEC application instance.
      description: Operation that is being performed on the MEC application instance.
+6 −4
Original line number Original line Diff line number Diff line
@@ -377,15 +377,17 @@ components:
                type: object
                type: object
                required:
                required:
                  - href
                  - href
                  - rel
                  - subscriptionType
                properties:
                properties:
                  href:
                  href:
                    description: URI referring to a resource
                    description: URI referring to a resource
                    type: string
                    type: string
                    format: uri
                    format: uri
                  rel:
                  subscriptionType:
                    description: >-
                    description: >-
                      The value shall be se to SerAvailabilityNotificationSubscription.
                      Type of the subscription. The values are as defined in
                      the "subscriptionType" attribute for each different Mp1
                      event subscription data type.
                    type: string
                    type: string
    ProblemDetails:
    ProblemDetails:
      type: object
      type: object
+1 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)


- API version: 2.1.1
- API version: 2.1.1
- Build date: 2021-10-12T16:48:32.416941-04:00[America/Toronto]
- Build date: 2021-10-20T14:18:53.980767-04:00[America/Toronto]




### Running the server
### Running the server
+2 −2
Original line number Original line Diff line number Diff line
@@ -27,6 +27,6 @@ package server
type SubscriptionLinkListLinksSubscriptions struct {
type SubscriptionLinkListLinksSubscriptions struct {
	// URI referring to a resource
	// URI referring to a resource
	Href string `json:"href"`
	Href string `json:"href"`
	// The values shall be set to AppTerminationNotificationSubscription.
	// Type of the subscription. The values are as defined in the \"subscriptionType\" attribute for each different Mp1 event subscription data type.
	Rel string `json:"rel"`
	SubscriptionType string `json:"subscriptionType"`
}
}
+1 −1
Original line number Original line Diff line number Diff line
@@ -13,7 +13,7 @@ To see how to make this your own, look here:
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)
[README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md)


- API version: 2.1.1
- API version: 2.1.1
- Build date: 2021-10-12T16:48:34.690417-04:00[America/Toronto]
- Build date: 2021-10-20T14:18:56.206936-04:00[America/Toronto]




### Running the server
### Running the server
Loading