# Functions
No description provided by the author
# Structs
No description provided by the author
func (impl AppStoreValuesServiceImpl) adaptorForValuesCategoryWise(values *appStore.AppStoreVersionValues) (val *AppStoreVersionValuesCategoryWiseDTO) {
version := ""
if values.AppStoreApplicationVersion != nil {
version = values.AppStoreApplicationVersion.Version
}
valDto:= &AppStoreVersionValuesDTO{
Name: values.Name,
Id: values.Id,
Values: values.ValuesYaml,
ChartVersion: version,
AppStoreVersionId: values.AppStoreApplicationVersionId,
}
val = &AppStoreVersionValuesCategoryWiseDTO{
Values:valDto
}
return val
}
*/.
No description provided by the author
No description provided by the author
# Interfaces
No description provided by the author