BlobFlatListSegment.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.implementation.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.ArrayList;
import java.util.List;
/**
* The BlobFlatListSegment model.
*/
@JacksonXmlRootElement(localName = "Blobs")
@Fluent
public final class BlobFlatListSegment {
/*
* The blobItems property.
*/
@JsonProperty("Blob")
private List<BlobItemInternal> blobItems = new ArrayList<>();
/**
* Get the blobItems property: The blobItems property.
*
* @return the blobItems value.
*/
public List<BlobItemInternal> getBlobItems() {
return this.blobItems;
}
/**
* Set the blobItems property: The blobItems property.
*
* @param blobItems the blobItems value to set.
* @return the BlobFlatListSegment object itself.
*/
public BlobFlatListSegment setBlobItems(List<BlobItemInternal> blobItems) {
this.blobItems = blobItems;
return this;
}
}