com.sinch.sdk.domains.numbers.models.v1.ScheduledVoiceProvisioning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
/*
* Numbers | Sinch
*
* OpenAPI document version: 1.0.2
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*/
package com.sinch.sdk.domains.numbers.models.v1;
import java.time.Instant;
/** ScheduledVoiceProvisioning */
public interface ScheduledVoiceProvisioning {
/**
* Timestamp when the status was last updated.
*
* @return lastUpdatedTime
* @readOnly This field is returned by the server and cannot be modified
*/
Instant getLastUpdatedTime();
/**
* Get status
*
* @return status
*/
ProvisioningStatus getStatus();
/** Dedicated Builder */
interface Builder {
/**
* see getter
*
* @param lastUpdatedTime see getter
* @return Current builder
* @see #getLastUpdatedTime
* @readOnly This field is returned by the server and cannot be modified
*/
Builder setLastUpdatedTime(Instant lastUpdatedTime);
/**
* see getter
*
* @param status see getter
* @return Current builder
* @see #getStatus
*/
Builder setStatus(ProvisioningStatus status);
/**
* Create instance
*
* @return The instance build with current builder values
*/
ScheduledVoiceProvisioning build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy