All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartling.api.files.v2.pto.DownloadMultipleTranslationsPTO Maven / Gradle / Ivy

There is a newer version: 1.16.0
Show newest version
package com.smartling.api.files.v2.pto;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.ws.rs.QueryParam;
import java.util.List;

@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class DownloadMultipleTranslationsPTO
{
    @QueryParam("fileUris[]")
    private List fileUris;

    @QueryParam("localeIds[]")
    private List localeIds;

    @QueryParam("retrievalType")
    private RetrievalType retrievalType;

    @QueryParam("includeOriginalStrings")
    private Boolean includeOriginalStrings;

    @QueryParam("fileNameMode")
    private FileNameMode fileNameMode;

    @QueryParam("localeMode")
    private LocaleMode localeMode;

    @QueryParam("zipFileName")
    private String zipFileName;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy