Transloadit.Assembly.AssemblyBuilder.AssemblyBuilder C# (CSharp) Method

AssemblyBuilder() public method

Creates a new TransloaditAssemblyBuilder object; sets steps, auth and files to empty collections
public AssemblyBuilder ( ) : System
return System
        public AssemblyBuilder()
        {
            steps = new Dictionary<string, Dictionary<string, object>>();
            auth = new Dictionary<string, string>();
            files = new Dictionary<string, string>();
            fields = new Dictionary<string, object>();
        }