File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed
client/src/commonMain/kotlin/com/algolia/client/model/ingestion Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import kotlinx.serialization.json.*
1010 * @param sourceID Universally uniqud identifier (UUID) of a source.
1111 * @param type
1212 * @param name
13- * @param input
1413 * @param createdAt Date of creation in RFC 3339 format.
14+ * @param input
1515 * @param authenticationID Universally unique identifier (UUID) of an authentication resource.
1616 * @param updatedAt Date of last update in RFC 3339 format.
1717 */
@@ -25,11 +25,11 @@ public data class Source(
2525
2626 @SerialName(value = " name" ) val name : String ,
2727
28- @SerialName(value = " input" ) val input : SourceInput ,
29-
3028 /* * Date of creation in RFC 3339 format. */
3129 @SerialName(value = " createdAt" ) val createdAt : String ,
3230
31+ @SerialName(value = " input" ) val input : SourceInput ? = null ,
32+
3333 /* * Universally unique identifier (UUID) of an authentication resource. */
3434 @SerialName(value = " authenticationID" ) val authenticationID : String? = null ,
3535
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public data class SourceCreate(
2020 /* * Descriptive name of the source. */
2121 @SerialName(value = " name" ) val name : String ,
2222
23- @SerialName(value = " input" ) val input : SourceInput ,
23+ @SerialName(value = " input" ) val input : SourceInput ? = null ,
2424
2525 /* * Universally unique identifier (UUID) of an authentication resource. */
2626 @SerialName(value = " authenticationID" ) val authenticationID : String? = null ,
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ public enum class SourceType(public val value: kotlin.String) {
3131 Shopify (" shopify" ),
3232
3333 @SerialName(value = " sfcc" )
34- Sfcc (" sfcc" );
34+ Sfcc (" sfcc" ),
35+
36+ @SerialName(value = " push" )
37+ Push (" push" );
3538
3639 override fun toString (): kotlin.String = value
3740}
You can’t perform that action at this time.
0 commit comments