Slide 10
Slide 10 text
© 2022 LayerX Inc.
10
アプリからの呼び出し
ctx := context.Background()
resp, err := client.Create(
ctx,
api.PropEmail("yourname@example.com"),
api.PropCustom("custom_flag", true),
api.PropCustom("custom_key", "value"),
)
if err != nil {
log.Fatal(err)
}
Functional Option