var url = new Url
{
Category = new EnumWithCustomOfUrlCategory
{
Value = "Work"
},
Preferred = true,
Href = "https://products.aspose.cloud/email"
};
Url url = Models.url()
.category(Models.enumWithCustomOfUrlCategory()
.value("Work")
.build())
.preferred(true)
.href("https://products.aspose.cloud/email")
.build();
url = models.Url(
category=models.EnumWithCustomOfUrlCategory(
value='Work'),
preferred=True,
href='https://products.aspose.cloud/email')
url = Url.new(
category: EnumWithCustomOfUrlCategory.new(
value: 'Work'),
preferred: true,
href: 'https://products.aspose.cloud/email')
let url = Models.url()
.category(Models.enumWithCustomOfUrlCategory()
.value('Work')
.build())
.preferred(true)
.href('https://products.aspose.cloud/email')
.build();
$url = Models::url()
->category(Models::enumWithCustomOfUrlCategory()
->value('Work')
->build())
->preferred(true)
->href('https://products.aspose.cloud/email')
->build();