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

com.azure.resourcemanager.databoxedge.models.Order Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DataBoxEdge Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2019-08.

There is a newer version: 1.0.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.resourcemanager.databoxedge.models;

import com.azure.resourcemanager.databoxedge.fluent.models.OrderInner;
import java.util.List;

/**
 * An immutable client-side representation of Order.
 */
public interface Order {
    /**
     * Gets the id property: Fully qualified resource Id for the resource.
     * 
     * @return the id value.
     */
    String id();

    /**
     * Gets the name property: The name of the resource.
     * 
     * @return the name value.
     */
    String name();

    /**
     * Gets the type property: The type of the resource.
     * 
     * @return the type value.
     */
    String type();

    /**
     * Gets the contactInformation property: The contact details.
     * 
     * @return the contactInformation value.
     */
    ContactDetails contactInformation();

    /**
     * Gets the shippingAddress property: The shipping address.
     * 
     * @return the shippingAddress value.
     */
    Address shippingAddress();

    /**
     * Gets the currentStatus property: Current status of the order.
     * 
     * @return the currentStatus value.
     */
    OrderStatus currentStatus();

    /**
     * Gets the orderHistory property: List of status changes in the order.
     * 
     * @return the orderHistory value.
     */
    List orderHistory();

    /**
     * Gets the serialNumber property: Serial number of the device.
     * 
     * @return the serialNumber value.
     */
    String serialNumber();

    /**
     * Gets the deliveryTrackingInfo property: Tracking information for the package delivered to the customer whether it
     * has an original or a replacement device.
     * 
     * @return the deliveryTrackingInfo value.
     */
    List deliveryTrackingInfo();

    /**
     * Gets the returnTrackingInfo property: Tracking information for the package returned from the customer whether it
     * has an original or a replacement device.
     * 
     * @return the returnTrackingInfo value.
     */
    List returnTrackingInfo();

    /**
     * Gets the inner com.azure.resourcemanager.databoxedge.fluent.models.OrderInner object.
     * 
     * @return the inner object.
     */
    OrderInner innerModel();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy