diff --git a/discord/poll_create_builder.go b/discord/poll_create_builder.go index c6f8ecc0..7ef7af53 100644 --- a/discord/poll_create_builder.go +++ b/discord/poll_create_builder.go @@ -59,3 +59,8 @@ func (b *PollCreateBuilder) SetLayoutType(layout PollLayoutType) *PollCreateBuil b.LayoutType = layout return b } + +// Build builds the PollCreateBuilder to a PollCreate struct +func (b *PollCreateBuilder) Build() PollCreate { + return b.PollCreate +}