UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

18 lines 647 B
import { Ipv4 } from '../../Ipv4'; import { BackendCustomerServerStatusEnum } from '../BackendCustomerServerStatusEnum'; /** UDP Farm's Server */ export interface BackendUDPServer { /** Address of your server */ address: Ipv4; /** farm id */ backendId: number; /** Human readable name for your server, this field is for you */ displayName?: string; /** Port attached to your server. Inherited from farm if null */ port?: number; /** Id of your server */ serverId: number; /** Status attached to your server */ status: BackendCustomerServerStatusEnum; } //# sourceMappingURL=BackendUDPServer.d.ts.map