Variable reportsSchemaConst

reportsSchema: ZodObject<{
    ipAddress: ZodEffects<ZodString, string, string>;
    maxAgeInDays: ZodOptional<ZodNumber>;
    page: ZodOptional<ZodNumber>;
    perPage: ZodOptional<ZodNumber>;
}, "strip", ZodTypeAny, {
    ipAddress: string;
    maxAgeInDays?: number;
    page?: number;
    perPage?: number;
}, {
    ipAddress: string;
    maxAgeInDays?: number;
    page?: number;
    perPage?: number;
}> = ...

Type declaration

  • ipAddress: ZodEffects<ZodString, string, string>

    Single IPv4/IPv6 address.

  • maxAgeInDays: ZodOptional<ZodNumber>

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API.

  • page: ZodOptional<ZodNumber>

    Pagination number based on the perPage parameter. Minimum accepted value is 1, defaults to 1 by the API.

  • perPage: ZodOptional<ZodNumber>

    Amount of reports per page. Accepted values between 1 and 100, defaults to 25 by the API.

Type declaration

  • ipAddress: string

    Single IPv4/IPv6 address.

  • Optional maxAgeInDays?: number

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API.

  • Optional page?: number

    Pagination number based on the perPage parameter. Minimum accepted value is 1, defaults to 1 by the API.

  • Optional perPage?: number

    Amount of reports per page. Accepted values between 1 and 100, defaults to 25 by the API.

Type declaration

  • ipAddress: string

    Single IPv4/IPv6 address.

  • Optional maxAgeInDays?: number

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API.

  • Optional page?: number

    Pagination number based on the perPage parameter. Minimum accepted value is 1, defaults to 1 by the API.

  • Optional perPage?: number

    Amount of reports per page. Accepted values between 1 and 100, defaults to 25 by the API.

Generated using TypeDoc