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

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

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

import com.fasterxml.jackson.annotation.JsonFormat;
import com.smartling.api.v2.response.ResponseData;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Date;
import java.util.List;
import java.util.Map;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class FileStatusResponse implements ResponseData
{
    @JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd'T'HH:mm:ssXX", timezone="UTC")
    private Date created;
    @JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd'T'HH:mm:ssXX", timezone="UTC")
    private Date lastUploaded;
    private String fileType;
    private String fileUri;
    private boolean hasInstructions;
    private List items;
    private int parserVersion;
    private int totalCount;
    private int totalStringCount;
    private int totalWordCount;
    private Map directives;
    private NamespacePTO namespace;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy