Files
Regression-Testing/SpeckleAutomateDotnetExample/FunctionInputs.cs
T
Claire Kuang adc27ae5d3
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
adds error reporting
2024-02-07 14:01:24 +00:00

16 lines
494 B
C#

using System.ComponentModel.DataAnnotations;
/// <summary>
/// This class describes the user specified variables that the function wants to work with.
/// </summary>
/// This class is used to generate a JSON Schema to ensure that the user provided values
/// are valid and match the required schema.
public struct FunctionInputs
{
/// <summary>
/// The name of the branch to compare against. This should be the full branch path.
/// </summary>
[Required]
public string DiffBranch;
}