AddProxyResponse

public struct AddProxyResponse : Codable, Equatable

The response returned after adding a proxy.

  • The type of the added proxy.

    Declaration

    Swift

    public let type: String
  • id

    The ID of the added proxy.

    Declaration

    Swift

    public let id: String
  • The value of the added proxy.

    Declaration

    Swift

    public let value: String
  • HAL links associated with the response.

    Declaration

    Swift

    public let links: AddProxyResponseLinks
  • Creates an instance of AddProxyResponse with the specified parameters.

    Declaration

    Swift

    public init(type: String, id: String, value: String, links: AddProxyResponseLinks)

    Parameters

    type

    The type of the added proxy.

    id

    The ID of the added proxy.

    value

    The value of the added proxy.

    links

    HAL links associated with the response.

  • HAL links associated with the AddProxyResponse.

    See more

    Declaration

    Swift

    struct AddProxyResponseLinks : Codable, Equatable