001package com.box.sdkgen.managers.foldermetadata; 002 003public class GetFolderMetadataQueryParams { 004 005 /** 006 * Taxonomy field values are returned in `API view` by default, meaning the value is represented 007 * with a taxonomy node identifier. To retrieve the `Hydrated view`, where taxonomy values are 008 * represented with the full taxonomy node information, set this parameter to `hydrated`. This is 009 * the only supported value for this parameter. 010 */ 011 public String view; 012 013 public GetFolderMetadataQueryParams() {} 014 015 protected GetFolderMetadataQueryParams(Builder builder) { 016 this.view = builder.view; 017 } 018 019 public String getView() { 020 return view; 021 } 022 023 public static class Builder { 024 025 protected String view; 026 027 public Builder view(String view) { 028 this.view = view; 029 return this; 030 } 031 032 public GetFolderMetadataQueryParams build() { 033 return new GetFolderMetadataQueryParams(this); 034 } 035 } 036}