/* Options:
Date: 2025-05-22 05:56:00
Version: 8.71
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://team.evovoice.io

//Package: 
//GlobalNamespace: dtos
//AddPropertyAccessors: True
//SettersReturnThis: True
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddDescriptionAsComments: True
//AddImplicitVersion: 
IncludeTypes: GetFileFieldValues.*
//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="/values/file")
    public static class GetFileFieldValues implements IReturn<GetValuesResponse>
    {
        public String accountId = null;
        
        public String getAccountId() { return accountId; }
        public GetFileFieldValues setAccountId(String value) { this.accountId = value; return this; }
        private static Object responseType = GetValuesResponse.class;
        public Object getResponseType() { return responseType; }
    }

    public static class GetValuesResponse
    {
        public ArrayList<FieldValue> fieldValues = null;
        
        public ArrayList<FieldValue> getFieldValues() { return fieldValues; }
        public GetValuesResponse setFieldValues(ArrayList<FieldValue> value) { this.fieldValues = value; return this; }
    }

    public static class FieldValue
    {
        public String displayName = null;
        public String value = null;
        
        public String getDisplayName() { return displayName; }
        public FieldValue setDisplayName(String value) { this.displayName = value; return this; }
        public String getValue() { return value; }
        public FieldValue setValue(String value) { this.value = value; return this; }
    }

}