github.com/myhau/pulumi/pkg/v3@v3.70.2-0.20221116134521-f2775972e587/codegen/testing/test/testdata/output-funcs-edgeorder/dotnet/Outputs/LinkResponse.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      /// Returns link related to the product
    15      /// </summary>
    16      [OutputType]
    17      public sealed class LinkResponse
    18      {
    19          /// <summary>
    20          /// Type of link
    21          /// </summary>
    22          public readonly string LinkType;
    23          /// <summary>
    24          /// Url of the link
    25          /// </summary>
    26          public readonly string LinkUrl;
    27  
    28          [OutputConstructor]
    29          private LinkResponse(
    30              string linkType,
    31  
    32              string linkUrl)
    33          {
    34              LinkType = linkType;
    35              LinkUrl = linkUrl;
    36          }
    37      }
    38  }