com.tryfinch.api.models.OperationSupportMatrix.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finch-kotlin-core Show documentation
Show all versions of finch-kotlin-core Show documentation
The Finch HRIS API provides a unified way to connect to a multitide of HRIS
systems. The API requires an access token issued by Finch.
By default, Organization and Payroll requests use Finch's
[Data Syncs](/developer-resources/Data-Syncs). If a request is made before the
initial sync has completed, Finch will request data live from the provider. The
latency on live requests may range from seconds to minutes depending on the
provider and batch size. For automated integrations, Deductions requests (both
read and write) are always made live to the provider. Latencies may range from
seconds to minutes depending on the provider and batch size.
Employer products are specified by the product parameter, a space-separated list
of products that your application requests from an employer authenticating
through Finch Connect. Valid product names are—
- `company`: Read basic company data
- `directory`: Read company directory and organization structure
- `individual`: Read individual data, excluding income and employment data
- `employment`: Read individual employment and income data
- `payment`: Read payroll and contractor related payments by the company
- `pay_statement`: Read detailed pay statements for each individual
- `benefits`: Create and manage deductions and contributions and enrollment for
an employer
[![Open in Postman](https://run.pstmn.io/button.svg)](https://god.gw.postman.com/run-collection/21027137-08db0929-883d-4094-a9ce-dbf5a9bee4a4?action=collection%2Ffork&collection-url=entityId%3D21027137-08db0929-883d-4094-a9ce-dbf5a9bee4a4%26entityType%3Dcollection%26workspaceId%3D1edf19bc-e0a8-41e9-ac55-481a4b50790b)
The newest version!
// File generated from our OpenAPI spec by Stainless.
package com.tryfinch.api.models
import com.fasterxml.jackson.annotation.JsonAnyGetter
import com.fasterxml.jackson.annotation.JsonAnySetter
import com.fasterxml.jackson.annotation.JsonProperty
import com.fasterxml.jackson.databind.annotation.JsonDeserialize
import com.tryfinch.api.core.ExcludeMissing
import com.tryfinch.api.core.JsonField
import com.tryfinch.api.core.JsonMissing
import com.tryfinch.api.core.JsonValue
import com.tryfinch.api.core.NoAutoDetect
import com.tryfinch.api.core.toImmutable
import java.util.Objects
@JsonDeserialize(builder = OperationSupportMatrix.Builder::class)
@NoAutoDetect
class OperationSupportMatrix
private constructor(
private val create: JsonField,
private val update: JsonField,
private val delete: JsonField,
private val read: JsonField,
private val additionalProperties: Map,
) {
private var validated: Boolean = false
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
fun create(): OperationSupport? = create.getNullable("create")
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
fun update(): OperationSupport? = update.getNullable("update")
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
fun delete(): OperationSupport? = delete.getNullable("delete")
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
fun read(): OperationSupport? = read.getNullable("read")
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
@JsonProperty("create") @ExcludeMissing fun _create() = create
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
@JsonProperty("update") @ExcludeMissing fun _update() = update
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
@JsonProperty("delete") @ExcludeMissing fun _delete() = delete
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to the
* client and not to Finch
*/
@JsonProperty("read") @ExcludeMissing fun _read() = read
@JsonAnyGetter
@ExcludeMissing
fun _additionalProperties(): Map = additionalProperties
fun validate(): OperationSupportMatrix = apply {
if (!validated) {
create()
update()
delete()
read()
validated = true
}
}
fun toBuilder() = Builder().from(this)
companion object {
fun builder() = Builder()
}
class Builder {
private var create: JsonField = JsonMissing.of()
private var update: JsonField = JsonMissing.of()
private var delete: JsonField = JsonMissing.of()
private var read: JsonField = JsonMissing.of()
private var additionalProperties: MutableMap = mutableMapOf()
internal fun from(operationSupportMatrix: OperationSupportMatrix) = apply {
this.create = operationSupportMatrix.create
this.update = operationSupportMatrix.update
this.delete = operationSupportMatrix.delete
this.read = operationSupportMatrix.read
additionalProperties(operationSupportMatrix.additionalProperties)
}
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
fun create(create: OperationSupport) = create(JsonField.of(create))
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
@JsonProperty("create")
@ExcludeMissing
fun create(create: JsonField) = apply { this.create = create }
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
fun update(update: OperationSupport) = update(JsonField.of(update))
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
@JsonProperty("update")
@ExcludeMissing
fun update(update: JsonField) = apply { this.update = update }
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
fun delete(delete: OperationSupport) = delete(JsonField.of(delete))
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
@JsonProperty("delete")
@ExcludeMissing
fun delete(delete: JsonField) = apply { this.delete = delete }
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
fun read(read: OperationSupport) = read(JsonField.of(read))
/**
* - `supported`: This operation is supported by both the provider and Finch
* - `not_supported_by_finch`: This operation is not supported by Finch but supported by the
* provider
* - `not_supported_by_provider`: This operation is not supported by the provider, so Finch
* cannot support
* - `client_access_only`: This behavior is supported by the provider, but only available to
* the client and not to Finch
*/
@JsonProperty("read")
@ExcludeMissing
fun read(read: JsonField) = apply { this.read = read }
fun additionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.clear()
this.additionalProperties.putAll(additionalProperties)
}
@JsonAnySetter
fun putAdditionalProperty(key: String, value: JsonValue) = apply {
this.additionalProperties.put(key, value)
}
fun putAllAdditionalProperties(additionalProperties: Map) = apply {
this.additionalProperties.putAll(additionalProperties)
}
fun build(): OperationSupportMatrix =
OperationSupportMatrix(
create,
update,
delete,
read,
additionalProperties.toImmutable(),
)
}
override fun equals(other: Any?): Boolean {
if (this === other) {
return true
}
return /* spotless:off */ other is OperationSupportMatrix && create == other.create && update == other.update && delete == other.delete && read == other.read && additionalProperties == other.additionalProperties /* spotless:on */
}
/* spotless:off */
private val hashCode: Int by lazy { Objects.hash(create, update, delete, read, additionalProperties) }
/* spotless:on */
override fun hashCode(): Int = hashCode
override fun toString() =
"OperationSupportMatrix{create=$create, update=$update, delete=$delete, read=$read, additionalProperties=$additionalProperties}"
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy