org.catools.common.facker.model.CRandomCountry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-randomize Show documentation
Show all versions of common-randomize Show documentation
The Common Randomize Implementation
package org.catools.common.facker.model;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.Accessors;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Accessors(chain = true)
public class CRandomCountry {
private String countryCode2;
private String countryCode3;
private String name;
private String currencyCode;
private String currencyName;
private String phonePrefix;
private String postalCodeFormat;
private String postalCodeRegex;
}