/* Options: Date: 2026-06-23 00:02:21 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CustomerLinkListRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/customerlink/resource/{ResourceType}/{ResourceUid}", Verbs="GET,OPTIONS") public static class CustomerLinkListRequest implements IReturn { public String ResourceType = null; public UUID ResourceUid = null; public String getResourceType() { return ResourceType; } public CustomerLinkListRequest setResourceType(String value) { this.ResourceType = value; return this; } public UUID getResourceUid() { return ResourceUid; } public CustomerLinkListRequest setResourceUid(UUID value) { this.ResourceUid = value; return this; } private static Object responseType = CustomerLinkListResponse.class; public Object getResponseType() { return responseType; } } public static class CustomerLinkListResponse { public ResponseStatus ResponseStatus = null; public ArrayList Links = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomerLinkListResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getLinks() { return Links; } public CustomerLinkListResponse setLinks(ArrayList value) { this.Links = value; return this; } } public static class CustomerLinkExtended extends CustomerLink { public String RecipientDisplayName = null; public String RecipientType = null; public String Status = null; public String getRecipientDisplayName() { return RecipientDisplayName; } public CustomerLinkExtended setRecipientDisplayName(String value) { this.RecipientDisplayName = value; return this; } public String getRecipientType() { return RecipientType; } public CustomerLinkExtended setRecipientType(String value) { this.RecipientType = value; return this; } public String getStatus() { return Status; } public CustomerLinkExtended setStatus(String value) { this.Status = value; return this; } } public static class CustomerLink { public Integer CustomerLinkId = null; public UUID CustomerLinkUID = null; public String TokenHash = null; public String ResourceType = null; public UUID ResourceUid = null; public String SensitivityTier = null; public Boolean RequireOtp = null; public String OtpChannel = null; public String DeliveryChannels = null; public Integer RecipientContactId = null; public String RecipientEmail = null; public String RecipientPhone = null; public Boolean SmsConsentSnapshot = null; public UUID CreatedByUserId = null; public Integer CreatedByAgentId = null; public Date CreatedAtUtc = null; public Date ExpiresAtUtc = null; public Integer MaxViews = null; public Integer ViewCount = null; public Date RevokedAtUtc = null; public UUID RevokedByUserId = null; public UUID TenantId = null; public Integer getCustomerLinkId() { return CustomerLinkId; } public CustomerLink setCustomerLinkId(Integer value) { this.CustomerLinkId = value; return this; } public UUID getCustomerLinkUID() { return CustomerLinkUID; } public CustomerLink setCustomerLinkUID(UUID value) { this.CustomerLinkUID = value; return this; } public String getTokenHash() { return TokenHash; } public CustomerLink setTokenHash(String value) { this.TokenHash = value; return this; } public String getResourceType() { return ResourceType; } public CustomerLink setResourceType(String value) { this.ResourceType = value; return this; } public UUID getResourceUid() { return ResourceUid; } public CustomerLink setResourceUid(UUID value) { this.ResourceUid = value; return this; } public String getSensitivityTier() { return SensitivityTier; } public CustomerLink setSensitivityTier(String value) { this.SensitivityTier = value; return this; } public Boolean isRequireOtp() { return RequireOtp; } public CustomerLink setRequireOtp(Boolean value) { this.RequireOtp = value; return this; } public String getOtpChannel() { return OtpChannel; } public CustomerLink setOtpChannel(String value) { this.OtpChannel = value; return this; } public String getDeliveryChannels() { return DeliveryChannels; } public CustomerLink setDeliveryChannels(String value) { this.DeliveryChannels = value; return this; } public Integer getRecipientContactId() { return RecipientContactId; } public CustomerLink setRecipientContactId(Integer value) { this.RecipientContactId = value; return this; } public String getRecipientEmail() { return RecipientEmail; } public CustomerLink setRecipientEmail(String value) { this.RecipientEmail = value; return this; } public String getRecipientPhone() { return RecipientPhone; } public CustomerLink setRecipientPhone(String value) { this.RecipientPhone = value; return this; } public Boolean isSmsConsentSnapshot() { return SmsConsentSnapshot; } public CustomerLink setSmsConsentSnapshot(Boolean value) { this.SmsConsentSnapshot = value; return this; } public UUID getCreatedByUserId() { return CreatedByUserId; } public CustomerLink setCreatedByUserId(UUID value) { this.CreatedByUserId = value; return this; } public Integer getCreatedByAgentId() { return CreatedByAgentId; } public CustomerLink setCreatedByAgentId(Integer value) { this.CreatedByAgentId = value; return this; } public Date getCreatedAtUtc() { return CreatedAtUtc; } public CustomerLink setCreatedAtUtc(Date value) { this.CreatedAtUtc = value; return this; } public Date getExpiresAtUtc() { return ExpiresAtUtc; } public CustomerLink setExpiresAtUtc(Date value) { this.ExpiresAtUtc = value; return this; } public Integer getMaxViews() { return MaxViews; } public CustomerLink setMaxViews(Integer value) { this.MaxViews = value; return this; } public Integer getViewCount() { return ViewCount; } public CustomerLink setViewCount(Integer value) { this.ViewCount = value; return this; } public Date getRevokedAtUtc() { return RevokedAtUtc; } public CustomerLink setRevokedAtUtc(Date value) { this.RevokedAtUtc = value; return this; } public UUID getRevokedByUserId() { return RevokedByUserId; } public CustomerLink setRevokedByUserId(UUID value) { this.RevokedByUserId = value; return this; } public UUID getTenantId() { return TenantId; } public CustomerLink setTenantId(UUID value) { this.TenantId = value; return this; } } }