feat: Add dedicated QoS flow

This commit is contained in:
Sukchan Lee 2020-12-31 21:07:08 -05:00
parent 65aea5ebf2
commit 235a041b8d
205 changed files with 6053 additions and 3831 deletions

View file

@ -21,12 +21,12 @@ extern "C" {
typedef struct OpenAPI_termination_notification_s OpenAPI_termination_notification_t;
typedef struct OpenAPI_termination_notification_s {
char *resource_uri;
struct OpenAPI_sm_policy_association_release_cause_s *cause;
OpenAPI_sm_policy_association_release_cause_e cause;
} OpenAPI_termination_notification_t;
OpenAPI_termination_notification_t *OpenAPI_termination_notification_create(
char *resource_uri,
OpenAPI_sm_policy_association_release_cause_t *cause
OpenAPI_sm_policy_association_release_cause_e cause
);
void OpenAPI_termination_notification_free(OpenAPI_termination_notification_t *termination_notification);
OpenAPI_termination_notification_t *OpenAPI_termination_notification_parseFromJSON(cJSON *termination_notificationJSON);