DEFAULT_LIMIT_FETCH_CONTAINER

const val DEFAULT_LIMIT_FETCH_CONTAINER: Int = 300

The default limit for fetching containers.

This constant defines the default number of containers to retrieve when no specific limit is provided during fetch operations. It is used to control the maximum number of container entries returned in operations such as fetching all containers.

The value of this constant is set to 300, meaning that by default, up to 300 containers will be fetched unless a different limit is specified in the method parameters.

This default limit helps to manage and optimize the amount of data retrieved in a single operation, balancing performance with data completeness.