/* * MEEP Model * * Copyright (c) 2019 InterDigital Communications, Inc. All rights reserved. The information provided herein is the proprietary and confidential information of InterDigital Communications, Inc. * * API version: 1.0.0 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) */ package model // External service exposed internally via specific port type EgressService struct { // Service name Name string `json:"name,omitempty"` // Multi-Edge service name, if any MeSvcName string `json:"meSvcName,omitempty"` // External node IP address Ip string `json:"ip,omitempty"` // Service port number Port int32 `json:"port,omitempty"` // Service protocol (TCP or UDP) Protocol string `json:"protocol,omitempty"` }