All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.stytch.java.consumer.models.attribute.Attribute.kt Maven / Gradle / Ivy

There is a newer version: 6.7.0
Show newest version
package com.stytch.java.consumer.models.attribute

// !!!
// WARNING: This file is autogenerated
// Only modify code within MANUAL() sections
// or your changes may be overwritten later!
// !!!

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass

@JsonClass(generateAdapter = true)
public data class Attributes
    @JvmOverloads
    constructor(
        /**
         * The IP address of the user.
         */
        @Json(name = "ip_address")
        val ipAddress: String? = null,
        /**
         * The user agent of the User.
         */
        @Json(name = "user_agent")
        val userAgent: String? = null,
    )




© 2015 - 2024 Weber Informatics LLC | Privacy Policy