|
| 1 | +// Template Source: BaseMethodParameterSet.java.tt |
| 2 | +// ------------------------------------------------------------------------------ |
| 3 | +// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. |
| 4 | +// ------------------------------------------------------------------------------ |
| 5 | + |
| 6 | +package com.microsoft.graph.models; |
| 7 | + |
| 8 | + |
| 9 | +import com.google.gson.annotations.Expose; |
| 10 | +import com.google.gson.annotations.SerializedName; |
| 11 | +import javax.annotation.Nonnull; |
| 12 | +import javax.annotation.Nullable; |
| 13 | +import com.google.gson.JsonObject; |
| 14 | +import java.util.EnumSet; |
| 15 | +import java.util.ArrayList; |
| 16 | + |
| 17 | +// **NOTE** This file was generated by a tool and any changes will be overwritten. |
| 18 | + |
| 19 | +/** |
| 20 | + * The class for the Domain Promote Parameter Set. |
| 21 | + */ |
| 22 | +public class DomainPromoteParameterSet { |
| 23 | + |
| 24 | + /** |
| 25 | + * Instiaciates a new DomainPromoteParameterSet |
| 26 | + */ |
| 27 | + public DomainPromoteParameterSet() {} |
| 28 | + /** |
| 29 | + * Instiaciates a new DomainPromoteParameterSet |
| 30 | + * @param builder builder bearing the parameters to initialize from |
| 31 | + */ |
| 32 | + protected DomainPromoteParameterSet(@Nonnull final DomainPromoteParameterSetBuilder builder) { |
| 33 | + } |
| 34 | + /** |
| 35 | + * Gets a new builder for the body |
| 36 | + * @return a new builder |
| 37 | + */ |
| 38 | + @Nonnull |
| 39 | + public static DomainPromoteParameterSetBuilder newBuilder() { |
| 40 | + return new DomainPromoteParameterSetBuilder(); |
| 41 | + } |
| 42 | + /** |
| 43 | + * Fluent builder for the DomainPromoteParameterSet |
| 44 | + */ |
| 45 | + public static final class DomainPromoteParameterSetBuilder { |
| 46 | + /** |
| 47 | + * Instanciates a new DomainPromoteParameterSetBuilder |
| 48 | + */ |
| 49 | + @Nullable |
| 50 | + protected DomainPromoteParameterSetBuilder(){} |
| 51 | + /** |
| 52 | + * Buils the resulting body object to be passed to the request |
| 53 | + * @return the body object to pass to the request |
| 54 | + */ |
| 55 | + @Nonnull |
| 56 | + public DomainPromoteParameterSet build() { |
| 57 | + return new DomainPromoteParameterSet(this); |
| 58 | + } |
| 59 | + } |
| 60 | + /** |
| 61 | + * Gets the functions options from the properties that have been set |
| 62 | + * @return a list of function options for the request |
| 63 | + */ |
| 64 | + @Nonnull |
| 65 | + public java.util.List<com.microsoft.graph.options.FunctionOption> getFunctionOptions() { |
| 66 | + final ArrayList<com.microsoft.graph.options.FunctionOption> result = new ArrayList<>(); |
| 67 | + return result; |
| 68 | + } |
| 69 | +} |
0 commit comments