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

com.increase.api.services.async.InboundMailItemServiceAsync.kt Maven / Gradle / Ivy

The newest version!
// File generated from our OpenAPI spec by Stainless.

@file:Suppress("OVERLOADS_INTERFACE") // See https://youtrack.jetbrains.com/issue/KT-36102

package com.increase.api.services.async

import com.increase.api.core.RequestOptions
import com.increase.api.models.InboundMailItem
import com.increase.api.models.InboundMailItemListPageAsync
import com.increase.api.models.InboundMailItemListParams
import com.increase.api.models.InboundMailItemRetrieveParams

interface InboundMailItemServiceAsync {

    /** Retrieve an Inbound Mail Item */
    suspend fun retrieve(
        params: InboundMailItemRetrieveParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundMailItem

    /** List Inbound Mail Items */
    suspend fun list(
        params: InboundMailItemListParams,
        requestOptions: RequestOptions = RequestOptions.none()
    ): InboundMailItemListPageAsync
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy