pulumi/tests/testdata/codegen/output-funcs-edgeorder/dotnet/Outputs/LinkResponse.cs

39 lines
893 B
C#

// *** WARNING: this file was generated by test. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Threading.Tasks;
using Pulumi.Serialization;
namespace Pulumi.Myedgeorder.Outputs
{
/// <summary>
/// Returns link related to the product
/// </summary>
[OutputType]
public sealed class LinkResponse
{
/// <summary>
/// Type of link
/// </summary>
public readonly string LinkType;
/// <summary>
/// Url of the link
/// </summary>
public readonly string LinkUrl;
[OutputConstructor]
private LinkResponse(
string linkType,
string linkUrl)
{
LinkType = linkType;
LinkUrl = linkUrl;
}
}
}