Skip to content
egress_service.go 775 B
Newer Older
Michel Roy's avatar
Michel Roy committed
 * 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.
Michel Roy's avatar
Michel Roy committed
 *
 * API version: 1.0.0
 * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
// 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"`
}