001package com.box.sdkgen.managers.aistudio; 002 003import java.util.List; 004 005public class GetAiAgentByIdQueryParams { 006 007 /** The fields to return in the response. */ 008 public List<String> fields; 009 010 public GetAiAgentByIdQueryParams() {} 011 012 protected GetAiAgentByIdQueryParams(Builder builder) { 013 this.fields = builder.fields; 014 } 015 016 public List<String> getFields() { 017 return fields; 018 } 019 020 public static class Builder { 021 022 protected List<String> fields; 023 024 public Builder fields(List<String> fields) { 025 this.fields = fields; 026 return this; 027 } 028 029 public GetAiAgentByIdQueryParams build() { 030 return new GetAiAgentByIdQueryParams(this); 031 } 032 } 033}