Skip to content

Commit

Permalink
Fix identifiers source ID range.
Browse files Browse the repository at this point in the history
  • Loading branch information
msqr committed Oct 24, 2024
1 parent 49bcbb4 commit cec2fb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public class SolarEdgeV1CloudDatumStreamService extends BaseRestOperationsCloudD
public static final List<Integer> SUPPORTED_DATA_VALUE_WILDCARD_LEVELS = List.of(2);

/** The data value identifier levels source ID range. */
public static final IntRange DATA_VALUE_IDENTIFIER_LEVELS_SOURCE_ID_RANGE = IntRange.rangeOf(1, 2);
public static final IntRange DATA_VALUE_IDENTIFIER_LEVELS_SOURCE_ID_RANGE = IntRange.rangeOf(0, 2);

/** The maximum length of time to query for data. */
public static final Duration MAX_QUERY_TIME_RANGE = Duration.ofDays(7);
Expand Down

0 comments on commit cec2fb9

Please sign in to comment.