9 lines
248 B
Go
9 lines
248 B
Go
package api
|
|
|
|
import "fmt"
|
|
|
|
// GetOrderLink give the link to order the car.
|
|
func (a *Availability) GetOrderLink() string {
|
|
return fmt.Sprintf("https://www.tesla.com/fr_FR/%s/order/%s?postal=59110®ion=FR&referral=anthony86345", a.Model, a.Vin)
|
|
}
|