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

lephantbird.elephant-bird-examples.4.14-RC4.source-code.address_book.thrift Maven / Gradle / Ivy

There is a newer version: 4.17
Show newest version
namespace java com.twitter.elephantbird.examples.thrift

enum PhoneType {
  MOBILE = 0,
  HOME = 1,
  WORK = 2
}

struct PhoneNumber {
  1: string number,
  2: optional PhoneType type
}

struct Name {
  1: string first_name,
  2: string last_name
}

struct Person {
  1: required Name name,
  2: i32 id,
  3: string email,
  4: list phones
}

struct AddressBook {
  1: list persons
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy