PhoneCallPerson

public struct PhoneCallPerson : Codable

<#Description#>

PersonType

  • <#Description#>

    Declaration

    Swift

    public enum PersonType : String, Codable

Address

  • <#Description#>

    See more

    Declaration

    Swift

    public struct Address : Codable

BusinessHours

History

  • <#Description#>

    See more

    Declaration

    Swift

    public struct History : Codable

Contact

  • <#Description#>

    See more

    Declaration

    Swift

    public struct Contact : Codable
  • <#Description#>

    Declaration

    Swift

    public let name: String
  • <#Description#>

    Declaration

    Swift

    public let type: PersonType
  • <#Description#>

    Declaration

    Swift

    public let profileImgUrl: String?
  • <#Description#>

    Declaration

    Swift

    public let category: String?
  • <#Description#>

    Declaration

    Swift

    public let address: Address?
  • <#Description#>

    Declaration

    Swift

    public let businessHours: BusinessHours?
  • <#Description#>

    Declaration

    Swift

    public let history: History?
  • <#Description#>

    Declaration

    Swift

    public let numInCallHistory: String?
  • <#Description#>

    Declaration

    Swift

    public let token: String?
  • <#Description#>

    Declaration

    Swift

    public let score: String?
  • <#Description#>

    Declaration

    Swift

    public let contacts: [Contact]?
  • <#Description#>

    Declaration

    Swift

    public init(
        name: String,
        type: PersonType,
        profileImgUrl: String?,
        category: String?,
        address: Address?,
        businessHours: BusinessHours?,
        history: History?,
        numInCallHistory: String?,
        token: String?,
        score: String?,
        contacts: [Contact]?
    )

    Parameters

    name

    <#name description#>

    type

    <#type description#>

    profileImgUrl

    <#profileImgUrl description#>

    category

    <#category description#>

    address

    <#address description#>

    businessHours

    <#businessHours description#>

    history

    <#history description#>

    numInCallHistory

    <#numInCallHistory description#>

    token

    <#token description#>

    score

    <#score description#>

    contacts

    <#contacts description#>