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

com.azure.messaging.eventgrid.systemevents.AcsRecordingChunkInfoProperties Maven / Gradle / Ivy

There is a newer version: 4.27.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.messaging.eventgrid.systemevents;

import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Schema for all properties of Recording Chunk Information. */
@Fluent
public final class AcsRecordingChunkInfoProperties {
    /*
     * The documentId of the recording chunk
     */
    @JsonProperty(value = "documentId")
    private String documentId;

    /*
     * The index of the recording chunk
     */
    @JsonProperty(value = "index")
    private Long index;

    /*
     * The reason for ending the recording chunk
     */
    @JsonProperty(value = "endReason")
    private String endReason;

    /*
     * The location of the metadata for this chunk
     */
    @JsonProperty(value = "metadataLocation")
    private String metadataLocation;

    /*
     * The location of the content for this chunk
     */
    @JsonProperty(value = "contentLocation")
    private String contentLocation;

    /*
     * The location to delete all chunk storage
     */
    @JsonProperty(value = "deleteLocation")
    private String deleteLocation;

    /** Creates an instance of AcsRecordingChunkInfoProperties class. */
    public AcsRecordingChunkInfoProperties() {}

    /**
     * Get the documentId property: The documentId of the recording chunk.
     *
     * @return the documentId value.
     */
    public String getDocumentId() {
        return this.documentId;
    }

    /**
     * Set the documentId property: The documentId of the recording chunk.
     *
     * @param documentId the documentId value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setDocumentId(String documentId) {
        this.documentId = documentId;
        return this;
    }

    /**
     * Get the index property: The index of the recording chunk.
     *
     * @return the index value.
     */
    public Long getIndex() {
        return this.index;
    }

    /**
     * Set the index property: The index of the recording chunk.
     *
     * @param index the index value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setIndex(Long index) {
        this.index = index;
        return this;
    }

    /**
     * Get the endReason property: The reason for ending the recording chunk.
     *
     * @return the endReason value.
     */
    public String getEndReason() {
        return this.endReason;
    }

    /**
     * Set the endReason property: The reason for ending the recording chunk.
     *
     * @param endReason the endReason value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setEndReason(String endReason) {
        this.endReason = endReason;
        return this;
    }

    /**
     * Get the metadataLocation property: The location of the metadata for this chunk.
     *
     * @return the metadataLocation value.
     */
    public String getMetadataLocation() {
        return this.metadataLocation;
    }

    /**
     * Set the metadataLocation property: The location of the metadata for this chunk.
     *
     * @param metadataLocation the metadataLocation value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setMetadataLocation(String metadataLocation) {
        this.metadataLocation = metadataLocation;
        return this;
    }

    /**
     * Get the contentLocation property: The location of the content for this chunk.
     *
     * @return the contentLocation value.
     */
    public String getContentLocation() {
        return this.contentLocation;
    }

    /**
     * Set the contentLocation property: The location of the content for this chunk.
     *
     * @param contentLocation the contentLocation value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setContentLocation(String contentLocation) {
        this.contentLocation = contentLocation;
        return this;
    }

    /**
     * Get the deleteLocation property: The location to delete all chunk storage.
     *
     * @return the deleteLocation value.
     */
    public String getDeleteLocation() {
        return this.deleteLocation;
    }

    /**
     * Set the deleteLocation property: The location to delete all chunk storage.
     *
     * @param deleteLocation the deleteLocation value to set.
     * @return the AcsRecordingChunkInfoProperties object itself.
     */
    public AcsRecordingChunkInfoProperties setDeleteLocation(String deleteLocation) {
        this.deleteLocation = deleteLocation;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy