package stack // IDs gets array of StackIDs from ListStacks struct func (ls ListStacks) IDs() []uint64 { res := make([]uint64, 0, len(ls.Data)) for _, s := range ls.Data { res = append(res, s.ID) } return res }