Interface AllocationInternal

An Allocation object

interface Allocation {
    attributes: {
        id: number;
        ip: string;
        port: number;
        primary: boolean;
    };
    object: "allocation";
}

Properties

Properties

attributes: {
    id: number;
    ip: string;
    port: number;
    primary: boolean;
}

Type declaration

  • id: number
  • ip: string
  • port: number
  • primary: boolean

    Whether or not this Allocation is the primary one for the Server

object: "allocation"

Generated using TypeDoc