Type alias QuickBaseResponsePlatformAnalyticReads

QuickBaseResponsePlatformAnalyticReads: {
    date: string;
    reads: {
        integrations: {
            api: number;
            eoti: number;
            pipelines: number;
        };
        user: number;
    };
}

Type declaration

  • date: string

    The date of the requested summary.

  • reads: {
        integrations: {
            api: number;
            eoti: number;
            pipelines: number;
        };
        user: number;
    }

    Total reads for the specified date.

    • integrations: {
          api: number;
          eoti: number;
          pipelines: number;
      }

      Total integration reads for the realm on the specified date.

      • api: number

        Total API reads for the realm on the specified date.

      • eoti: number

        Total reads by anonymous users for the realm on the specified date.

      • pipelines: number

        Total pipeline reads for the realm on the specified date.

    • user: number

      Total user reads for the realm on the specified date.

Generated using TypeDoc