/* Options: Date: 2026-04-04 02:55:50 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AddUserProfile.* //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 { /** * Add a Users Profile information' */ @Route(Path="/profiles", Verbs="POST") @Api(Description="Add a Users Profile information'") public static class AddUserProfile implements IReturn { public ArrayList UserIds = null; public ArrayList ContactIds = null; public UUID ProfileToShareId = null; public ArrayList getUserIds() { return UserIds; } public AddUserProfile setUserIds(ArrayList value) { this.UserIds = value; return this; } public ArrayList getContactIds() { return ContactIds; } public AddUserProfile setContactIds(ArrayList value) { this.ContactIds = value; return this; } public UUID getProfileToShareId() { return ProfileToShareId; } public AddUserProfile setProfileToShareId(UUID value) { this.ProfileToShareId = value; return this; } private static Object responseType = AddUserProfileResponse.class; public Object getResponseType() { return responseType; } } public static class AddUserProfileResponse { public ArrayList Errors = null; /** * Guid representing the object that is the User Profile Id in Eros. */ @ApiMember(DataType="Guid", Description="Guid representing the object that is the User Profile Id in Eros.", Name="UserProfileId", ParameterType="query") public UUID ProfileToShareId = null; /** * Service Stack Response Status. */ @ApiMember(DataType="ResponseStatus", Description="Service Stack Response Status.", Name="ResponseStatus", ParameterType="query") public ResponseStatus ResponseStatus = null; public ArrayList getErrors() { return Errors; } public AddUserProfileResponse setErrors(ArrayList value) { this.Errors = value; return this; } public UUID getProfileToShareId() { return ProfileToShareId; } public AddUserProfileResponse setProfileToShareId(UUID value) { this.ProfileToShareId = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public AddUserProfileResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }