/// <summary>
 /// Initializes a new instance of the <see cref="NotificationEmbedded" /> class.
 /// </summary>
 /// <param name="geofence">geofence.</param>
 /// <param name="topics">topics.</param>
 /// <param name="externalUser">externalUser.</param>
 public NotificationEmbedded(Geofence geofence = default(Geofence), List <Topic> topics = default(List <Topic>), ExternalUser externalUser = default(ExternalUser))
 {
     this.Geofence     = geofence;
     this.Topics       = topics;
     this.ExternalUser = externalUser;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TopicSubscriptionBulkEmbedded" /> class.
 /// </summary>
 /// <param name="topic">topic.</param>
 /// <param name="externalUser">externalUser.</param>
 public TopicSubscriptionBulkEmbedded(Topic topic = default(Topic), ExternalUser externalUser = default(ExternalUser))
 {
     this.Topic        = topic;
     this.ExternalUser = externalUser;
 }