v1

package
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 12, 2023 License: MIT Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ApplyAcceptReq added in v1.0.0

type ApplyAcceptReq struct {
	g.Meta `path:"/apply/accept" tags:"contact_apply" method:"post" summary:"同意好友申请接口"`
	model.ApplyAcceptReq
}

同意好友申请接口请求参数

type ApplyAcceptRes added in v1.0.0

type ApplyAcceptRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

同意好友申请接口响应参数

type ApplyCreateReq added in v1.0.0

type ApplyCreateReq struct {
	g.Meta `path:"/apply/create" tags:"contact_apply" method:"post" summary:"添加好友申请接口"`
	model.ApplyCreateReq
}

添加好友申请接口请求参数

type ApplyCreateRes added in v1.0.0

type ApplyCreateRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

添加好友申请接口响应参数

type ApplyDeclineReq added in v1.0.0

type ApplyDeclineReq struct {
	g.Meta `path:"/apply/decline" tags:"contact_apply" method:"post" summary:"拒绝好友申请接口"`
	model.ApplyDeclineReq
}

拒绝好友申请接口请求参数

type ApplyDeclineRes added in v1.0.0

type ApplyDeclineRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

拒绝好友申请接口响应参数

type ApplyListReq added in v1.0.0

type ApplyListReq struct {
	g.Meta `path:"/apply/records" tags:"contact_apply" method:"get" summary:"好友申请列表接口"`
}

好友申请列表接口请求参数

type ApplyListRes added in v1.0.0

type ApplyListRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ApplyListRes
}

好友申请列表接口响应参数

type ApplyUnreadNumReq added in v1.0.0

type ApplyUnreadNumReq struct {
	g.Meta `path:"/apply/unread-num" tags:"contact_apply" method:"get" summary:"好友申请未读数接口"`
}

好友申请未读数接口请求参数

type ApplyUnreadNumRes added in v1.0.0

type ApplyUnreadNumRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ApplyUnreadNumRes
}

好友申请未读数接口响应参数

type ContactChangeGroupReq

type ContactChangeGroupReq struct {
	g.Meta `path:"/move-group" tags:"contact" method:"post" summary:"修改好友分组接口"`
	model.ContactChangeGroupReq
}

修改好友分组接口请求参数

type ContactChangeGroupRes

type ContactChangeGroupRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

修改好友分组接口响应参数

type ContactDeleteReq

type ContactDeleteReq struct {
	g.Meta `path:"/delete" tags:"contact" method:"post" summary:"好友删除接口"`
	model.ContactDeleteReq
}

好友删除接口请求参数

type ContactDeleteRes

type ContactDeleteRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

好友删除接口响应参数

type ContactDetailReq

type ContactDetailReq struct {
	g.Meta `path:"/detail" tags:"contact" method:"get" summary:"好友详情接口"`
	model.ContactDetailReq
}

好友详情接口请求参数

type ContactDetailRes

type ContactDetailRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ContactDetailRes
}

好友详情接口响应参数

type ContactEditRemarkReq

type ContactEditRemarkReq struct {
	g.Meta `path:"/edit-remark" tags:"contact" method:"post" summary:"好友备注修改接口"`
	model.ContactEditRemarkReq
}

好友备注修改接口请求参数

type ContactEditRemarkRes

type ContactEditRemarkRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

好友备注修改接口响应参数

type ContactListReq

type ContactListReq struct {
	g.Meta `path:"/list" tags:"contact" method:"get" summary:"好友列表接口"`
}

好友列表接口请求参数

type ContactListRes

type ContactListRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ContactListRes
}

好友列表接口响应参数

type ContactSearchReq

type ContactSearchReq struct {
	g.Meta `path:"/search" tags:"contact" method:"get" summary:"好友搜索接口"`
	model.ContactSearchReq
}

好友搜索接口请求参数

type ContactSearchRes

type ContactSearchRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ContactSearchRes
}

好友搜索接口响应参数

type GroupCreateReq added in v1.0.0

type GroupCreateReq struct {
	g.Meta `path:"/group/create" tags:"contact_group" method:"post" summary:"添加好友分组接口"`
	model.ContactGroupCreateReq
}

添加好友分组接口请求参数

type GroupCreateRes added in v1.0.0

type GroupCreateRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ContactGroupCreateRes
}

添加好友分组接口响应参数

type GroupDeleteReq added in v1.0.0

type GroupDeleteReq struct {
	g.Meta `path:"/group/delete" tags:"contact_group" method:"post" summary:"删除好友分组接口"`
	model.GroupDeleteReq
}

删除好友分组接口请求参数

type GroupDeleteRes added in v1.0.0

type GroupDeleteRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.GroupDeleteRes
}

删除好友分组接口响应参数

type GroupListReq added in v1.0.0

type GroupListReq struct {
	g.Meta `path:"/group/list" tags:"contact_group" method:"get" summary:"好友分组列表接口"`
}

好友分组列表接口请求参数

type GroupListRes added in v1.0.0

type GroupListRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.ContactGroupListRes
}

好友分组列表接口响应参数

type GroupSaveReq added in v1.0.0

type GroupSaveReq struct {
	g.Meta `path:"/group/save" tags:"contact_group" method:"post" summary:"保存好友分组列表接口"`
	model.GroupSaveReq
}

保存好友分组列表接口请求参数

type GroupSaveRes added in v1.0.0

type GroupSaveRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

保存好友分组列表接口响应参数

type GroupSortReq added in v1.0.0

type GroupSortReq struct {
	g.Meta `path:"/group/sort" tags:"contact_group" method:"post" summary:"排序好友分组接口"`
	model.GroupSortReq
}

排序好友分组接口请求参数

type GroupSortRes added in v1.0.0

type GroupSortRes struct {
	g.Meta `mime:"application/json" example:"json"`
}

排序好友分组接口响应参数

type GroupUpdateReq added in v1.0.0

type GroupUpdateReq struct {
	g.Meta `path:"/group/update" tags:"contact_group" method:"post" summary:"更新好友分组接口"`
	model.GroupUpdateReq
}

更新好友分组接口请求参数

type GroupUpdateRes added in v1.0.0

type GroupUpdateRes struct {
	g.Meta `mime:"application/json" example:"json"`
	*model.GroupUpdateRes
}

更新好友分组接口响应参数

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL