Commit e24e44d2 authored by Simon Pastor's avatar Simon Pastor
Browse files

all mec services tests

parent 8447fb13
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -25,4 +25,21 @@
package client

type InlineSubscription struct {
        Links *CaReconfSubscriptionLinks `json:"_links,omitempty"`
        // URI selected by the service consumer, to receive notifications on the subscribed RNIS information. This shall be included in the request and response.
        CallbackReference string `json:"callbackReference"`

        ExpiryDeadline *TimeStamp `json:"expiryDeadline,omitempty"`

        // Shall be set to \"S1BearerSubscription\".
        SubscriptionType string `json:"subscriptionType"`

        FilterCriteriaAssoc          *CaReconfSubscriptionFilterCriteriaAssoc          `json:"filterCriteriaAssoc,omitempty"`
        FilterCriteriaAssocHo        *CellChangeSubscriptionFilterCriteriaAssocHo      `json:"filterCriteriaAssocHo,omitEmpty"`
        FilterCriteriaAssocTri       *MeasRepUeSubscriptionFilterCriteriaAssocTri      `json:"filterCriteriaAssocTri,omitempty"`
        FilterCriteriaNrMrs          *NrMeasRepUeSubscriptionFilterCriteriaNrMrs       `json:"filterCriteriaNrMrs,omitempty"`
        FilterCriteriaQci            *RabModSubscriptionFilterCriteriaQci              `json:"filterCriteriaQci,omitEmpty"`
        S1BearerSubscriptionCriteria *S1BearerSubscriptionS1BearerSubscriptionCriteria `json:"S1BearerSubscriptionCriteria,omitempty"`
        // Description of the subscribed event. The event is included both in the request and in the response. \\nFor the eventType, the following values are currently defined: 0 = RESERVED. 1 = S1_BEARER_ESTABLISH. 2 = S1_BEARER_MODIFY. 3 = S1_BEARER_RELEASE.
        EventType []string `json:"eventType,omitempty"`
}
+11 −0
Original line number Diff line number Diff line
@@ -24,5 +24,16 @@

package client

//using as an allOf
type InlineSubscription struct {
        Links *AssocStaSubscriptionLinks `json:"_links,omitempty"`
        // URI selected by the service consumer to receive notifications on the subscribed WLAN Access Information Service. This shall be included both in the request and in response.
        ApId  *ApIdentity                `json:"apId,omitempty"`
        CallbackReference string     `json:"callbackReference"`
        ExpiryDeadline    *TimeStamp `json:"expiryDeadline,omitempty"`
        // Identifier(s) to uniquely specify the target client station(s) for the subscription
        StaId []StaIdentity `json:"staId,omitempty"`
        // Shall be set to \"StaDataRateSubscription\".
        SubscriptionType string `json:"subscriptionType"`

}
+1 −0
Original line number Diff line number Diff line
cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/InterDigitalInc/AdvantEDGE v1.5.0 h1:Gv1wxW7kV31reTqxX5TflvvYEEqnxaUlKWvgoandpfI=
github.com/InterDigitalInc/AdvantEDGE v1.6.0 h1:MTmJx1AQ4rc1qAJHLS54C5lU2i1NoqukyTcnaPiZ/hU=
github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-client v0.0.0-20200703133018-94138d8210a3 h1:hbmjC8Fpv+9m2NytJO4bkf25Xz+IRn28/9CseJxS9YQ=
github.com/InterDigitalInc/AdvantEDGE/go-packages/meep-rnis-client v0.0.0-20200703133018-94138d8210a3/go.mod h1:OboTWbYNj5baVwRuX8A7o8JSx4cxVqT9uDs9DWFP8sc=
github.com/KromDaniel/jonson v0.0.0-20180630143114-d2f9c3c389db/go.mod h1:RU+6d0CNIRSp6yo1mXLIIrnFa/3LHhvcDVLVJyovptM=
+833 −205

File changed.

Preview size limit exceeded, changes collapsed.

+1166 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading