51ad4a8ff9
build and deploy Speckle functions / publish-automate-function-version (push) Has been cancelled
38 lines
903 B
C#
38 lines
903 B
C#
using Speckle.Automate.Sdk.DataAnnotations;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
public enum ClimateZones
|
|
{
|
|
ONEA,
|
|
TWOA
|
|
}
|
|
|
|
/// <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
|
|
{
|
|
[Required]
|
|
[EnumDataType(typeof(ClimateZones))]
|
|
[DefaultValue(ClimateZones.ONEA)]
|
|
public string ClimateZone;
|
|
|
|
/// <summary>
|
|
/// The object type to count instances of in the given model version.
|
|
/// </summary>
|
|
[Required]
|
|
public string SpeckleTypeToCheck;
|
|
|
|
/// <summary>
|
|
/// The total number of the specified type expected.
|
|
/// </summary>
|
|
[DefaultValue(10)]
|
|
[Range(1, 100)]
|
|
[Required]
|
|
public int SpeckleTypeTargetCount;
|
|
}
|