-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_follow_request.go
27 lines (24 loc) · 1.56 KB
/
model_follow_request.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* TikHub Private API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* API version: 1.0.0
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package tikhub
// FollowRequest FollowRequest
type FollowRequest struct {
// User ID,Video ID, which can be obtained from the sharing link, for example: https://www.tiktok.com/@username/video/7419966340443819295
UserId string `json:"user_id,omitempty" xml:"user_id"`
// Sec User Id
SecUserId string `json:"sec_user_id,omitempty" xml:"sec_user_id"`
// User Cookie,User Cookie, you can log in to your TikTok account in the browser and then copy the Cookie information, please use URL-encoded Cookie string when submitting.
Cookie string `json:"cookie,omitempty" xml:"cookie"`
// Device ID,Device id, optional, if not filled in, it will be automatically generated, if you need to customize the device id, please use the device information interface to get the device id.
DeviceId string `json:"device_id,omitempty" xml:"device_id"`
// Device Install ID,Device install id, optional, if not filled in, it will be automatically generated, if you need to customize the device iid, please use the device information interface to get the device iid.
Iid string `json:"iid,omitempty" xml:"iid"`
// Proxy IP,Proxy IP, optional, if not filled in, it will be automatically generated, if you need to customize the proxy IP, please use the proxy IP interface to get the proxy IP.
Proxy string `json:"proxy,omitempty" xml:"proxy"`
}