Webigail
    Preparing search index...

    Interface IZRestfulGet<T>

    A service that can be used to get resources.

    interface IZRestfulGet<T> {
        get(identification: string | number): Promise<T>;
    }

    Type Parameters

    • T

      The type of resource being retrieved.

    Hierarchy (View Summary)

    Index

    Methods

    Methods

    • Retrieves a single item by it's identification.

      This uses a GET verb.

      Parameters

      • identification: string | number

        The identification of the resource to retrieve.

      Returns Promise<T>

      The json representation of the entity.