github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/DimensionsResponse.cs (about)

     1  // *** WARNING: this file was generated by test. ***
     2  // *** Do not edit by hand unless you're certain you know what you are doing! ***
     3  
     4  using System;
     5  using System.Collections.Generic;
     6  using System.Collections.Immutable;
     7  using System.Threading.Tasks;
     8  using Pulumi.Serialization;
     9  
    10  namespace Pulumi.Myedgeorder.Outputs
    11  {
    12  
    13      /// <summary>
    14      /// Dimensions of a configuration.
    15      /// </summary>
    16      [OutputType]
    17      public sealed class DimensionsResponse
    18      {
    19          /// <summary>
    20          /// Depth of the device.
    21          /// </summary>
    22          public readonly double Depth;
    23          /// <summary>
    24          /// Height of the device.
    25          /// </summary>
    26          public readonly double Height;
    27          /// <summary>
    28          /// Length of the device.
    29          /// </summary>
    30          public readonly double Length;
    31          /// <summary>
    32          /// Unit for the dimensions of length, height and width.
    33          /// </summary>
    34          public readonly string LengthHeightUnit;
    35          /// <summary>
    36          /// Weight of the device.
    37          /// </summary>
    38          public readonly double Weight;
    39          /// <summary>
    40          /// Unit for the dimensions of weight.
    41          /// </summary>
    42          public readonly string WeightUnit;
    43          /// <summary>
    44          /// Width of the device.
    45          /// </summary>
    46          public readonly double Width;
    47  
    48          [OutputConstructor]
    49          private DimensionsResponse(
    50              double depth,
    51  
    52              double height,
    53  
    54              double length,
    55  
    56              string lengthHeightUnit,
    57  
    58              double weight,
    59  
    60              string weightUnit,
    61  
    62              double width)
    63          {
    64              Depth = depth;
    65              Height = height;
    66              Length = length;
    67              LengthHeightUnit = lengthHeightUnit;
    68              Weight = weight;
    69              WeightUnit = weightUnit;
    70              Width = width;
    71          }
    72      }
    73  }