Class JobPayloadInput
Namespace: Autodesk.ModelDerivative.Model
Assembly: Autodesk.ModelDerivative.dll
Describes the attributes of the source design.
[DataContract]
public class JobPayloadInput
Inheritance
Inherited Members
object.Equals(object) , object.Equals(object, object) , object.GetHashCode() , object.GetType() , object.MemberwiseClone() , object.ReferenceEquals(object, object) , object.ToString()
Constructors
JobPayloadInput()
Initializes a new instance of the
public JobPayloadInput()
Properties
CheckReferences
true
- Instructs the system to check for references, and if any exist, download all referenced files. Setting this parameter totrue
is mandatory when translating source designs consisting of multiple files. For example, Autodesk Inventor assemblies.false
- (Default) Instructs the system not to check for references.
[DataMember(Name = "checkReferences", EmitDefaultValue = false)]
public bool? CheckReferences { get; set; }
Property Value
bool ?
CompressedUrn
true
: The source design is compressed as a zip file. If set totrue
, you need to define therootFilename
.’false
: (Default) The source design is not compressed.
[DataMember(Name = "compressedUrn", EmitDefaultValue = false)]
public bool? CompressedUrn { get; set; }
Property Value
bool ?
RootFilename
The file name of the top-level component of the source design. Mandatory if compressedUrn
is set to true
.
[DataMember(Name = "rootFilename", EmitDefaultValue = false)]
public string RootFilename { get; set; }
Property Value
Urn
The URL safe Base64 encoded URN of the source design.
Note: The URN is returned as the objectIDonce you complete uploading the source design to APS. This value must be converted to a
Base64 (URL Safe) encoded string before you can specify it for this attribute.
[DataMember(Name = "urn", EmitDefaultValue = false)]
public string Urn { get; set; }
Property Value
Methods
ToString()
Returns the string presentation of the object
public override string ToString()
Returns
String presentation of the object