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

ru.testit.kotlin.client.models.SearchWebhooksQueryModel.kt Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
/**
 *
 * Please note:
 * This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * Do not edit this file manually.
 *
 */

@file:Suppress(
    "ArrayInDataClass",
    "EnumEntryName",
    "RemoveRedundantQualifierName",
    "UnusedImport"
)

package ru.testit.kotlin.client.models

import ru.testit.kotlin.client.models.RequestTypeModel
import ru.testit.kotlin.client.models.WebHookEventTypeModel

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

/**
 * 
 *
 * @param name Specifies a webhook name to search for
 * @param eventTypes Specifies a webhook event types to search for
 * @param methods Specifies a webhook methods to search for
 * @param projectIds Specifies a webhook project IDs to search for
 * @param isEnabled Specifies a webhook deleted status to search for
 */


data class SearchWebhooksQueryModel (

    /* Specifies a webhook name to search for */
    @Json(name = "name")
    val name: kotlin.String? = null,

    /* Specifies a webhook event types to search for */
    @Json(name = "eventTypes")
    val eventTypes: kotlin.collections.Set? = null,

    /* Specifies a webhook methods to search for */
    @Json(name = "methods")
    val methods: kotlin.collections.Set? = null,

    /* Specifies a webhook project IDs to search for */
    @Json(name = "projectIds")
    val projectIds: kotlin.collections.Set? = null,

    /* Specifies a webhook deleted status to search for */
    @Json(name = "isEnabled")
    val isEnabled: kotlin.Boolean? = null

) {


}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy