8 lines
228 B
Go
8 lines
228 B
Go
|
package apollostruct
|
||
|
|
||
|
type InstallCfg struct {
|
||
|
IsIosInstallButtonVisible string `json:"is_ios_install_button_visible"`
|
||
|
AndroidUrl string `json:"android_url"`
|
||
|
IosUrl string `json:"ios_url"`
|
||
|
}
|