SetService class base
tools.ozone.set.*
Constructors
- SetService.new(ServiceContext _ctx)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
addValues(
{required String name, required List< String> values, Map<String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< EmptyData> > - Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.
-
deleteSet(
{required String name, Map< String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< EmptyData> > - Delete an entire set. Attempting to delete a set that does not exist will result in an error.
-
deleteValues(
{required String name, required List< String> values, Map<String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< EmptyData> > - Delete values from a specific set. Attempting to delete values that are not in the set will not result in an error
-
getValues(
{required String name, int? limit, String? cursor, Map< String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< SetGetValuesOutput> > - Get a specific set and its values
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
querySets(
{int? limit, String? cursor, String? namePrefix, String? sortBy, String? sortDirection, Map< String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< SetQuerySetsOutput> > - Query available sets
-
toString(
) → String -
A string representation of this object.
inherited
-
upsertSet(
{required String name, String? description, Map< String, String> ? $headers, Map<String, String> ? $unknown}) → Future<XRPCResponse< SetView> > - Create or update set metadata
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited