Represents a location where paysafecash is available as payment option.

interface PaysafecashLocation {
    address: string;
    city: string;
    latitude: number;
    longitude: number;
    name: string;
}

Properties

address: string

Address where the store is located.

city: string

City where the store is located.

latitude: number

Latitude (in decimal degrees). >= -90 AND <= 90.

longitude: number

Longitude (in decimal degrees). >= -180 AND <= 180.

name: string

Name of the store.