FirebaseDataConnect.QueryRefOptionsBuilder

interface FirebaseDataConnect.QueryRefOptionsBuilder<Data : Any?, Variables : Any?>


Options that can be specified when creating a QueryRef via the query method.

Summary

Public properties

FirebaseDataConnect.CallerSdkType?

The calling SDK information to apply to all operations executed by the corresponding QueryRef object.

SerializersModule?

A SerializersModule to use when decoding the query's response data.

SerializersModule?

A SerializersModule to use when encoding the query's variables.

Public properties

callerSdkType

var callerSdkTypeFirebaseDataConnect.CallerSdkType?

The calling SDK information to apply to all operations executed by the corresponding QueryRef object. May be null (the default) in which case CallerSdkType.Base will be used.

dataSerializersModule

var dataSerializersModuleSerializersModule?

A SerializersModule to use when decoding the query's response data. May be null (the default) to not use a SerializersModule when decoding the response data.

variablesSerializersModule

var variablesSerializersModuleSerializersModule?

A SerializersModule to use when encoding the query's variables. May be null (the default) to not use a SerializersModule when encoding the variables.