public static ConnectionCreatedMethod WithArgs(string otherId, string name, string tag)
        {
            var payload = new ConnectionCreatedMethodPayload
            {
                OtherId = otherId,
                Name    = name,
                Tag     = tag
            };

            return(new ConnectionCreatedMethod(payload));
        }
 private ConnectionCreatedMethod(ConnectionCreatedMethodPayload data)
     : base(data)
 {
 }