001/*- 002 * #%L 003 * Smile CDR - CDR 004 * %% 005 * Copyright (C) 2016 - 2024 Smile CDR, Inc. 006 * %% 007 * All rights reserved. 008 * #L% 009 */ 010package ca.cdr.api.model.json.appgallery.common; 011 012import ca.cdr.api.model.json.AbstractModelJson; 013import io.swagger.v3.oas.annotations.media.Schema; 014 015public class AGPhoneJson extends AbstractModelJson { 016 @Schema(description = "Type of Phone (e.g CELL or WORK)") 017 public String phoneType; 018 019 @Schema(description = "Country code of the phone number") 020 public String countryCode; 021 022 @Schema(description = "The phone number") 023 public String phoneNumber; 024}