public CreateRequest(string identifier = null, Metadata metadata = null, ApiAuthentication authentication = null) { if (null != identifier) this.Identifier = identifier; if (null != metadata) this.Metadata = metadata; if (null != authentication) this.Authentication = authentication; }
public MintRequest(string shoulder = null, Metadata metadata = null, ApiAuthentication authentication = null) { if (null != shoulder) this.Shoulder = shoulder; if (null != metadata) this.Metadata = metadata; if (null != authentication) this.Authentication = authentication; }