Type Alias WebIntegrations

An array of web integration objects.

type WebIntegrations = {
    data?: WebIntegration[];
    links?: {
        next?: { href: string };
        prev?: { href: string };
        self: { href: string };
    };
}
Index

Properties

Properties

Properties of web integrations in a given tenant.

links?: {
    next?: { href: string };
    prev?: { href: string };
    self: { href: string };
}

Pagination links

Type declaration

  • Optionalnext?: { href: string }

    Link information for next page.

    • href: string

      URL to the next page of records.

  • Optionalprev?: { href: string }

    Link information for previous page.

    • href: string

      URL to the previous page of records.

  • self: { href: string }

    Link information for current page.

    • href: string

      URL to the current page of records.