Documentation
¶
Index ¶
- Variables
- type Comment
- func (*Comment) Descriptor() ([]byte, []int)deprecated
- func (x *Comment) GetContent() string
- func (x *Comment) GetCreatedAt() string
- func (x *Comment) GetId() string
- func (x *Comment) GetName() string
- func (x *Comment) GetUpdatedAt() string
- func (x *Comment) GetUserId() string
- func (*Comment) ProtoMessage()
- func (x *Comment) ProtoReflect() protoreflect.Message
- func (x *Comment) Reset()
- func (x *Comment) String() string
- type Context
- func (*Context) Descriptor() ([]byte, []int)deprecated
- func (x *Context) GetAssignees() []string
- func (x *Context) GetClosedAt() string
- func (x *Context) GetCommentsCount() int64
- func (x *Context) GetContent() string
- func (x *Context) GetCreatedAt() string
- func (x *Context) GetId() string
- func (x *Context) GetLabels() []string
- func (x *Context) GetName() string
- func (x *Context) GetNumber() string
- func (x *Context) GetState() string
- func (x *Context) GetTitle() string
- func (x *Context) GetUpdatedAt() string
- func (x *Context) GetUserId() string
- func (*Context) ProtoMessage()
- func (x *Context) ProtoReflect() protoreflect.Message
- func (x *Context) Reset()
- func (x *Context) String() string
- type Label
- func (*Label) Descriptor() ([]byte, []int)deprecated
- func (x *Label) GetColor() string
- func (x *Label) GetCreatedAt() string
- func (x *Label) GetDescription() string
- func (x *Label) GetId() string
- func (x *Label) GetName() string
- func (x *Label) GetUpdatedAt() string
- func (*Label) ProtoMessage()
- func (x *Label) ProtoReflect() protoreflect.Message
- func (x *Label) Reset()
- func (x *Label) String() string
- type Space
- func (*Space) Descriptor() ([]byte, []int)deprecated
- func (x *Space) GetDescription() string
- func (x *Space) GetId() string
- func (x *Space) GetMembers() []string
- func (x *Space) GetName() string
- func (*Space) ProtoMessage()
- func (x *Space) ProtoReflect() protoreflect.Message
- func (x *Space) Reset()
- func (x *Space) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_api_luster_comment_proto protoreflect.FileDescriptor
View Source
var File_api_luster_context_proto protoreflect.FileDescriptor
View Source
var File_api_luster_label_proto protoreflect.FileDescriptor
View Source
var File_api_luster_space_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Comment ¶ added in v0.78.41
type Comment struct {
// The comment id.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// The comment name.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// The comment content.
Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
// The comment userId.
UserId string `protobuf:"bytes,4,opt,name=userId,proto3" json:"userId,omitempty"`
// The comment createdAt.
// "created_at": "2023-10-27T10:00:00Z"
CreatedAt string `protobuf:"bytes,5,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
// The comment updatedAt.
// "updated_at": "2023-10-27T10:00:00Z"
UpdatedAt string `protobuf:"bytes,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
// contains filtered or unexported fields
}
The message defines the comment
func (*Comment) Descriptor
deprecated
added in
v0.78.41
func (*Comment) GetContent ¶ added in v0.78.41
func (*Comment) GetCreatedAt ¶ added in v0.78.41
func (*Comment) GetUpdatedAt ¶ added in v0.78.41
func (*Comment) ProtoMessage ¶ added in v0.78.41
func (*Comment) ProtoMessage()
func (*Comment) ProtoReflect ¶ added in v0.78.41
func (x *Comment) ProtoReflect() protoreflect.Message
type Context ¶ added in v0.78.41
type Context struct {
// The context id.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// The context name.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// The context number.
// 作成されるごとにnumberが採番されます。
Number string `protobuf:"bytes,3,opt,name=number,proto3" json:"number,omitempty"`
// The context title.
Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title,omitempty"`
// The context content.
//
// "content": "contextの本文詳細..."
Content string `protobuf:"bytes,5,opt,name=content,proto3" json:"content,omitempty"`
// The context state.
//
// "state": "open"
State string `protobuf:"bytes,6,opt,name=state,proto3" json:"state,omitempty"`
// The context labels.
// "labels": ["bug" "documentation"]
Labels []string `protobuf:"bytes,7,rep,name=labels,proto3" json:"labels,omitempty"`
// The context assignees.
// "assignees": ["username1" "username2"]
Assignees []string `protobuf:"bytes,8,rep,name=assignees,proto3" json:"assignees,omitempty"`
// The context commentsCount.
// "comments_count": 0
CommentsCount int64 `protobuf:"varint,9,opt,name=commentsCount,proto3" json:"commentsCount,omitempty"`
// The context createdAt.
// "created_at": "2023-10-27T10:00:00Z"
CreatedAt string `protobuf:"bytes,10,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
// The context updatedAt.
// "updated_at": "2023-10-27T10:00:00Z"
UpdatedAt string `protobuf:"bytes,11,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
// The context closedAt.
ClosedAt string `protobuf:"bytes,12,opt,name=closedAt,proto3" json:"closedAt,omitempty"`
// The context userId.
UserId string `protobuf:"bytes,13,opt,name=userId,proto3" json:"userId,omitempty"`
// contains filtered or unexported fields
}
The message defines the context
func (*Context) Descriptor
deprecated
added in
v0.78.41
func (*Context) GetAssignees ¶ added in v0.78.41
func (*Context) GetClosedAt ¶ added in v0.78.41
func (*Context) GetCommentsCount ¶ added in v0.78.41
func (*Context) GetContent ¶ added in v0.78.41
func (*Context) GetCreatedAt ¶ added in v0.78.41
func (*Context) GetUpdatedAt ¶ added in v0.78.41
func (*Context) ProtoMessage ¶ added in v0.78.41
func (*Context) ProtoMessage()
func (*Context) ProtoReflect ¶ added in v0.78.41
func (x *Context) ProtoReflect() protoreflect.Message
type Label ¶ added in v0.78.41
type Label struct {
// The label id.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// The label name.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// The label color.
Color string `protobuf:"bytes,3,opt,name=color,proto3" json:"color,omitempty"`
// The label description.
Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
// The label createdAt.
// "created_at": "2023-10-27T10:00:00Z"
CreatedAt string `protobuf:"bytes,5,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
// The label updatedAt.
// "updated_at": "2023-10-27T10:00:00Z"
UpdatedAt string `protobuf:"bytes,6,opt,name=updatedAt,proto3" json:"updatedAt,omitempty"`
// contains filtered or unexported fields
}
The message defines the label
func (*Label) Descriptor
deprecated
added in
v0.78.41
func (*Label) GetCreatedAt ¶ added in v0.78.41
func (*Label) GetDescription ¶ added in v0.78.41
func (*Label) GetUpdatedAt ¶ added in v0.78.41
func (*Label) ProtoMessage ¶ added in v0.78.41
func (*Label) ProtoMessage()
func (*Label) ProtoReflect ¶ added in v0.78.41
func (x *Label) ProtoReflect() protoreflect.Message
type Space ¶
type Space struct {
// The space id.
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
// The space name.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// The space description.
Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
// The members in space.
Members []string `protobuf:"bytes,4,rep,name=members,proto3" json:"members,omitempty"`
// contains filtered or unexported fields
}
The message defines the space
func (*Space) Descriptor
deprecated
func (*Space) GetDescription ¶
func (*Space) GetMembers ¶
func (*Space) ProtoMessage ¶
func (*Space) ProtoMessage()
func (*Space) ProtoReflect ¶
func (x *Space) ProtoReflect() protoreflect.Message
Click to show internal directories.
Click to hide internal directories.