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

com.mytaxi.apis.phrase.api.translation.dto.PhraseKeyDTO Maven / Gradle / Ivy

Go to download

This projects contains of services to handle the translations from [PhraseApp API v2](http://docs.phraseapp.com/api/v2/). It's supposed to expose Phrase translations as POJO or as File within the java world.

There is a newer version: 1.0.6
Show newest version
package com.mytaxi.apis.phrase.api.translation.dto;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by m.winkelmann on 05.11.15.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class PhraseKeyDTO
{
    private String id;
    private String name;


    public String getId()
    {
        return id;
    }


    public String getName()
    {
        return name;
    }


    @Override
    public String toString()
    {
        return "PhraseKeyDTO{" +
            "id='" + id + '\'' +
            ", name='" + name + '\'' +
            '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy