예제 #1
0
		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;
		}
예제 #2
0
		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;
		}