hetzner-ts
    Preparing search index...

    Interface ListCertificateActionsParams

    interface ListCertificateActionsParams {
        id?: number[];
        page?: number;
        per_page?: number;
        sort?: (
            | "id"
            | "command"
            | "status"
            | "started"
            | "finished"
            | "id:asc"
            | "id:desc"
            | "command:asc"
            | "command:desc"
            | "status:asc"
            | "status:desc"
            | "started:asc"
            | "started:desc"
            | "finished:asc"
            | "finished:desc"
        )[];
        status?: ("running" | "success" | "error")[];
    }
    Index

    Properties

    id?: number[]
    page?: number
    per_page?: number
    sort?: (
        | "id"
        | "command"
        | "status"
        | "started"
        | "finished"
        | "id:asc"
        | "id:desc"
        | "command:asc"
        | "command:desc"
        | "status:asc"
        | "status:desc"
        | "started:asc"
        | "started:desc"
        | "finished:asc"
        | "finished:desc"
    )[]
    status?: ("running" | "success" | "error")[]