Documentation
¶
Index ¶
- type AppAccessToken
- type AppTicket
- type AuthService
- type CreateAppAccessTokenPathReqBodyBuilder
- func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppId(appId string) *CreateAppAccessTokenPathReqBodyBuilder
- func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *CreateAppAccessTokenPathReqBodyBuilder
- func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppTicket(appTicket string) *CreateAppAccessTokenPathReqBodyBuilder
- func (builder *CreateAppAccessTokenPathReqBodyBuilder) Build() (*CreateAppAccessTokenReqBody, error)
- type CreateAppAccessTokenReq
- type CreateAppAccessTokenReqBody
- type CreateAppAccessTokenReqBodyBuilder
- func (builder *CreateAppAccessTokenReqBodyBuilder) AppId(appId string) *CreateAppAccessTokenReqBodyBuilder
- func (builder *CreateAppAccessTokenReqBodyBuilder) AppSecret(appSecret string) *CreateAppAccessTokenReqBodyBuilder
- func (builder *CreateAppAccessTokenReqBodyBuilder) AppTicket(appTicket string) *CreateAppAccessTokenReqBodyBuilder
- func (builder *CreateAppAccessTokenReqBodyBuilder) Build() *CreateAppAccessTokenReqBody
- type CreateAppAccessTokenReqBuilder
- type CreateAppAccessTokenResp
- type CreateTenantAccessTokenPathReqBodyBuilder
- func (builder *CreateTenantAccessTokenPathReqBodyBuilder) AppAccessToken(appAccessToken string) *CreateTenantAccessTokenPathReqBodyBuilder
- func (builder *CreateTenantAccessTokenPathReqBodyBuilder) Build() (*CreateTenantAccessTokenReqBody, error)
- func (builder *CreateTenantAccessTokenPathReqBodyBuilder) TenantKey(tenantKey string) *CreateTenantAccessTokenPathReqBodyBuilder
- type CreateTenantAccessTokenReq
- type CreateTenantAccessTokenReqBody
- type CreateTenantAccessTokenReqBodyBuilder
- func (builder *CreateTenantAccessTokenReqBodyBuilder) AppAccessToken(appAccessToken string) *CreateTenantAccessTokenReqBodyBuilder
- func (builder *CreateTenantAccessTokenReqBodyBuilder) Build() *CreateTenantAccessTokenReqBody
- func (builder *CreateTenantAccessTokenReqBodyBuilder) TenantKey(tenantKey string) *CreateTenantAccessTokenReqBodyBuilder
- type CreateTenantAccessTokenReqBuilder
- type CreateTenantAccessTokenResp
- type InternalAppAccessTokenPathReqBodyBuilder
- func (builder *InternalAppAccessTokenPathReqBodyBuilder) AppId(appId string) *InternalAppAccessTokenPathReqBodyBuilder
- func (builder *InternalAppAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *InternalAppAccessTokenPathReqBodyBuilder
- func (builder *InternalAppAccessTokenPathReqBodyBuilder) Build() (*InternalAppAccessTokenReqBody, error)
- type InternalAppAccessTokenReq
- type InternalAppAccessTokenReqBody
- type InternalAppAccessTokenReqBodyBuilder
- func (builder *InternalAppAccessTokenReqBodyBuilder) AppId(appId string) *InternalAppAccessTokenReqBodyBuilder
- func (builder *InternalAppAccessTokenReqBodyBuilder) AppSecret(appSecret string) *InternalAppAccessTokenReqBodyBuilder
- func (builder *InternalAppAccessTokenReqBodyBuilder) Build() *InternalAppAccessTokenReqBody
- type InternalAppAccessTokenReqBuilder
- type InternalAppAccessTokenResp
- type InternalTenantAccessTokenPathReqBodyBuilder
- func (builder *InternalTenantAccessTokenPathReqBodyBuilder) AppId(appId string) *InternalTenantAccessTokenPathReqBodyBuilder
- func (builder *InternalTenantAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *InternalTenantAccessTokenPathReqBodyBuilder
- func (builder *InternalTenantAccessTokenPathReqBodyBuilder) Build() (*InternalTenantAccessTokenReqBody, error)
- type InternalTenantAccessTokenReq
- type InternalTenantAccessTokenReqBody
- type InternalTenantAccessTokenReqBodyBuilder
- func (builder *InternalTenantAccessTokenReqBodyBuilder) AppId(appId string) *InternalTenantAccessTokenReqBodyBuilder
- func (builder *InternalTenantAccessTokenReqBodyBuilder) AppSecret(appSecret string) *InternalTenantAccessTokenReqBodyBuilder
- func (builder *InternalTenantAccessTokenReqBodyBuilder) Build() *InternalTenantAccessTokenReqBody
- type InternalTenantAccessTokenReqBuilder
- type InternalTenantAccessTokenResp
- type ResendAppTicketPathReqBodyBuilder
- func (builder *ResendAppTicketPathReqBodyBuilder) AppId(appId string) *ResendAppTicketPathReqBodyBuilder
- func (builder *ResendAppTicketPathReqBodyBuilder) AppSecret(appSecret string) *ResendAppTicketPathReqBodyBuilder
- func (builder *ResendAppTicketPathReqBodyBuilder) Build() (*ResendAppTicketReqBody, error)
- type ResendAppTicketReq
- type ResendAppTicketReqBody
- type ResendAppTicketReqBodyBuilder
- type ResendAppTicketReqBuilder
- type ResendAppTicketResp
- type TenantAccessToken
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AppAccessToken ¶
type AppAccessToken struct { }
type AuthService ¶
type AuthService struct { AppAccessToken *appAccessToken // app_access_token AppTicket *appTicket // app_ticket TenantAccessToken *tenantAccessToken // tenant_access_token // contains filtered or unexported fields }
func NewService ¶
func NewService(config *larkcore.Config) *AuthService
type CreateAppAccessTokenPathReqBodyBuilder ¶
type CreateAppAccessTokenPathReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewCreateAppAccessTokenPathReqBodyBuilder ¶
func NewCreateAppAccessTokenPathReqBodyBuilder() *CreateAppAccessTokenPathReqBodyBuilder
func (*CreateAppAccessTokenPathReqBodyBuilder) AppId ¶
func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppId(appId string) *CreateAppAccessTokenPathReqBodyBuilder
应用唯一标识,创建应用后获得。有关app_id 的详细介绍。
示例值:cli_ddfgkk38emd38
func (*CreateAppAccessTokenPathReqBodyBuilder) AppSecret ¶
func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *CreateAppAccessTokenPathReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:clkfgkfdjes384kjdf9830d3k
func (*CreateAppAccessTokenPathReqBodyBuilder) AppTicket ¶
func (builder *CreateAppAccessTokenPathReqBodyBuilder) AppTicket(appTicket string) *CreateAppAccessTokenPathReqBodyBuilder
平台定时推送给应用的临时凭证,通过事件监听机制获得。
示例值:jdjlsd03jk34hj3kldjflcmkel
func (*CreateAppAccessTokenPathReqBodyBuilder) Build ¶
func (builder *CreateAppAccessTokenPathReqBodyBuilder) Build() (*CreateAppAccessTokenReqBody, error)
type CreateAppAccessTokenReq ¶
type CreateAppAccessTokenReq struct { Body *CreateAppAccessTokenReqBody `body:""` // contains filtered or unexported fields }
type CreateAppAccessTokenReqBodyBuilder ¶
type CreateAppAccessTokenReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewCreateAppAccessTokenReqBodyBuilder ¶
func NewCreateAppAccessTokenReqBodyBuilder() *CreateAppAccessTokenReqBodyBuilder
func (*CreateAppAccessTokenReqBodyBuilder) AppId ¶
func (builder *CreateAppAccessTokenReqBodyBuilder) AppId(appId string) *CreateAppAccessTokenReqBodyBuilder
应用唯一标识,创建应用后获得。有关app_id 的详细介绍。
示例值:cli_ddfgkk38emd38
func (*CreateAppAccessTokenReqBodyBuilder) AppSecret ¶
func (builder *CreateAppAccessTokenReqBodyBuilder) AppSecret(appSecret string) *CreateAppAccessTokenReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:clkfgkfdjes384kjdf9830d3k
func (*CreateAppAccessTokenReqBodyBuilder) AppTicket ¶
func (builder *CreateAppAccessTokenReqBodyBuilder) AppTicket(appTicket string) *CreateAppAccessTokenReqBodyBuilder
平台定时推送给应用的临时凭证,通过事件监听机制获得。
示例值:jdjlsd03jk34hj3kldjflcmkel
func (*CreateAppAccessTokenReqBodyBuilder) Build ¶
func (builder *CreateAppAccessTokenReqBodyBuilder) Build() *CreateAppAccessTokenReqBody
type CreateAppAccessTokenReqBuilder ¶
type CreateAppAccessTokenReqBuilder struct {
// contains filtered or unexported fields
}
func NewCreateAppAccessTokenReqBuilder ¶
func NewCreateAppAccessTokenReqBuilder() *CreateAppAccessTokenReqBuilder
func (*CreateAppAccessTokenReqBuilder) Body ¶
func (builder *CreateAppAccessTokenReqBuilder) Body(body *CreateAppAccessTokenReqBody) *CreateAppAccessTokenReqBuilder
func (*CreateAppAccessTokenReqBuilder) Build ¶
func (builder *CreateAppAccessTokenReqBuilder) Build() *CreateAppAccessTokenReq
type CreateAppAccessTokenResp ¶
type CreateAppAccessTokenResp struct { *larkcore.ApiResp `json:"-"` larkcore.CodeError }
func (*CreateAppAccessTokenResp) Success ¶
func (resp *CreateAppAccessTokenResp) Success() bool
type CreateTenantAccessTokenPathReqBodyBuilder ¶
type CreateTenantAccessTokenPathReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewCreateTenantAccessTokenPathReqBodyBuilder ¶
func NewCreateTenantAccessTokenPathReqBodyBuilder() *CreateTenantAccessTokenPathReqBodyBuilder
func (*CreateTenantAccessTokenPathReqBodyBuilder) AppAccessToken ¶
func (builder *CreateTenantAccessTokenPathReqBodyBuilder) AppAccessToken(appAccessToken string) *CreateTenantAccessTokenPathReqBodyBuilder
应用访问凭证,通过商店应用获取 app_access_token接口获取。
示例值:a-32bd8551db2f081cbfd26293f27516390b9feb04
func (*CreateTenantAccessTokenPathReqBodyBuilder) Build ¶
func (builder *CreateTenantAccessTokenPathReqBodyBuilder) Build() (*CreateTenantAccessTokenReqBody, error)
func (*CreateTenantAccessTokenPathReqBodyBuilder) TenantKey ¶
func (builder *CreateTenantAccessTokenPathReqBodyBuilder) TenantKey(tenantKey string) *CreateTenantAccessTokenPathReqBodyBuilder
租户在飞书上的唯一标识,也可以理解为企业标识可以通过如下方式获取: 业开通应用时,开放平台推送给应用,具体可参考【首次启用应用】事件; 用户登录到小程序、H5 应用或者浏览器应用时,在用户的身份信息中获取。
示例值:73658811060f175d
type CreateTenantAccessTokenReq ¶
type CreateTenantAccessTokenReq struct { Body *CreateTenantAccessTokenReqBody `body:""` // contains filtered or unexported fields }
type CreateTenantAccessTokenReqBody ¶
type CreateTenantAccessTokenReqBody struct { AppAccessToken *string `json:"app_access_token,omitempty"` // 应用访问凭证,通过商店应用获取 app_access_token接口获取。 TenantKey *string `json:"tenant_key,omitempty"` // 租户在飞书上的唯一标识,也可以理解为企业标识可以通过如下方式获取: 业开通应用时,开放平台推送给应用,具体可参考【首次启用应用】事件; 用户登录到小程序、H5 应用或者浏览器应用时,在用户的身份信息中获取。 }
type CreateTenantAccessTokenReqBodyBuilder ¶
type CreateTenantAccessTokenReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewCreateTenantAccessTokenReqBodyBuilder ¶
func NewCreateTenantAccessTokenReqBodyBuilder() *CreateTenantAccessTokenReqBodyBuilder
func (*CreateTenantAccessTokenReqBodyBuilder) AppAccessToken ¶
func (builder *CreateTenantAccessTokenReqBodyBuilder) AppAccessToken(appAccessToken string) *CreateTenantAccessTokenReqBodyBuilder
应用访问凭证,通过商店应用获取 app_access_token接口获取。
示例值:a-32bd8551db2f081cbfd26293f27516390b9feb04
func (*CreateTenantAccessTokenReqBodyBuilder) Build ¶
func (builder *CreateTenantAccessTokenReqBodyBuilder) Build() *CreateTenantAccessTokenReqBody
func (*CreateTenantAccessTokenReqBodyBuilder) TenantKey ¶
func (builder *CreateTenantAccessTokenReqBodyBuilder) TenantKey(tenantKey string) *CreateTenantAccessTokenReqBodyBuilder
租户在飞书上的唯一标识,也可以理解为企业标识可以通过如下方式获取: 业开通应用时,开放平台推送给应用,具体可参考【首次启用应用】事件; 用户登录到小程序、H5 应用或者浏览器应用时,在用户的身份信息中获取。
示例值:73658811060f175d
type CreateTenantAccessTokenReqBuilder ¶
type CreateTenantAccessTokenReqBuilder struct {
// contains filtered or unexported fields
}
func NewCreateTenantAccessTokenReqBuilder ¶
func NewCreateTenantAccessTokenReqBuilder() *CreateTenantAccessTokenReqBuilder
func (*CreateTenantAccessTokenReqBuilder) Body ¶
func (builder *CreateTenantAccessTokenReqBuilder) Body(body *CreateTenantAccessTokenReqBody) *CreateTenantAccessTokenReqBuilder
func (*CreateTenantAccessTokenReqBuilder) Build ¶
func (builder *CreateTenantAccessTokenReqBuilder) Build() *CreateTenantAccessTokenReq
type CreateTenantAccessTokenResp ¶
type CreateTenantAccessTokenResp struct { *larkcore.ApiResp `json:"-"` larkcore.CodeError }
func (*CreateTenantAccessTokenResp) Success ¶
func (resp *CreateTenantAccessTokenResp) Success() bool
type InternalAppAccessTokenPathReqBodyBuilder ¶
type InternalAppAccessTokenPathReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewInternalAppAccessTokenPathReqBodyBuilder ¶
func NewInternalAppAccessTokenPathReqBodyBuilder() *InternalAppAccessTokenPathReqBodyBuilder
func (*InternalAppAccessTokenPathReqBodyBuilder) AppId ¶
func (builder *InternalAppAccessTokenPathReqBodyBuilder) AppId(appId string) *InternalAppAccessTokenPathReqBodyBuilder
应用唯一标识,创建应用后获得。
示例值:cli_hsjeriogfkd93jf84
func (*InternalAppAccessTokenPathReqBodyBuilder) AppSecret ¶
func (builder *InternalAppAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *InternalAppAccessTokenPathReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:jdsfslkjdg8e73hdf9237enbd
func (*InternalAppAccessTokenPathReqBodyBuilder) Build ¶
func (builder *InternalAppAccessTokenPathReqBodyBuilder) Build() (*InternalAppAccessTokenReqBody, error)
type InternalAppAccessTokenReq ¶
type InternalAppAccessTokenReq struct { Body *InternalAppAccessTokenReqBody `body:""` // contains filtered or unexported fields }
type InternalAppAccessTokenReqBodyBuilder ¶
type InternalAppAccessTokenReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewInternalAppAccessTokenReqBodyBuilder ¶
func NewInternalAppAccessTokenReqBodyBuilder() *InternalAppAccessTokenReqBodyBuilder
func (*InternalAppAccessTokenReqBodyBuilder) AppId ¶
func (builder *InternalAppAccessTokenReqBodyBuilder) AppId(appId string) *InternalAppAccessTokenReqBodyBuilder
应用唯一标识,创建应用后获得。
示例值:cli_hsjeriogfkd93jf84
func (*InternalAppAccessTokenReqBodyBuilder) AppSecret ¶
func (builder *InternalAppAccessTokenReqBodyBuilder) AppSecret(appSecret string) *InternalAppAccessTokenReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:jdsfslkjdg8e73hdf9237enbd
func (*InternalAppAccessTokenReqBodyBuilder) Build ¶
func (builder *InternalAppAccessTokenReqBodyBuilder) Build() *InternalAppAccessTokenReqBody
type InternalAppAccessTokenReqBuilder ¶
type InternalAppAccessTokenReqBuilder struct {
// contains filtered or unexported fields
}
func NewInternalAppAccessTokenReqBuilder ¶
func NewInternalAppAccessTokenReqBuilder() *InternalAppAccessTokenReqBuilder
func (*InternalAppAccessTokenReqBuilder) Body ¶
func (builder *InternalAppAccessTokenReqBuilder) Body(body *InternalAppAccessTokenReqBody) *InternalAppAccessTokenReqBuilder
func (*InternalAppAccessTokenReqBuilder) Build ¶
func (builder *InternalAppAccessTokenReqBuilder) Build() *InternalAppAccessTokenReq
type InternalAppAccessTokenResp ¶
type InternalAppAccessTokenResp struct { *larkcore.ApiResp `json:"-"` larkcore.CodeError }
func (*InternalAppAccessTokenResp) Success ¶
func (resp *InternalAppAccessTokenResp) Success() bool
type InternalTenantAccessTokenPathReqBodyBuilder ¶
type InternalTenantAccessTokenPathReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewInternalTenantAccessTokenPathReqBodyBuilder ¶
func NewInternalTenantAccessTokenPathReqBodyBuilder() *InternalTenantAccessTokenPathReqBodyBuilder
func (*InternalTenantAccessTokenPathReqBodyBuilder) AppId ¶
func (builder *InternalTenantAccessTokenPathReqBodyBuilder) AppId(appId string) *InternalTenantAccessTokenPathReqBodyBuilder
应用唯一标识,创建应用后获得。
示例值:cli_slkdjalasdkjasd
func (*InternalTenantAccessTokenPathReqBodyBuilder) AppSecret ¶
func (builder *InternalTenantAccessTokenPathReqBodyBuilder) AppSecret(appSecret string) *InternalTenantAccessTokenPathReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:dskLLdkasdjlasdKK
func (*InternalTenantAccessTokenPathReqBodyBuilder) Build ¶
func (builder *InternalTenantAccessTokenPathReqBodyBuilder) Build() (*InternalTenantAccessTokenReqBody, error)
type InternalTenantAccessTokenReq ¶
type InternalTenantAccessTokenReq struct { Body *InternalTenantAccessTokenReqBody `body:""` // contains filtered or unexported fields }
type InternalTenantAccessTokenReqBodyBuilder ¶
type InternalTenantAccessTokenReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewInternalTenantAccessTokenReqBodyBuilder ¶
func NewInternalTenantAccessTokenReqBodyBuilder() *InternalTenantAccessTokenReqBodyBuilder
func (*InternalTenantAccessTokenReqBodyBuilder) AppId ¶
func (builder *InternalTenantAccessTokenReqBodyBuilder) AppId(appId string) *InternalTenantAccessTokenReqBodyBuilder
应用唯一标识,创建应用后获得。
示例值:cli_slkdjalasdkjasd
func (*InternalTenantAccessTokenReqBodyBuilder) AppSecret ¶
func (builder *InternalTenantAccessTokenReqBodyBuilder) AppSecret(appSecret string) *InternalTenantAccessTokenReqBodyBuilder
应用秘钥,创建应用后获得。
示例值:dskLLdkasdjlasdKK
func (*InternalTenantAccessTokenReqBodyBuilder) Build ¶
func (builder *InternalTenantAccessTokenReqBodyBuilder) Build() *InternalTenantAccessTokenReqBody
type InternalTenantAccessTokenReqBuilder ¶
type InternalTenantAccessTokenReqBuilder struct {
// contains filtered or unexported fields
}
func NewInternalTenantAccessTokenReqBuilder ¶
func NewInternalTenantAccessTokenReqBuilder() *InternalTenantAccessTokenReqBuilder
func (*InternalTenantAccessTokenReqBuilder) Body ¶
func (builder *InternalTenantAccessTokenReqBuilder) Body(body *InternalTenantAccessTokenReqBody) *InternalTenantAccessTokenReqBuilder
func (*InternalTenantAccessTokenReqBuilder) Build ¶
func (builder *InternalTenantAccessTokenReqBuilder) Build() *InternalTenantAccessTokenReq
type InternalTenantAccessTokenResp ¶
type InternalTenantAccessTokenResp struct { *larkcore.ApiResp `json:"-"` larkcore.CodeError }
func (*InternalTenantAccessTokenResp) Success ¶
func (resp *InternalTenantAccessTokenResp) Success() bool
type ResendAppTicketPathReqBodyBuilder ¶
type ResendAppTicketPathReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewResendAppTicketPathReqBodyBuilder ¶
func NewResendAppTicketPathReqBodyBuilder() *ResendAppTicketPathReqBodyBuilder
func (*ResendAppTicketPathReqBodyBuilder) AppId ¶
func (builder *ResendAppTicketPathReqBodyBuilder) AppId(appId string) *ResendAppTicketPathReqBodyBuilder
应用唯一标识,创建应用后获得
示例值:cli_slkdjalasdkjasd
func (*ResendAppTicketPathReqBodyBuilder) AppSecret ¶
func (builder *ResendAppTicketPathReqBodyBuilder) AppSecret(appSecret string) *ResendAppTicketPathReqBodyBuilder
应用秘钥,创建应用后获得
示例值:dskLLdkasdjlasdKK
func (*ResendAppTicketPathReqBodyBuilder) Build ¶
func (builder *ResendAppTicketPathReqBodyBuilder) Build() (*ResendAppTicketReqBody, error)
type ResendAppTicketReq ¶
type ResendAppTicketReq struct { Body *ResendAppTicketReqBody `body:""` // contains filtered or unexported fields }
type ResendAppTicketReqBody ¶
type ResendAppTicketReqBodyBuilder ¶
type ResendAppTicketReqBodyBuilder struct {
// contains filtered or unexported fields
}
func NewResendAppTicketReqBodyBuilder ¶
func NewResendAppTicketReqBodyBuilder() *ResendAppTicketReqBodyBuilder
func (*ResendAppTicketReqBodyBuilder) AppId ¶
func (builder *ResendAppTicketReqBodyBuilder) AppId(appId string) *ResendAppTicketReqBodyBuilder
应用唯一标识,创建应用后获得
示例值:cli_slkdjalasdkjasd
func (*ResendAppTicketReqBodyBuilder) AppSecret ¶
func (builder *ResendAppTicketReqBodyBuilder) AppSecret(appSecret string) *ResendAppTicketReqBodyBuilder
应用秘钥,创建应用后获得
示例值:dskLLdkasdjlasdKK
func (*ResendAppTicketReqBodyBuilder) Build ¶
func (builder *ResendAppTicketReqBodyBuilder) Build() *ResendAppTicketReqBody
type ResendAppTicketReqBuilder ¶
type ResendAppTicketReqBuilder struct {
// contains filtered or unexported fields
}
func NewResendAppTicketReqBuilder ¶
func NewResendAppTicketReqBuilder() *ResendAppTicketReqBuilder
func (*ResendAppTicketReqBuilder) Body ¶
func (builder *ResendAppTicketReqBuilder) Body(body *ResendAppTicketReqBody) *ResendAppTicketReqBuilder
func (*ResendAppTicketReqBuilder) Build ¶
func (builder *ResendAppTicketReqBuilder) Build() *ResendAppTicketReq
type ResendAppTicketResp ¶
type ResendAppTicketResp struct { *larkcore.ApiResp `json:"-"` larkcore.CodeError }
func (*ResendAppTicketResp) Success ¶
func (resp *ResendAppTicketResp) Success() bool
type TenantAccessToken ¶
type TenantAccessToken struct { }