@seamapi/http - v2.1.0
    Preparing search index...

    Type Alias AccessCodesReportDeviceConstraintsParameters

    type AccessCodesReportDeviceConstraintsParameters = {
        device_id: string;
        max_code_length?: number;
        min_code_length?: number;
        supported_code_lengths?: number[];
    }
    Index
    device_id: string

    ID of the device for which you want to report constraints.

    max_code_length?: number

    Maximum supported code length as an integer between 4 and 20, inclusive. You can specify either min_code_length/max_code_length or supported_code_lengths.

    min_code_length?: number

    Minimum supported code length as an integer between 4 and 20, inclusive. You can specify either min_code_length/max_code_length or supported_code_lengths.

    supported_code_lengths?: number[]

    Array of supported code lengths as integers between 4 and 20, inclusive. You can specify either supported_code_lengths or min_code_length/max_code_length.