timoth-y/kicksware-api

View on GitHub
services/products/core/model/sneakerProductModel.go

Summary

Maintainability
A
0 mins
Test Coverage
package model

import "time"

type SneakerProduct struct {
    UniqueId       string
    BrandName      string
    ModelName      string
    ModelSKU       string
    ReferenceId    string
    Price          float64
    Type  string
    Size  SneakerSize
    Color string
    Condition      string
    Description    string
    Owner          string
    Images         map[string][]byte
    ConditionIndex float64
    AddedAt        time.Time
}