PCFWishlist

public struct PCFWishlist: Wishlist, Decodable

PCFWishlist model.

  • The id of the wishlist.

    Declaration

    Swift

    public let resourceId: String
  • The display name of the wishlist.

    Declaration

    Swift

    public let name: String
  • The number of items in the wishlist.

    Declaration

    Swift

    public let itemsCount: Int
  • Collection of images corresponding to some or all of the items.

    Declaration

    Swift

    public let images: [ImageResourceType]
  • Collection of images corresponding to some or all of the items.

    Declaration

    Swift

    public init?(json: JSON)

    Parameters

    json

    JSON representation of object.

    Return Value

    New instance when JSON parsing successful, false otherwise.