// *** 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;
using Pulumi;

namespace Other.Example.Outputs
{

    [OutputType]
    public sealed class ObjectWithNodeOptionalInputs
    {
        public readonly int? Bar;
        public readonly string Foo;

        [OutputConstructor]
        private ObjectWithNodeOptionalInputs(
            int? bar,

            string foo)
        {
            Bar = bar;
            Foo = foo;
        }
    }
}