12
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

KotlinからFirestoreにデータ登録するとBooleanのプロパティ名のisが除去される

Last updated at Posted at 2018-05-23

ちょっとハマりました。
kotlinでfirestoreにデータ登録するときは、kotlinのオブジェクトをそのまま登録できて便利です。

しかし次のようにisから始まるプロパティ名でBooleanのプロパティが定義されていると、Firestoreに登録されるデータのフィールド名は valid となってしまいます。

class Hoge{
  var isValid:Boolean? = null
}

どうやらFirestoreのSDK内で変換される際に、このようになってしまう模様。

@GengroHirano さんにアドバイスいただき、PropertyNameアノテーションを使う方法で解決できることがわかっています。

import com.google.firebase.firestore.PropertyName
class Hoge{
  @set:PropertyName("isValid")
  @get:PropertyName("isValid")
  var isValid:Boolean? = null
}

ちなみに先頭がgetのものも怪しそう、試してないですが。。

FirestoreのSDKのソースコードって公開されてないのかな?

12
4
6

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?